aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Collapse)Author
2014-09-11Tidy up lookup_classTom Christie
2014-09-11Improve memory address removal for serializer representationsTom Christie
2014-09-11Improve memory address removal for serializer representationsTom Christie
2014-09-11Merge masterTom Christie
2014-09-10Compat fixesTom Christie
2014-09-10Added help_text argument to fieldsTom Christie
2014-09-10TweaksTom Christie
2014-09-09Fleshing out serializer fieldsTom Christie
2014-09-09Merge pull request #1852 from GVRV/bugfix/apiroot_get_regressionXavier Ordoquy
Make sure APIRoot.get can take on args, kwargs so router can be embedded...
2014-09-09Make sure APIRoot.get can take on args, kwargs so router can be embedded ↵Gaurav Dadhania
within any URL pattern.
2014-09-08More test sortingTom Christie
2014-09-08Merge pull request #1844 from adamsc64/issue_1533Tom Christie
Fixed #1533 - Resolved issue with integer keys on nested choices never v...
2014-09-08Stop the API Client converting empty lists/dicts to empty stringsHamish Campbell
2014-09-06Fixed #1533 - Resolved issue with integer keys on nested choices never ↵Christopher Adams
validating. - Added unit test for nested `choices` argument. - Added unit test for non-nested `choices` argument.
2014-09-06Merge pull request #1818 from tituomin/serializer-subclass-mappingTom Christie
Better mapping for custom model fields to serializer fields.
2014-09-06Merge pull request #1838 from jbittel/fix-encoded-filename-rfc6266Tom Christie
Support RFC6266 encoded filenames
2014-09-05Refactor disposition unpacking for clarityJason Bittel
2014-09-05Use force_text from compatJosé Padilla
2014-09-05Merge remote-tracking branch 'poswald/view-description-as-promise' into ↵José Padilla
view-description-as-promise
2014-09-05Fix encoded filename parsing to allow for langJason Bittel
2014-09-05Refactor encoded filename feature per #1531Jason Bittel
2014-09-05Removed use encoding available only in py3Vladislav Vlastovskiy
2014-09-05Added get filename as encodedVladislav Vlastovskiy
This filename described in RFC 6266
2014-09-05Remove order_by from AutoFilterSetJosé Padilla
2014-09-05Workin onTom Christie
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-03More test passingTom 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-02Getting tests passingTom Christie
2014-09-02Add relations and get tests runningTom Christie
2014-09-02Remove Login Dropdown when Auth Views are not registered.Carlton Gibson
Fixes #1738
2014-09-01Generator implementation of class mapping.Timo Tuominen