| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-04-30 | Merge pull request #1391 from kaygorodov/master | Xavier Ordoquy | |
| Turning off pagination | |||
| 2014-04-28 | typo | Laurent Bristiel | |
| 2014-04-28 | very minor typo in code example | dpetzel | |
| 2014-04-13 | Merge remote-tracking branch 'origin/master' into 2.4.0 | Xavier Ordoquy | |
| Conflicts: .travis.yml docs/api-guide/fields.md docs/api-guide/routers.md docs/topics/release-notes.md rest_framework/authentication.py rest_framework/serializers.py rest_framework/templatetags/rest_framework.py rest_framework/tests/test_authentication.py rest_framework/tests/test_filters.py rest_framework/tests/test_hyperlinkedserializers.py rest_framework/tests/test_serializer.py rest_framework/tests/test_testing.py rest_framework/utils/encoders.py tox.ini | |||
| 2014-04-10 | Document new UnicodeYAMLRenderer | Miro Hrončok | |
| 2014-04-08 | Fix python syntax in filtering docs | Craig | |
| 2014-03-17 | Minor docs tweak | Tom Christie | |
| 2014-03-17 | Tweak DRF compound fields docs | Tom Christie | |
| 2014-03-16 | Serializer fields section for 3rd-party packages | Steven Cummings | |
| * Add new section to serializer fields page where we can list and link 3rd-party packages that provide more field types * Add an entry for drf-compound-fields | |||
| 2014-03-06 | Add SEARCH_PARAM and ORDERING_PARAM to settings | Peter Inglesby | |
| Fixes #1434 | |||
| 2014-02-28 | Adds HawkREST to 3rd party auth docs | Kumar McMillan | |
| 2014-02-28 | Fix trailing whitespace | Kumar McMillan | |
| Sorry, my editor does this automatically | |||
| 2014-02-21 | Minor docs example fix | Charlie Denton | |
| Dates are smaller when they happen before. | |||
| 2014-02-20 | Link to DRF-extensions. Refs #1430 | Tom Christie | |
| 2014-02-20 | include djangorestframework-httpsignature in the docs | Elvio Toccalino | |
| 2014-02-18 | fix(docs): fix code indentation in serializers.md | Saurabh Kumar | |
| It fixes the indentation of `restore_object()` in the section "Specifying which fields should be write-only" serializers documentation. | |||
| 2014-02-14 | Update throttling.md | Bo Peng | |
| Added comma to make DEFAULT_THROTTLE_CLASSES a tuple in example, for copy&paste to work nicely. | |||
| 2014-02-14 | Minor typos fixed in api-guide/testing.md (request -> response). | Vita Smid | |
| 2014-02-10 | Replace 'detail' with 'default_detail' in Exceptions guide and APIException ↵ | Hassan Shamim | |
| class docstring. | |||
| 2014-02-05 | #1390, docs, turning of pagination | Andrey Kaygorodov | |
| 2014-02-05 | turn of pagination | Andrey Kaygorodov | |
| 2014-02-04 | Fixed a bug backticks | RicterZ | |
| fix you may optionally exclude the ``self.check_object_permissions, and simply return the object from the `get_object_or_404` lookup. to you may optionally exclude the `self.check_object_permissions`, and simply return the object from the `get_object_or_404` lookup. | |||
| 2014-02-03 | Viewsets docs typo | Charlie Denton | |
| The docstring in the example said "update" instead of "create". | |||
| 2014-02-02 | fixed typo (wrong "its") | Jeff Fein-Worton | |
| 2014-02-01 | Update fields.md | meoooh | |
| 2014-01-31 | Merge pull request #1379 from bodylabs/exception_example | Tom Christie | |
| Fix doc for custom exception sample | |||
| 2014-01-31 | Fix doc for custom exception sample | Paul Melnikow | |
| The way to provide a default detail for APIException is to define a `default_detail` attribute on the subclass. Defining a `detail` attribute without `default_detail` will not work, and will result in empty detail instead. | |||
| 2014-01-19 | Drop django-rest-framework-bulk API descriptions | Tom Christie | |
| 2014-01-19 | Merge pull request #1363 from miki725/master | Tom Christie | |
| Added docs for bulk views from django-rest-framework-bulk. | |||
| 2014-01-18 | Include the djangorestframework-jwt package | José Padilla | |
| 2014-01-18 | Added docs for bulk views from django-rest-framework-bulk. | Miroslav Shubernetskiy | |
| 2014-01-15 | Security update to OrderingFilter2.3.12 | Tom Christie | |
| 2014-01-14 | More HyperlinkedModelSerializer docs | Tom Christie | |
| 2014-01-14 | Added write_only and write_only_fields. Refs #1306 | Tom Christie | |
| 2014-01-13 | Merge pull request #1333 from bodylabs/2.4.0+lookup_regex | Tom Christie | |
| Let viewsets specify their regex | |||
| 2014-01-12 | CharField - add allow_null argument | Yuri Prezument | |
| 2014-01-10 | Merge pull request #1345 from bodylabs/serializers_doc | Tom Christie | |
| serializers.md: Fix typos | |||
| 2014-01-10 | serializers.md: Fix typos | Paul Melnikow | |
| 2014-01-09 | Fix URL/Slug Field signatures in docs | Yuri Prezument | |
| 2014-01-08 | Use www.django-rest-framework.org for docs instead of ↵ | Tom Christie | |
| django-rest-framework.org due to issues with naked domains | |||
| 2014-01-04 | Fix a typo | Paul Melnikow | |
| 2014-01-04 | Router: Do not automatically adjust lookup_regex when trailing_slash is True | Paul Melnikow | |
| BREAKING CHANGE When trailing_slash is set to True, the router no longer will adjust the lookup regex to allow it to include periods. To simulate the old behavior, the programmer should specify `lookup_regex = '[^/]+'` on the viewset. https://github.com/tomchristie/django-rest-framework/pull/1328#issuecomment-31517099 | |||
| 2014-01-04 | Allow viewset to specify lookup value regex for routing | Paul Melnikow | |
| This patch allows a viewset to define a pattern for its lookup field, which the router will honor. Without this patch, any characters are allowed in the lookup field, and overriding this behavior requires subclassing router and copying and pasting the implementation of get_lookup_regex. It's possible it would be better to remove this functionality from the routers and simply expose a parameter to get_lookup_regex which allows overriding the lookup_regex. That way the viewset config logic could be in the a subclass, which could invoke the super method directly. I'm using this now for PostgreSQL UUID fields using https://github.com/dcramer/django-uuidfield . Without this patch, that field passes the lookup string to the database driver, which raises a DataError to complain about the invalid UUID. It's possible the field ought to signal this error in a different way, which could obviate the need to specify a pattern. | |||
| 2013-12-23 | Fuller notes on the 'base_name' argument. Closes #1160. | Tom Christie | |
| 2013-12-23 | Added note on view_name in hyperlinked relationships. Closes #1221 | Tom Christie | |
| 2013-12-23 | Merge branch 'bennbollay-patch-1' into 2.4.0 | Tom Christie | |
| Conflicts: .travis.yml docs/api-guide/routers.md rest_framework/compat.py tox.ini | |||
| 2013-12-21 | Added example of using APIException class. Closes #1300 | Tom Christie | |
| 2013-12-21 | Docs tweaks | Tom Christie | |
| 2013-12-21 | Added links to djangorestframework-camel-case in the third party | Vitaly Babiy | |
| sections of the docs for both parsers and renderers. | |||
| 2013-12-13 | Links to drf-nested-routers | Tom Christie | |
