aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-04-27Urg. Fix broken merging.Tom Christie
2011-04-27Pulling marko's test fixesTom Christie
2011-04-27Pulling Marko's test fixesTom Christie
2011-04-27merge 157Tom Christie
2011-04-27Docs impovementTom Christie
2011-04-27Merge previous checkinsTom Christie
2011-04-27Inital pass at generic permissions, throttling etc.Tom Christie
2011-04-27Fix up tests and examples after refactoringTom Christie
2011-04-27Stole some code from djangorestframework/runtests/runcoverage.py so that ↵markotibold
coverage is also implemented for the examples. Because Jenkins looks for a coverage.xml file for all defeined projects in tox.ini we need it to pass the tests.
2011-04-27The test was bad. It expected 11 snippets while the view made sure (as ↵markotibold
designed) that there would not be more than 10 snippets stored on disk.
2011-04-27reverse on a a sorted list which was laerady reversed is rather pointless :)markotibold
2011-04-27Danielfm packaged the 1.2 release so we can now install it from his repo.markotibold
2011-04-27Omitting all the superfluous tests. Later on we might want a nicer way to ↵markotibold
specify which apps to test, because they are now hardcoded in runtests.py. (Listdir doesn't do the trick, tried that already :-) )
2011-04-26CSRF validation will only be applied to POST requests, so let's only load ↵tom christie tom@tomchristie.com
.RAW_CONTENT in those cases
2011-04-26tox can now use django 1.3 rather than 1.3-rc1. Huzzah.tom christie tom@tomchristie.com
2011-04-26simplejson no longer a requirement for python 2.5 (uses django's built in ↵tom christie tom@tomchristie.com
simplejson lib)
2011-04-26Fixes #35 - Import json from django's built-in package (Does cleverness in ↵tom christie tom@tomchristie.com
determing best lib to use)
2011-04-25Fix some compat issues with json/simplejsonTom Christie
2011-04-25tidy upTom Christie
2011-04-25Generic permissions added, allowed_methods and anon_allowed_methods now ↵Tom Christie
defunct, dispatch now mirrors View.dispatch more nicely
2011-04-11Remove some temporary debugging stuffTom Christie
2011-04-11depercate auth and content arguments to the request handler methods - yea :)Tom Christie
2011-04-11request.py -> mixins.pyTom Christie
2011-04-11Rename mixins into Mixin class, rename ResponseException to ErrorResponse, ↵Tom Christie
remove NoContent
2011-04-11CleanupTom Christie
2011-04-11Even more validator tests passing after refactorTom Christie
2011-04-11Lots of validator tests passing after refactorTom Christie
2011-04-11TweakTom Christie
2011-04-11Refactoring of authentication/permissionsTom Christie
2011-04-11Remove last bits of ParserMixinTom Christie
2011-04-11Test cleanupTom Christie
2011-04-11method overloading tests passingTom Christie
2011-04-11form overloading tests passingTom Christie
2011-04-11More tests passingTom Christie
2011-04-11More tests passingTom Christie
2011-04-11More tests passingTom Christie
2011-04-11Start refactoring testsTom Christie
2011-04-11Start refactoring testsTom Christie
2011-04-08Thanks Carmen \!tom christie tom@tomchristie.com
2011-04-04Better error handling for Basic authentication. Catch exceptions that could ↵Carmen Wick
be thrown due to malformed input
2011-04-04Use cleaned_content instead of raw_content when generating a form instance ↵Carmen Wick
for the DocumentingTemplateEmitter. This allows the form to be prepopulated with the resource's existing values.
2011-04-04Turn streaming request parsing back on for 1.3. Fix CSRF which was breaking ↵Tom Christie
it. It's really not at all obvious if we need to byte limit the stream that we hand over or not.
2011-04-04Turn streaming request parsing back on for 1.3. Fix CSRF which was breaking ↵Tom Christie
it. It's really not at all obvious if we need to byte limit the stream that we hand over or not.
2011-04-03Temporarily roll back the streaming stufftom christie tom@tomchristie.com
2011-04-02Refactor to use self.CONTENT to access request body. Get file upload workingtom christie tom@tomchristie.com
2011-03-30Only use xmlrunner if running under hudsontom christie tom@tomchristie.com
2011-03-30Only use xmlrunner if running under hudsontom christie tom@tomchristie.com
2011-03-22Fix some examplesTom Christie
2011-03-20fixing compat with py25markotibold
2011-03-20fix compat with python 2.5markotibold