aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Collapse)Author
2012-10-22Merge pull request #315 from Roarster/emptymanytomanyTom Christie
#314 Fix for manytomany field being required in the payload even though ...
2012-10-22#314 Fix for manytomany field being required in the payload even though the ↵Ian Strachan
field is specified as readonly in the serializer
2012-10-22Merge commit '95a670de41a246777bc1e448dca8cc576b7b86ea' into ↵Marko Tibold
BrowsableAPIRenderer Conflicts: rest_framework/renderers.py - manually resolved conflict
2012-10-22Merge field changes: .default and .widgetTom Christie
2012-10-22Fix serialization of reverse relationshipsJamie Matthews
2012-10-21Refactoring BrowsableAPIRendererMarko Tibold
2012-10-21Remove redundant check if method=='DELETE'Marko Tibold
2012-10-21Remove `initial` kwarg, add `default`.Tom Christie
2012-10-21Fixing spelling errors.Marko Tibold
2012-10-19docs, docs, docs, docs, docs, docs, docsTom Christie
2012-10-19Fix up widget choicesTom Christie
2012-10-19Drop help_textTom Christie
2012-10-18First pass at pastebin tutorialTom Christie
2012-10-18Added tests for dotted notation in serializer field sourceIan Strachan
2012-10-18Apply readonly on RelatedFieldTom Christie
2012-10-18Allow callables in dotted notation like Field(source='foo.bar')Tom Christie
2012-10-17Make settings consistent with corrosponding view attributesTom Christie
2012-10-17Negotiation API finalized. .select_renderers and .select_parsersTom Christie
2012-10-17Added `media_type` to `.parse()` - Consistency with renderer API.Tom Christie
2012-10-17parser_context includes `view`, `request`, `args`, `kwargs`. (Not `meta` ↵Tom Christie
and `upload_handlers`) Consistency with renderer API.
2012-10-17Drop .parse_string_or_stream() - keep API minimal.Tom Christie
2012-10-17Make default field check safe for boolean values whereby 'False' may be an ↵Rob Dobson
acceptable default value
2012-10-17Typo in class nameeofs
2012-10-16Merge branch 'restframework2' of ↵Tom Christie
https://github.com/tomchristie/django-rest-framework into restframework2
2012-10-15Merge pull request #296 from ulmus/restframework2Tom Christie
Removed serializers.TextField and related tests
2012-10-15Explicit CSRF failure message. Fixes #60.Tom Christie
2012-10-15Tweak parsers to take parser_contextTom Christie
2012-10-15Removed serializer.TextField and related testsJens Alm
2012-10-15Added docs, integer fields and refactored models.TextField to use CharFieldJens Alm
I realized that per the django forms, there is no need for a separate TextField, an unlimited CharField is perfectly good. Also added default field for the different IntegerField types
2012-10-15Revert "Support for request-based queryset limits on ListModelMixin"Jens Alm
This reverts commit de4604be0ab64da2d7da0a7054197278e566ced2.
2012-10-15Support for request-based queryset limits on ListModelMixinJens Alm
ListModelMixin uses the get_queryset from the MultipleObjectMixin. This method can be overridden on the View class to return a different queryset, but get_queryset doesn't accept a request parameter in. This commit adds the limit_list hook to override if you want to limit the queryset based on request-information such as the logged in user.
2012-10-15Added tests for TextFieldJens Alm
2012-10-15Added TextField to recognized fieldsJens Alm
2012-10-14Documentation for parsersTom Christie
2012-10-13Improve documentation for RequestsTom Christie
2012-10-11Sanitise JSON error messagesTom Christie
2012-10-10Don't fail when no data providedTom Christie
2012-10-10Fix session authTom Christie
2012-10-10Fix yaml renderingTom Christie
2012-10-10Tidy up APISettings object to not rely on module stateTom Christie
2012-10-10Fix key ordering in json. (sort if it's a sorted dictc representation, or ↵Tom Christie
not otherwise)
2012-10-10Make sure JSON output in Browseable API is nicely indentedTom Christie
2012-10-10Permissions and throttles no longer have a view attribute on self. ↵Tom Christie
Explicitly passed to .has_permissions(request, view, obj=None) / .allow_request(request, view)
2012-10-10api_key -> auth_token to avoid TastyPie conflictTom Christie
2012-10-10Remove 'tut 6 - resources' from the docs, since it doesn't exist yetTom Christie
2012-10-09Add 'to_many' flag in get_related_fieldTom Christie
2012-10-09Add flag in get_related_fieldTom Christie
2012-10-09Rename HTMLTemplateRenderer -> HTMLRenderer, DocuemntingHTMLRenderer -> ↵Tom Christie
BrowseableAPIRenderer
2012-10-09Flesh out quickstart guide and make some style tweaksTom Christie
2012-10-09Fix browseable API form display error for authenticated permissionsTom Christie