Permalink
Please sign in to comment.
Showing
with
319 additions
and 0 deletions.
- +9 −0 Common/node/lconfig.js
- +9 −0 Common/node/lconsole.js
- +9 −0 Common/node/lenv.js
- +9 −0 Common/node/levents.js
- +9 −0 Common/node/lfs.js
- +9 −0 Common/node/locker.js
- +9 −0 Common/node/lscheduler.js
- +9 −0 Common/node/lservicemanager.js
- +9 −0 Common/node/lsvc.js
- +9 −0 Common/node/ltest.js
- +9 −0 Common/node/sort.js
- +7 −0 Common/python/lockerfs.py
- +24 −0 LICENSE
- +9 −0 Ops/Dashboard/css/style.css
- +9 −0 Ops/Dashboard/dashboard.html
- +9 −0 Ops/Dashboard/dashboard.js
- +9 −0 Ops/Dashboard/date.js
- +9 −0 Ops/Dashboard/util.js
- +9 −0 Ops/create_collection.js
- +9 −0 Ops/create_context.js
- +9 −0 Ops/dashboard.js
- +9 −0 Ops/install_app.js
- +9 −0 Ops/run_ss.js
- +9 −0 Ops/webservice.js
- +9 −0 locker.js
- +9 −0 tests/connector-flickr-test.js
- +9 −0 tests/lconsole.test.js
- +9 −0 tests/locker-test.js
- +9 −0 tests/lscheduler-test.js
- +9 −0 tests/lscheduler.test.js
- +9 −0 tests/lservicemanager.test.js
- +9 −0 tests/runAll.js
- +9 −0 tests/runTests
- +9 −0 tests/test-utils.js
@@ -1,3 +1,12 @@ | ||
+/* | ||
+* | ||
+* Copyright (C) 2011, The Locker Project | ||
+* All rights reserved. | ||
+* | ||
+* Please see the LICENSE file for more information. | ||
+* | ||
+*/ | ||
+ | ||
exports.lockerBase = "http://localhost:8042/"; | ||
exports.lockerPort = 8042; | ||
exports.lockerDir = process.cwd(); |
@@ -1,2 +1,11 @@ | ||
+/* | ||
+* | ||
+* Copyright (C) 2011, The Locker Project | ||
+* All rights reserved. | ||
+* | ||
+* Please see the LICENSE file for more information. | ||
+* | ||
+*/ | ||
+ | ||
// load object from and serialize updates back to env.json file | ||
// if new env file, find an open port and assign it |
@@ -1,2 +1,11 @@ | ||
+/* | ||
+* | ||
+* Copyright (C) 2011, The Locker Project | ||
+* All rights reserved. | ||
+* | ||
+* Please see the LICENSE file for more information. | ||
+* | ||
+*/ | ||
+ | ||
// create a new Me/service dir | ||
// simple util to name it foo-bar, foo-bar-2, etc |
@@ -0,0 +1,24 @@ | ||
+Copyright (C) 2011, The Locker Project | ||
+All rights reserved. | ||
+ | ||
+Redistribution and use in source and binary forms, with or without | ||
+modification, are permitted provided that the following conditions are met: | ||
+ * Redistributions of source code must retain the above copyright | ||
+ notice, this list of conditions and the following disclaimer. | ||
+ * Redistributions in binary form must reproduce the above copyright | ||
+ notice, this list of conditions and the following disclaimer in the | ||
+ documentation and/or other materials provided with the distribution. | ||
+ * Neither the name of the Locker Project nor the | ||
+ names of its contributors may be used to endorse or promote products | ||
+ derived from this software without specific prior written permission. | ||
+ | ||
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
+DISCLAIMED. IN NO EVENT SHALL THE LOCKER PROJECT BE LIABLE FOR ANY | ||
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
@@ -1 +1,10 @@ | ||
+/* | ||
+* | ||
+* Copyright (C) 2011, The Locker Project | ||
+* All rights reserved. | ||
+* | ||
+* Please see the LICENSE file for more information. | ||
+* | ||
+*/ | ||
+ | ||
// node create_collection.js foo.collection Me |
@@ -1 +1,10 @@ | ||
+/* | ||
+* | ||
+* Copyright (C) 2011, The Locker Project | ||
+* All rights reserved. | ||
+* | ||
+* Please see the LICENSE file for more information. | ||
+* | ||
+*/ | ||
+ | ||
// node create_context.js foo.context Me |
@@ -1 +1,10 @@ | ||
+/* | ||
+* | ||
+* Copyright (C) 2011, The Locker Project | ||
+* All rights reserved. | ||
+* | ||
+* Please see the LICENSE file for more information. | ||
+* | ||
+*/ | ||
+ | ||
// node install_app.js foo.app Me |
@@ -1 +1,10 @@ | ||
+/* | ||
+* | ||
+* Copyright (C) 2011, The Locker Project | ||
+* All rights reserved. | ||
+* | ||
+* Please see the LICENSE file for more information. | ||
+* | ||
+*/ | ||
+ | ||
// node run_ss.js ssDir contextDir |

Oops, something went wrong.
0 comments on commit
ef86480