aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-01-19Merge pull request #130 from flashingpumpkin/masterTom Christie
Added an additional attribute `unknown_form_fields` to `FormResource`
2012-01-19Added @bunchesofdonald. Thanks!Tom Christie
2012-01-19Merge pull request #135 from bunchesofdonald/masterTom Christie
Add get_queryset method to ListModelMixin.
2012-01-19Turns out it was `self.fields`Alen Mujezinovic
2012-01-19Added get_queryset method to ListModelMixin.Chris Pickett
This can be easily re-implemented in a view, to allow the user to take such things as request.user into account when creating the queryset.
2012-01-19Renamed `unknown_form_fields` to `allow_unknown_form_fields`Alen Mujezinovic
2012-01-18Docstring/whitespace fixes.Ben Timby
2012-01-17Documentation error.Alen Mujezinovic
2012-01-17Added an additional attribute `unknown_form_fields` to `FormResource`Alen Mujezinovic
If the attribute is set to `True`, the validation method will not raise an `ErrorResponse` with status 400 but silently strip out unexpected fields on the form and only return the validated data.
2012-01-13py25, py26 along with Django12 can't handle assertDictEqual (it was introducedMarko Tibold
in py27)
2012-01-13Got rid of more duplicate tests and put back the tests for #122.Marko Tibold
2012-01-13Merge pull request #125 from michelelazzeri-nextage/masterMarko Tibold
application/xml parser fully compatible with application/xml render
2012-01-13split renderer and parser complex data test caseMichele Lazzeri
2012-01-12add testcate XMLRendererTestCase.test_render_and_parse_complex_dataMichele Lazzeri
2012-01-12correct complex data xml parsingMichele Lazzeri
2012-01-11recursive xml parsingMichele Lazzeri
2012-01-11recursive xml parsingMichele Lazzeri
2012-01-11Revert "update author"Michele Lazzeri
This reverts commit f461acbaf28aa79d82cffaf65b886c3d884cc5f4.
2012-01-11recursive xml parsingMichele Lazzeri
2012-01-11Revert "update author"Michele Lazzeri
This reverts commit f461acbaf28aa79d82cffaf65b886c3d884cc5f4.
2012-01-11update authorMichele Lazzeri
2012-01-11Replace 'x.has_key(y)' with 'y in x'Tom Christie
2012-01-11Added test_ugettext_lazy test. Refs #87.Tom Christie
2012-01-11Made suggested cleanups. Refs #121.Tom Christie
2012-01-11Merge pull request #121 from sebpiq/issue-73Tom Christie
Fixes #73. Thanks @sebpiq, @ekohl!
2012-01-11Added @dzen. Thanks!Tom Christie
2012-01-11Remove explicit handling of 'OPTIONS' method, just raise the response, ↵Tom Christie
rather than returning it.
2012-01-11Merge branch 'master' of https://github.com/tomchristie/django-rest-frameworkTom Christie
2012-01-11Some minor tidy upTom Christie
2012-01-11Merge https://github.com/dzen/django-rest-frameworkTom Christie
2012-01-11Added @sebzur - Thanks!Tom Christie
2012-01-11Minor cleanup on ModelMixinTom Christie
2012-01-11Merge https://github.com/sebzur/django-rest-frameworkTom Christie
2012-01-11Refactor add_query_param to use URLObject. Refs #112.Tom Christie
2012-01-11Replace tab with spaces.Tom Christie
2012-01-11Use safe_dump. Fixes #123.Tom Christie
2012-01-11fixes #122Marko Tibold
tahanks @remcogerlich
2012-01-10QueryMixin to ModelMixin rename.Sebastian Żurek
2012-01-10fixed issue#73 and added a testSébastien Piquemal
2012-01-10Merge branch 'master' of https://github.com/dzen/django-rest-frameworkBenoit C
Conflicts: djangorestframework/views.py
2012-01-10Add test for final() methodBenoit C
2012-01-10Introduce a final methods in View classBenoit C
2012-01-09Introduce a final methods in View classBenoit C
2012-01-09Make a nested if flatEwoud Kohl van Wijngaarden
This is a possible fix for issue #73. The problem occurs when the first if-statement is true, but the second is not. This results into the variable obj not being set. This commit solves it by removing that branch.
2012-01-08QueryMixin class updates (comments + docs and the definition of ↵Sebastian Żurek
get_instance_data method)
2012-01-05Added URLObjectTom Christie
2012-01-05Merge pull request #111 from j4mie/url-generationTom Christie
Preserve existing query params in PaginatorMixin
2012-01-05Preserve existing query params in PaginatorMixinJamie Matthews
Previously, generation of next/previous links would discard any existing query parameters. This commit introduces a dependency on URLObject, which is used to intelligently parse and modify URLs to ensure existing params are preserved. Addresses issues #107
2012-01-04Merge pull request #109 from jakul/bare_except_stmtsMarko Tibold
Change 'except' for 'except Exception' (Fixes issue #75)
2012-01-04#75 remove except statements which are overly broad in the exception they catchCraig Blaszczyk