aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/fields.py
AgeCommit message (Collapse)Author
2013-03-21Default date/time fields now return python date/time objects again by defaultTom Christie
2013-03-20iso formated datetime aware fields with +0000 offset should use 'Z' suffix ↵Tom Christie
instead
2013-03-13Fix duplicated database queries for paginated lists.Tom Christie
Closes #713.
2013-03-07Fix broken `None` value for `TimeField`.Tom Christie
Refs #707.
2013-03-06Patched DateField and DateTimeField to check for None values before trying ↵Kevin Stone
to perform date(time) conversion. Signed-off-by: Kevin Stone <kevinastone@gmail.com>
2013-03-06Clean ups to datetime formattingTom Christie
2013-03-05Merge datetime formatsTom Christie
2013-03-01Fix for django 1.3 compatibilityStephan Groß
2013-03-01Add format class attributesStephan Groß
2013-03-01Add new ISO8601 setting + integrationStephan Groß
2013-03-01Add docs update - part 1Stephan Groß
2013-03-01Add drf settings + output format + testcasesStephan Groß
2013-03-01Fix for python 3 support - thanks @LinoviaStephan Groß
2013-03-01Add better date / datetime validation (pull 2)Stephan Groß
addition to #631 with update to master + timefield support
2013-02-21Catch TypeError as well as ValueError when parsing dates, ref #699Yuri Prezument
2013-02-15Merge pull request #657 from dgaus/masterTom Christie
Make is_simple_callable consider default arguments
2013-02-14Added a serializer TimeFieldAndreas Pelme
2013-02-13Make is_simple_callable consider fields which have default argumentsDiego Gaustein
2013-02-12Clean up field_to_native logicTom Christie
2013-02-07Allow serializers to handle dicts as well as objects. Fixes #447.Tom Christie
2013-02-06Purge naked excepts.Marc Tamlyn
Most of these had obvious exceptions which would be thrown. Some I'm not sure about but they should at least catch only Exception so as not to ignore SystemExit and other inappropriate Error classes.
2013-02-04Merge branch 'py3k' into 2.2Tom Christie
Conflicts: rest_framework/relations.py rest_framework/serializers.py rest_framework/tests/relations_hyperlink.py rest_framework/tests/relations_slug.py
2013-02-01Merge branch 'p3k' of https://github.com/linovia/django-rest-framework into ↵Tom Christie
working Conflicts: rest_framework/authentication.py rest_framework/relations.py rest_framework/serializers.py rest_framework/settings.py rest_framework/tests/authentication.py rest_framework/tests/genericrelations.py rest_framework/tests/generics.py rest_framework/tests/relations_hyperlink.py rest_framework/tests/relations_nested.py rest_framework/tests/relations_pk.py rest_framework/tests/serializer.py
2013-01-30Add dprecation warningsTom Christie
2013-01-30Merge branch 'master' into many-fieldsTom Christie
Conflicts: rest_framework/relations.py
2013-01-30Formatting fixesTom Christie
2013-01-03Tweak comment.Tom Christie
2013-01-03Merge pull request #541 from yprez/default_and_partial_serializers2Tom Christie
Fix "default" values and partial serializers. Fixes #532.
2013-01-03Move the various compat things to the compat module.Xavier Ordoquy
2013-01-03Some cleanupYuri Prezument
2013-01-02FileField validation - handle case when files=None, fixes #542Yuri Prezument
2013-01-02urlparse not used here.Xavier Ordoquy
2013-01-02Merge remote-tracking branch 'reference/py3k' into p3kXavier Ordoquy
2013-01-02Add explaining commentYuri Prezument
2013-01-02Fix "default" and partial serializers, fixes #532Yuri Prezument
2012-12-31Relation fields move into relations.pyTom Christie
2012-12-21Update RelatedField#field_from_native coding styleMark Aaron Shirley
2012-12-19Merge remote-tracking branch 'upstream/master' into related-requiredMark Aaron Shirley
2012-12-19Merge pull request #510 from joual/masterTom Christie
Fixes #509
2012-12-19Check if RelatedField is required.Mark Aaron Shirley
2012-12-18WhitespaceTom Christie
2012-12-15Final commit to restore the fixJoel Marcotte
Signed-off-by: Joel Marcotte <skaner@gmail.com>
2012-12-15Reverting commit to previous state to see if the test is only relevant to ↵Joel Marcotte
django 1.5b2
2012-12-15Fix model validation exclusions. Fixes #500. Fixes #506.Tom Christie
2012-12-15Fix for JSON integer match to a ChoiceFieldJoel Marcotte
2012-12-13fixed validationerror usageStephan Groß
2012-12-11Fix broken nested fieldsTom Christie
2012-12-10Making sure the assert does not fail when required=False, read_only=TrueVenkat
2012-12-08Add null related field optionTom Christie
2012-12-08Fix for emptystring as nullable FKTom Christie