| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-09 | Merge pull request #1564 from alumni/master | Carlton Gibson | |
| Fixes #1535 (HTML widget missing `id` attribute) | |||
| 2014-05-08 | Merge pull request #1575 from ewdicus/iso8601 | Carlton Gibson | |
| Add colon to time zone offset in readable_datetime_formats | |||
| 2014-05-07 | Add colon to time zone offset in readable_datetime_formats | Elliott | |
| 2014-05-04 | Automatically set the field name as value for the HTML `id` attribute on the ↵ | Lucian Mocanu | |
| rendered widget. | |||
| 2014-04-27 | Minor typo | Kamil Niski | |
| 2014-04-07 | Fixed comment. | Mauro de Carvalho | |
| 2014-02-27 | RelatedField default value handling fixed | Anton Shutik | |
| 2014-02-11 | Test and fix for #1210. World's lowest hanging fruit. | Carlton Gibson | |
| 2014-01-15 | Nicer write_only fields implementation. Closes #1355 | Tom Christie | |
| 2014-01-14 | Added write_only and write_only_fields. Refs #1306 | Tom Christie | |
| 2013-12-13 | Fix default values always being False for browsable API | Kevin Brown | |
| This fixes a bug that was introduced in 28ff6fb [1] for the browsable API, specifically with how it handled default values for boolean fields. Previously, it had a global default for boolean fields set to `False`, which was different than the standard None that was used elsewhere. Because this only needed to be done for the browsable API, a fix was put into place that only set the default to `False` when form data was passed into the serializer. This had the unintended side effect of overriding any default set on the boolean field. This fixes #1101 [2] by only overriding the default if the default is `None`, which is the default for all fields. [1]: https://github.com/tomchristie/django-rest-framework/commit/28ff6fb1ec02b7a04c4a0db54885f3735b6dd43f [2]: https://github.com/tomchristie/django-rest-framework/issues/1101 | |||
| 2013-12-03 | Merge pull request #1250 from Ian-Foote/choice_field | Tom Christie | |
| Add choices to options metadata for ChoiceField. | |||
| 2013-11-27 | Updated the assertion message of the ImageField. | Omer Katz | |
| 2013-11-27 | Add unittests for ChoiceField metadata. | Ian Foote | |
| Rename 'name' to 'display_name'. | |||
| 2013-11-26 | Add more context to the ChoiceField metadata. | Ian Foote | |
| 2013-11-26 | Add choices to options metadata for ChoiceField. | Ian Foote | |
| 2013-11-05 | Improve handling of 'empty' values for ChoiceField | Mathieu Pillard | |
| The empty value defaults back to '' (for backwards-compatibility) but is changed automatically to None for ModelSerializers if the `null` property is set on the db field. | |||
| 2013-10-10 | Merge branch 'html-form-rendering' | Tom Christie | |
| 2013-10-10 | Ensure read-only fields don't break with current HTML renderer behavior | Tom Christie | |
| 2013-10-02 | Serializers can now be rendered directly to HTML | Tom Christie | |
| 2013-09-13 | Try a more localised fix to the data=None problem | Philip Douglas | |
| 2013-08-29 | Make ChoiceField.from_native() follow IntegerField behaviour on empty values | Mathieu Pillard | |
| 2013-08-23 | Merge branch 'fix_937' of git://github.com/aburgel/django-rest-framework ↵ | Tom Christie | |
| into aburgel-fix_937 | |||
| 2013-08-19 | Only HTML forms should have implicit default False for boolean fields | Tom Christie | |
| 2013-08-13 | Fix for "No module named compat" | JT | |
| 2013-07-24 | Add support for removing field files by sending an empty string | Alex Burgel | |
| 2013-07-21 | Updated EmailField error message. This one already available in django ↵ | Pavel Zinovkin | |
| translations. https://github.com/django/django/blob/master/django/conf/locale/ru/LC_MESSAGES/django.po#L343 | |||
| 2013-07-05 | Use 'force_text', not 'unicode', for compat across python version | Tom Christie | |
| 2013-07-04 | Remove 'Hold down "Control" ...' message from help_text | Andy Freeland | |
| When getting the help_text from a field where `many=True`, Django appends 'Hold down "Control", or "Command" on a Mac, to select more than one.' to the help_text. This makes some sense in Django's ModelForms, but no sense in the API. | |||
| 2013-06-11 | Pep8 lint | David Sanders | |
| 2013-06-11 | Update ModelField to work with a broader range of fields | David Sanders | |
| Add support for fields that use min and max value validators. | |||
| 2013-06-06 | Never deepcopy validators. Closes #913 | Tom Christie | |
| 2013-06-02 | Serializer field 'default' argument may be a callable | Tom Christie | |
| 2013-05-29 | Fix default field when is a simple callable function. | Gustavo Andrés Angulo | |
| 2013-05-24 | Clean up OPTIONS implementation | Tom Christie | |
| 2013-05-24 | Merge branch 'issue-192-expose-fields-for-options' of ↵ | Tom Christie | |
| https://github.com/grimborg/django-rest-framework into improved-options-support | |||
| 2013-05-23 | simplified, moved field humanizing to Field. broken tests | Oscar Vilaplana | |
| 2013-05-21 | Merge and styling fixes | Tom Christie | |
| 2013-05-20 | Updated SlugField to raise validation errors for invalid slugs | David Jones | |
| 2013-05-19 | Added min_length and max_length | Oscar Vilaplana | |
| 2013-05-19 | s/Single Character/String/ | Oscar Vilaplana | |
| 2013-05-19 | Made field label optional in OPTIONS | Oscar Vilaplana | |
| 2013-05-19 | Integrated status quo of grimborg's awesome humanize_field() for exposing ↵ | Nikolaus Schlemm | |
| field metadata via OPTIONS :) | |||
| 2013-05-19 | Merge branch 'master' of git://github.com/tomchristie/django-rest-framework ↵ | Nikolaus Schlemm | |
| into issue-192-expose-fields-for-options | |||
| 2013-05-18 | Merge branch 'issue-192-expose-fields-for-options' of ↵ | Nikolaus Schlemm | |
| git://github.com/grimborg/django-rest-framework into issue-192-expose-fields-for-options Conflicts: rest_framework/tests/fields.py | |||
| 2013-05-18 | added tests for form | Oscar Vilaplana | |
| 2013-05-18 | Added humanized field names and types | Oscar Vilaplana | |
| 2013-05-18 | Move function to compat. | Ryan Kaskel | |
| 2013-05-18 | Merge latest changes from master. | Ryan Kaskel | |
| 2013-05-18 | Handle Python 3 strings and lazy strings. | Ryan Kaskel | |
