aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Collapse)Author
2014-09-05Moved OAuth support out of DRF and into a separate package, per #1767Jharrod LaFon
2014-09-05Remove order_by from AutoFilterSetJosé Padilla
2014-09-05Merge pull request #1834 from piotrjakimiak/masterTom Christie
Fix returning None when allow_none is True in CharField
2014-09-05Use Serializer instead of ModelSerializerPiotr Jakimiak
2014-09-05Merge pull request #1829 from cezar77/login-form-errorsTom Christie
Display validation errors on login form
2014-09-05Remove light gray bordering from the well with general message errorCezar Pendarovski
2014-09-05Fix commentPiotr Jakimiak
2014-09-05Fix returning None when allow_none is True in CharFieldPiotr Jakimiak
2014-09-05Place general error message in wellCezar Pendarovski
2014-09-05Change bootstrap class warning to errorCezar Pendarovski
2014-09-05Merge pull request #1820 from carltongibson/login-dropdownTom Christie
Hide login link in browsable API if the login view is not registered.
2014-09-05Input fields get hightlighted if login fails and username is persistedCezar Pendarovski
2014-09-04General message error goes above submit buttonCezar Pendarovski
2014-09-04Error messages are displayed below the input fieldsCezar Pendarovski
2014-09-04Display validation errors on login formCezar Pendarovski
2014-09-04Prefer `format` and use named blocksCarlton Gibson
2014-09-03Using user.get_username() instead of user.username.dpanesso
This solves an error when using a auth model that does not have a username field.
2014-09-03Alter CSRF exemption implementationPiper Merriam
The previous implementation of decorating `APIView.dispach` with the `csrf_exempt` decorator allowed for an easy-to-make mistake where someone could override the `dispatch` method on a view and inadvertantly remove the csrf exemption of their api view. By moving the decoration of the view into the `as_view` logic, it becomes much more difficult to make this mistake.
2014-09-03Version 2.4.22.4.2Tom Christie
2014-09-03remove rogue printMichał Jaworski
2014-09-03Use explicit many=True for object_serializer instantiation in ↵Michał Jaworski
PaginationSerializer and add catch dummy 'many' kwarg on DefaultObjectSerializer
2014-09-03Moved li tags inside `optional_login`Carlton Gibson
as per https://github.com/tomchristie/django-rest-framework/pull/1820#discussion_r16987993
2014-09-02Remove Login Dropdown when Auth Views are not registered.Carlton Gibson
Fixes #1738
2014-09-01Merge pull request #1816 from carltongibson/regression-login-templateCarlton Gibson
Regression for #1810: Test login view renders
2014-09-01Version 2.4.12.4.1Tom Christie
2014-09-01Regression for #1810: Test login view rendersCarlton Gibson
2014-08-30Restore body block to base template.Daniel Roseman
2014-08-292.4 Release notes2.4.0Tom Christie
2014-08-29Merge pull request #1784 from tomchristie/remove-model-attributeTom Christie
Deprecate `.model` attribute on views
2014-08-28Validation errors in the rendered HTML fixedCezar Pendarovski
2014-08-27Put all TextNodes (method names) back to same line with parent elementCezar Pendarovski
2014-08-25Merge remote-tracking branch 'upstream/master' into fix-1719Cezar Pendarovski
Conflicts: rest_framework/templates/rest_framework/base.html
2014-08-22Made all color declarations in bootstrap-tweaks.css consistentCezar Pendarovski
2014-08-22Fixed the issue with the non-draggable horizontal scrollbarCezar Pendarovski
2014-08-20Deprecate .model in related routers/permissionsTom Christie
2014-08-20Merge branch 'master' into set-retry-afterDmitry Mukhin
Conflicts: tests/test_throttling.py
2014-08-20Deprecate .model attribute on viewsTom Christie
2014-08-20Fix cache_throttle typoTom Christie
2014-08-19Drop six from compat. 1.4.2 is now the lowest supported version.Tom Christie
2014-08-19Merge pull request #1778 from linovia/bugfix/1398Tom Christie
Bugfix/1398
2014-08-19Resolve python3 linting issueTom Christie
2014-08-19Resolve linting issuesTom Christie
2014-08-19Code linting and added runtests.pyTom Christie
2014-08-19Merged #1398 against 2.4 branch.Xavier Ordoquy
2014-08-19Merge masterTom Christie
2014-08-18Only set .action attribute in override_method if it already existed on the viewTom Christie
2014-08-18Merge pull request #1763 from fongandrew/patch-1Tom Christie
override_method should substitute action
2014-08-18Merge pull request #1505 from ticosax/test.client.logoutTom Christie
reset stored credentials when call client.logout()
2014-08-18Merge pull request #1641 from javins/login-titleTom Christie
Refactor login template to extend base.
2014-08-18Merge pull request #1726 from ikame/masterTom Christie
Leave status responsibility to parent class