WIP Jio rewrite.
This is a work in progress commit and all storages are broken. * Use as much as possible RSVP promise to simplify the code. * simplify error management: use Error class in case of problem. * Drop the job management at that point. Such functionnality could be reimplemented as a storage. * Start to simplify the tests, to speed up debugging. * Drop requireJS usage, as the goal for now is to make it usage on browser. * allDocs has to be rewritten to ease storage tree capacity checking. A storage should only implement what it could really do. * disable attachment management for now.
Showing
examples/scenario.html
0 → 100644
examples/scenario.js
0 → 100644
jio.js
deleted
100644 → 0
This source diff could not be displayed because it is too large. You can view the blob instead.
lib/qunit/qunit.css
deleted
100644 → 0
lib/qunit/qunit.js
deleted
100644 → 0
lib/sinon/sinon.js
deleted
100644 → 0
This source diff could not be displayed because it is too large. You can view the blob instead.
{ | { | ||
"name": "jio", | "name": "jio", | ||
"version": "v2.0.0", | "version": "v3.0.0", | ||
"license": "LGPLv3", | "license": "LGPLv3", | ||
"author": "Nexedi SA", | "author": "Nexedi SA", | ||
"contributors": [ | "contributors": [ | ||
... | @@ -14,7 +14,9 @@ | ... | @@ -14,7 +14,9 @@ |
"test": "test" | "test": "test" | ||
}, | }, | ||
"scripts": { | "scripts": { | ||
"test": "grunt test" | "test": "./node_modules/.bin/grunt test", | ||
"lint": "./node_modules/.bin/grunt lint", | |||
"prepublish": "./node_modules/.bin/grunt build" | |||
}, | }, | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
... | @@ -26,13 +28,25 @@ | ... | @@ -26,13 +28,25 @@ |
"output", | "output", | ||
"cloud" | "cloud" | ||
], | ], | ||
"dependencies": { | |||
"rsvp": "git+http://git.erp5.org/repos/rsvp.js.git", | |||
"moment": "2.8.3" | |||
}, | |||
"devDependencies": { | "devDependencies": { | ||
"renderjs": "git+http://git.erp5.org/repos/renderjs.git", | |||
"jscc-node": "0.3.x", | "jscc-node": "0.3.x", | ||
"grunt": "0.4.x", | "grunt": "0.4.x", | ||
"grunt-cli": "~0.1.11", | |||
"grunt-contrib-concat": "0.3.x", | "grunt-contrib-concat": "0.3.x", | ||
"grunt-contrib-copy": "~0.4.1", | |||
"grunt-contrib-uglify": "0.2.x", | "grunt-contrib-uglify": "0.2.x", | ||
"grunt-contrib-qunit": "0.2.x", | "grunt-contrib-qunit": "~0.3.0", | ||
"grunt-jslint": "1.0.x" | "grunt-contrib-watch": "~0.5.3", | ||
"grunt-jslint": "~1.0.0", | |||
"sinon": "~1.7.3", | |||
"connect-livereload": "~0.3.0", | |||
"grunt-open": "~0.2.2", | |||
"grunt-contrib-connect": "~0.5.0" | |||
}, | }, | ||
"engines": { | "engines": { | ||
"npm": ">=1.3" | "npm": ">=1.3" | ||
... | ... |
src/jio.js
0 → 100644
src/jio/core/JIO.js
deleted
100644 → 0
src/jio/intro.js
deleted
100644 → 0
src/jio/outro.js
deleted
100644 → 0
This source diff could not be displayed because it is too large. You can view the blob instead.
Please register or sign in to comment