aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/routers.py
AgeCommit message (Collapse)Author
2013-12-13Add notes on lookup_prefix argument and why it's there even though unused by ↵Tom Christie
the default implementations.
2013-12-10SimpleRouter.get_lookup_regex got lookup_prefixAlan Justino
This allows @alanjds/drf-nested-routers to not duplicate/monkeypatch work made here
2013-08-23Don't consume .json style suffixes with routers.Tom Christie
When trailing slash is false, the lookup regex should not consume '.' characters. Fixes #1057.
2013-06-26Raise exception when attempting to dynamically route to a method that is ↵Jamie Matthews
already routed to. Fixes #940
2013-06-21Merge pull request #941 from FreakyDug/masterTom Christie
Fixed a couple of small problems I found when using the action decorator.
2013-06-21Update assertion error to reference 'base_name' argument, not incorrect ↵Tom Christie
'name' argument. Closes #933
2013-06-21Allow uppercase methods in action decorator.Philip Douglas
Previously, using uppercase for the method argument would silently fail to route those methods.
2013-06-07Allow the default router to have a custom name.Ethan Fremen
Signed-off-by: Ethan Fremen <ethan@matterport.com>
2013-06-04Added trailing_slash argument to routers. Closes #905Tom Christie
2013-05-24Allow action decorator to handle multiple http methodsAlex Burgel
2013-05-16Version 2.3.3Tom Christie
2013-05-14Merge branch 'master' of https://github.com/avinash240/django-rest-frameworkTom Christie
2013-05-14Fix Django 1.3 compat with routersTom Christie
2013-05-11added support for multiple @action and @link decorators on a viewset, along ↵Marlon Bailey
with a router testcase illustrating the failure against the master code base
2013-05-02Automagically determine base_name in router classTom Christie
2013-04-29Remove AutoRouter. (Adding shortcut to generic views/viewsets means it's ↵Tom Christie
unneccessary)
2013-04-292.2's PendingDeprecationWarnings now become DeprecationWarnings. 2.3's ↵Tom Christie
PendingDeprecationWarnings added.
2013-04-26Bits of cleanupTom Christie
2013-04-26Deal with List/Instance suffixes for viewsetsTom Christie
2013-04-25Added AutoRouter. Don't know if this is a good idea.Tom Christie
2013-04-24Various clean up and lots of docsTom Christie
2013-04-04TweaksTom Christie
2013-04-04Factor view names/descriptions out of View classTom Christie
2013-04-04CommentingTom Christie
2013-04-04Add support for action and link routingTom Christie
2013-04-04Fleshing out viewsets/routersTom Christie
2013-03-31Add viewsets/routers to indexs etcTom Christie
2013-01-15TweaksTom Christie