aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework
AgeCommit message (Collapse)Author
2012-02-11Improve docstring on DjangoModelPermissions, and also ensure the user is ↵Tom Christie
authenticated.
2012-02-11Minor name changeTom Christie
2012-02-11Fix up DjangoModelPermissions.Tom Christie
2012-02-11Merge pull request #160 from mammique/django_permsTom Christie
Django perms
2012-02-11DjangoModelPermisson's descCamille Harang
2012-02-11check authentication after checking ModelResourceCamille Harang
2012-02-11DjangoModelPermissonCamille Harang
2012-02-10attempt at fixing the examplesSébastien Piquemal
2012-02-10made suggested fixesSébastien Piquemal
2012-02-09Merge remote branch 'tomchristie/master'Alen Mujezinovic
2012-02-07modified examples, somethin' still broken, can't find whatSébastien Piquemal
2012-02-07some docs for Request/Response/mixinsSébastien Piquemal
2012-02-07cleaned Request/Response/mixins to have similar interfaceSébastien Piquemal
2012-02-07cleaned a bit Response/ResponseMixin code, added some documentation + ↵Sébastien Piquemal
renamed ErrorResponse to ImmediateResponse
2012-02-07Ensure duplicate "page" parameters are not createdJamie Matthews
Previously, URLObject.add_query_param was used to generate next/previous page links in PaginatorMixin. This resulted in (for example) page 2's "next" link having the params: ?page=2&page=3 Instead, URLObject.set_query_param should be used to replace the current value of the "page" parameter.
2012-02-07Fix up packaging and staticfiles changes. Fixes #155. Fixes #153. Fixes #150.Tom Christie
2012-02-02Response as a subclass of HttpResponse - first draft, not quite there yet.Sébastien Piquemal
2012-02-02Python docs say inherit from Exception, not BaseException.Tom Christie
2012-02-02merged with trunk's masterSébastien Piquemal
2012-02-01* -> **Camille Harang
2012-02-01Remove use of Q objects.Tom Christie
2012-02-01Update test settings for 1.2Tom Christie
2012-01-31django-staticfiles for Django 1.2 compatabilityTom Christie
2012-01-30Refs #148Tom Christie
2012-01-30Fixes #148. Thanks @dvinegla.Tom Christie
2012-01-29Use named args in mixin tests.Tom Christie
2012-01-28Drop implicit 'pk' on last arg in urlconf. (Too magical).Tom Christie
2012-01-28Use `staticfiles` for serving css. Fixes #116.Tom Christie
2012-01-28Tidy up auto-escaping.Tom Christie
2012-01-28Fix silly error. This makes more sense.Marko Tibold
2012-01-28moving forwardMarko Tibold
2012-01-28prepare for tagging0.3.2Marko Tibold
2012-01-27Added get_renderers method to ResponseMixinAlen Mujezinovic
2012-01-25Refactoring get_name/get_descriptionTom Christie
2012-01-25Merge remote-tracking branch 'btimby/description'Tom Christie
2012-01-25enhanced request how-to + exampleSébastien Piquemal
2012-01-24Merge pull request #144 from btimby/masterTom Christie
Fix test_with_content_type_args to pass regardless of JSON library idiosyncracies
2012-01-24Modified test case to pass regardless of JSON libraryBen Timby
2012-01-24Modified test case to pass regardless of JSON libraryBen Timby
2012-01-24Fix UserLoggedInAuthentication for POST requests.Tom Christie
Fixes #78.
2012-01-24documentation for request moduleSébastien Piquemal
2012-01-24Reverted formattingBen Timby
2012-01-24Parse url when adding query param.Tom Christie
2012-01-24Drop redundant comment.Tom Christie
2012-01-24corrected request exampleSébastien Piquemal
2012-01-23Refactored get_name()/get_description()Ben Timby
2012-01-23Fix for testcase test_with_content_type_argsBen Timby
2012-01-23Docstring tidy upTom Christie
2012-01-22Fix tests to work on all supported configurations.Tom Christie
2012-01-22.DATA, .FILES, overloaded HTTP method, content type and content available ↵Sébastien Piquemal
directly on the request - see #128