An error occurred fetching the project authors.
  1. 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
  2. 13 Apr, 2015 1 commit
  3. 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
  4. 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
  5. 02 Apr, 2015 1 commit
  6. 18 Feb, 2015 1 commit
  7. 18 Dec, 2014 1 commit