1. 06 Feb, 2013 1 commit
    • Made Queryset Consistent, Moved user.py into __init__ · eaaccd92
      Many changes:
      
      - Removed the QueryManager class- all querying is now handled by the
      Queryset class. This was necessary to manage chained query lines like
      
      GameScore.Query.gte("score", 1000).lt("score",
      2000).order("playerName")
      
      - Queryset methods for comparison and options are now added
      programatically (makes it easier to change their operation all at
      once).
      
      - Added test coverage of querying methods, including comparison
      operators and limit/skip options.
      
      - Removed user.py, moving its classes into `__init__.py`. The reason is
      that lines like
      
      import parse_rest
      from parse_rest.user import User
      
      parse_rest.APPLICATION_ID = "something"
      
      meant the module attribute APPLICATION_ID was actually not accessible
      from the User class. Perhaps there's a way to make this work- I just
      couldn't find it yet.
      
      - Set up createdAt and updatedAt to return date time objects rather
      than strings
      David Robinson committed
  2. 04 Feb, 2013 3 commits
  3. 03 Feb, 2013 1 commit
  4. 31 Jan, 2013 2 commits
  5. 29 Jan, 2013 1 commit
  6. 26 Jan, 2013 1 commit
  7. 25 Jan, 2013 1 commit
  8. 23 Jan, 2013 3 commits
  9. 19 Jan, 2013 2 commits
  10. 15 Jan, 2013 1 commit
  11. 14 Jan, 2013 4 commits
  12. 11 Jan, 2013 1 commit
  13. 10 Jan, 2013 2 commits
  14. 09 Jan, 2013 3 commits
  15. 24 Dec, 2012 3 commits
  16. 17 Dec, 2012 5 commits
  17. 18 Nov, 2012 2 commits
  18. 11 Nov, 2012 1 commit
  19. 05 Nov, 2012 3 commits