An error occurred fetching the project authors.
- 14 Apr, 2015 1 commit
-
-
Romain Courteaud authored
This (slow) method will be used to stabilised a storage (launch synchronisation process for example).
-
- 13 Apr, 2015 1 commit
-
-
Romain Courteaud authored
Use a new optional parameter: jIO.getAttachment(id, name, {format: blob}) Supported formats are: blob, text, json, array_buffer, data_url
-
- 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.
-
- 02 Apr, 2015 1 commit
-
-
Romain Courteaud authored
-
- 18 Feb, 2015 1 commit
-
-
Romain Courteaud authored
-
- 18 Dec, 2014 1 commit
-
-
Romain Courteaud authored
Each webdav file is transformed as a single "enclosure" attachment to a jio document with the same name.
-