aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework
AgeCommit message (Collapse)Author
2011-05-13cleanupTom Christie
2011-05-12_perform_form_overloading becomes transparentTom Christie
2011-05-12yet more API cleanupTom Christie
2011-05-12yet more API cleanupTom Christie
2011-05-12refactoring resource specfic stuff into ResourceMixin - validators now defunctTom Christie
2011-05-10More tests, getting new serialization into resourceTom Christie
2011-05-10Bits of cleanupTom Christie
2011-05-10Bits of cleanupTom Christie
2011-05-10Rename resource to view in few remaining places in renderers (because that's ↵Tom Christie
what it now is)
2011-05-10renderer API workTom Christie
2011-05-10Getting the API into shapeTom Christie
2011-05-04Decouple views and resourcesTom Christie
2011-05-02emitters -> renderersTom Christie
2011-04-29More refactoring - move various less core stuff into utils etcTom Christie
2011-04-28emitters -> renderersTom Christie
2011-04-27Fix up ModelResource issuesTom Christie
2011-04-27Urg. Fixing broken mergeTom Christie
2011-04-27Urg. Fix broken merging.Tom 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-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-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-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