| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-02-03 | Small documentation fixes | James Cooke | |
| * Remove "you you" from viewsets API-guide * Fix link from routers API-guide to viewsets API-guide | |||
| 2015-01-29 | Removed deprecated '.model' docs | Tymur Maryokhin | |
| 2015-01-28 | Fix #2476 | Xavier Ordoquy | |
| 2015-01-20 | correcting unclosed quote in routers.md | soooooot | |
| correcting unclosed quote in routers.md | |||
| 2014-12-28 | Add notes on include and namespacing. Closes #2335. | Tom Christie | |
| 2014-12-19 | Merge pull request #2010 from tanwanirahul/master | Tom Christie | |
| Ability to customize method names without creating a custom router | |||
| 2014-12-19 | Updates url_path info per suggestion | Rahul | |
| 2014-12-19 | Added documentation about url_path parameter for custom actions. | Rahul | |
| 2014-12-12 | documentation typo | Jeff Fein-Worton | |
| base-name -> base_name | |||
| 2014-11-25 | Use MkDocs meta.source to render source code links | José Padilla | |
| 2014-08-20 | Deprecate .model in related routers/permissions | Tom Christie | |
| 2014-07-26 | Merge remote-tracking branch 'origin/master' into 2.4.0 | Xavier Ordoquy | |
| Conflicts: rest_framework/fields.py | |||
| 2014-06-26 | Fixes #1651. Add link to drf-extensions nested routers to docs | Chibisov Gennady | |
| 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-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 | 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-13 | Links to drf-nested-routers | Tom Christie | |
| 2013-12-13 | Merge branch 'master' into 2.4.0 | Tom Christie | |
| Conflicts: .travis.yml docs/api-guide/routers.md docs/topics/release-notes.md rest_framework/compat.py | |||
| 2013-12-13 | Merge branch 'master' of https://github.com/tomchristie/django-rest-framework | Tom Christie | |
| Conflicts: docs/api-guide/routers.md | |||
| 2013-12-12 | third-party package: wq.db | S. Andrew Sheppard | |
| 2013-12-12 | Add third party packages | Tom Christie | |
| 2013-12-10 | Update routers.md | David Ray | |
| Reference to ```DefaultRouter``` should be ```SimpleRouter``` | |||
| 2013-10-03 | Fixed code example. | Omer Katz | |
| 2013-08-29 | Better docs for customizing dynamic routes. Refs #908 | Tom Christie | |
| 2013-08-21 | Merge master | Tom Christie | |
| 2013-08-21 | Include import paths throughout docs. | Tom Christie | |
| Closes #1051. Thanks to @pydanny for the report. | |||
| 2013-08-19 | Docs tweaking | Tom Christie | |
| 2013-08-19 | Merge | Tom Christie | |
| 2013-08-07 | Fixed typos in a bunch of docs | Veronica Lynn | |
| 2013-08-03 | Fixing typos in routers.md | James Summerfield | |
| 2013-07-15 | Combined link_* and action_* decorators into detail_route and list_route, ↵ | Alex Burgel | |
| marked the originals as deprecated. | |||
| 2013-07-02 | Minor tidying | Tom Christie | |
| 2013-07-02 | #955 updated router docs with more information on the `Route` named tuple ↵ | Rudolf Olah | |
| and its parameters. | |||
| 2013-06-27 | #955 updated documentation for overriding `routes` attribute in Router ↵ | Rudolf Olah | |
| sub-classes | |||
| 2013-06-21 | Update router docs on base_name. Refs #933. | Tom Christie | |
| 2013-06-04 | Added trailing_slash argument to routers. Closes #905 | Tom Christie | |
| 2013-05-28 | Fix md formatting and typos | Stephan Groß | |
| 2013-05-28 | Fixed typos | Pascal Borreli | |
| 2013-05-02 | Simplifying bits of docs | Tom Christie | |
| 2013-04-29 | Remove AutoRouter. (Adding shortcut to generic views/viewsets means it's ↵ | Tom Christie | |
| unneccessary) | |||
| 2013-04-26 | Deal with List/Instance suffixes for viewsets | Tom Christie | |
| 2013-04-25 | Docs, docs, docs | Tom Christie | |
| 2013-04-25 | More viewset/router docs | Tom Christie | |
| 2013-04-24 | Various clean up and lots of docs | Tom Christie | |
| 2013-04-09 | Viewsets and routers in seperate docs | Tom Christie | |
