An error occurred fetching the project authors.
  1. 15 Jun, 2016 1 commit
  2. 17 Jun, 2015 1 commit
  3. 14 Apr, 2015 1 commit
    • Romain Courteaud's avatar
      Add repair method. · 9273600e
      Romain Courteaud authored
      This (slow) method will be used to stabilised a storage (launch synchronisation process for example).
      9273600e
  4. 08 Apr, 2015 1 commit
    • Romain Courteaud's avatar
      Add jIO.allAttachments method. · 7a527b42
      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.
      7a527b42
  5. 03 Apr, 2015 1 commit
    • Romain Courteaud's avatar
      Stop mixing API parameters and user data. · 12bb5c55
      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.
      12bb5c55
  6. 16 Feb, 2015 1 commit
  7. 18 Dec, 2014 3 commits
  8. 28 Nov, 2014 1 commit
  9. 17 Nov, 2014 1 commit
    • Romain Courteaud's avatar
      WIP Jio rewrite. · 4b86c4a1
      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.
      4b86c4a1
  10. 26 Mar, 2014 1 commit
  11. 18 Mar, 2014 1 commit
  12. 04 Mar, 2014 1 commit
  13. 26 Feb, 2014 1 commit
  14. 25 Feb, 2014 1 commit
  15. 31 Jan, 2014 1 commit