aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
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-22Merge pull request #311 from j4mie/fix-reverse-relationsTom Christie
Fix serialization of reverse relationships
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-21Minor docs tweaksTom Christie
2012-10-21Merge pull request #308 from markotibold/docs-editsDaniel Sokolowski
Documentation spelling and other mistake fixes.
2012-10-21Changed IsAdmin -> IsAdminUser in exampleMarko Tibold
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-18Merge pull request #307 from Roarster/dotted_branch_testsDaniel Sokolowski
Added tests for dotted notation in serializer field source
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-18Merge pull request #304 from tomchristie/consitent_settingsTom Christie
Make settings consistent with corrosponding view attributes
2012-10-18Minor docs fixTom Christie
2012-10-17Make settings consistent with corrosponding view attributesTom Christie
2012-10-17Negotiation API finalized. .select_renderers and .select_parsersTom Christie
2012-10-17Merge pull request #303 from tomchristie/parser_refactorTom Christie
Parser refactor
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-17Added @rdobson. Thanks!Tom Christie
2012-10-17Merge pull request #302 from rdobson/restframework2Tom Christie
Make default field check safe for boolean values
2012-10-17Make default field check safe for boolean values whereby 'False' may be an ↵Rob Dobson
acceptable default value
2012-10-17Split up doc sections more cleanlyTom Christie
2012-10-17Use two seperate exceptions - `AuthenticationFailed`, and `NotAuthenticated`Tom Christie
Cleaner seperation of exception and resulting HTTP response. Should result in more obvious error messages.
2012-10-17Use correct status codeTom Christie
2012-10-17Use correct status codeTom Christie
2012-10-17Add docs for 401 vs 403 responsesTom Christie
2012-10-17Add `Unauthenticated` exception.Tom Christie
2012-10-17Highlight use of permissions alnog with authenticationTom Christie
2012-10-17Docs tweaksTom Christie
2012-10-17Added @eofs. Thanks!Tom Christie
2012-10-17Merge pull request #298 from eofs/restframework2Tom Christie
Typo in class name fixed
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-15Merge pull request #295 from ulmus/restframework2Tom Christie
Added TextField to serializer
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.