An error occurred fetching the project authors.
- 15 Jun, 2016 1 commit
-
-
Nicolas Wavrant authored
-
- 17 Jun, 2015 1 commit
-
-
Romain Courteaud authored
-
- 14 Apr, 2015 1 commit
-
-
Romain Courteaud authored
This (slow) method will be used to stabilised a storage (launch synchronisation process for example).
-
- 08 Apr, 2015 1 commit
-
-
Romain Courteaud authored
Do not return the list of attachments in jIO.get. Use a specific "allAttachments" method to fetch this information. jIO.get now really returns the document as saved by jIO.put/post.
-
- 03 Apr, 2015 1 commit
-
-
Romain Courteaud authored
Modify jIO API to keep user data not modified. jIO.get({"_id": "foo"} -> jIO.get("foo") jIO.remove({"_id": "foo"} -> jIO.remove("foo") jIO.post({"title": "bar"}) -> jIO.post({"title": "bar"}) jIO.put({"_id": "foo", "title": "bar"}) -> jIO.put("foo", {"title": "bar"}) jIO.getAttachment({"_id": "foo", "_attachment": "enclosure"} -> jIO.get("foo", "enclosure") jIO.removeAttachment({"_id": "foo", "_attachment": "enclosure"} -> jIO.remove("foo", "enclosure") jIO.putAttachment({"_id": "foo", "_attachment": "enclosure", "_blob": blob} -> jIO.remove("foo", "enclosure", blob) jIO.get does not return an _id attribute anymore.
-
- 16 Feb, 2015 1 commit
-
-
Romain Courteaud authored
-
- 18 Dec, 2014 3 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
- 28 Nov, 2014 1 commit
-
-
Romain Courteaud authored
Enough for now to force usage of querystorage and simplify allDocs everywhere else.
-
- 17 Nov, 2014 1 commit
-
-
Romain Courteaud authored
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.
-
- 26 Mar, 2014 1 commit
-
-
Tristan Cavelier authored
-
- 18 Mar, 2014 1 commit
-
-
Tristan Cavelier authored
-
- 04 Mar, 2014 1 commit
-
-
Tristan Cavelier authored
See docs/query.rst for more informations
-
- 26 Feb, 2014 1 commit
-
-
Tristan Cavelier authored
Indeed, to work well, jIO needs to work on the same job management queue. By doing jIO.createJIO inside a storage, we work outside this queue.
-
- 25 Feb, 2014 1 commit
-
-
Tristan Cavelier authored
-
- 31 Jan, 2014 1 commit
-
-
Marco Mariani authored
-