1. 29 Jun, 2015 3 commits
  2. 18 Jun, 2015 1 commit
  3. 17 Jun, 2015 5 commits
  4. 16 Jun, 2015 1 commit
  5. 12 Jun, 2015 1 commit
  6. 29 May, 2015 2 commits
  7. 22 May, 2015 1 commit
  8. 30 Apr, 2015 7 commits
  9. 27 Apr, 2015 2 commits
  10. 24 Apr, 2015 1 commit
  11. 15 Apr, 2015 1 commit
  12. 14 Apr, 2015 3 commits
  13. 13 Apr, 2015 1 commit
  14. 08 Apr, 2015 2 commits
  15. 03 Apr, 2015 2 commits
    • Romain Courteaud's avatar
      Drop not used test file. · ee6b9425
      Romain Courteaud authored
      ee6b9425
    • 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
  16. 02 Apr, 2015 5 commits
  17. 27 Mar, 2015 2 commits