aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework
AgeCommit message (Collapse)Author
2011-07-13Improve coverage reportingTom Christie
2011-07-11typo in testTom Christie
2011-07-11Merge pull request #46 from jakul/m2m_create_throughTom Christie
Update to existing pull request "Support for creating objects with m2m relationsM2m"
2011-07-11Merge pull request #44 from fzunino/m2m_createTom Christie
Support for creating objects with m2m relations
2011-07-08remove hardcoded model._meta.many_to_many[0]; update mixin tests to test ↵Craig Blaszczyk
with 0, 1, or multiple groups
2011-07-08update mixin to work with m2m data using a through field, by storing the ↵Craig Blaszczyk
name of the field and manually creating an object in the related table
2011-07-08add unit tests which show m2m creation failing for through tableCraig Blaszczyk
2011-07-07Tests for CreateModelMixin (unit and integration test via ↵Fernando Zunino
ListOrCreateModelView).
2011-07-06fixed a bug in serializersSébastien Piquemal
2011-07-06now cleans data from parameters used for overloadsSébastien Piquemal
2011-07-05Support for creating objects with m2m relationsFernando Zunino
2011-07-04debugged serializersSébastien Piquemal
2011-07-02Picky. :)Tom Christie
2011-07-02Fixed YAMLParser = NoneJens Alm
2011-07-02Sloppy copy-pasting...Jens Alm
2011-07-02parsers.DEFAULT_PARSERS added to be consistent with renderers.DEFAULT_RENDERERSJens Alm
2011-07-02Fix: Crash when yaml isn't installed.Fernando Zunino
2011-07-02TypoTom Christie
2011-07-01pull in markos changes, minor tweaks to yaml stuffTom Christie
2011-07-01Fix bitbucket issue 39. All further issues should be on githubTom Christie
2011-07-01mergeTom Christie
2011-07-01Fix #36Tom Christie
2011-07-01FIX: ModelViews can have Resources whose models have unique fields.Fernando Zunino
ReadModelMixin and UpdateModelMixin store model instance as a property. This allows ModelResource to bind the ModelForm using the model instance making the form validate the input data against the model instance and not a brand new instance. When the latter happened and the model used unique fields, the form validation failed whenever a PUT was maintaining the previuos value of the unique field.
2011-06-30Tidy up oauth imports slightlyTom Christie
2011-06-30merge from astrawTom Christie
2011-06-29return 400 BAD REQUEST rather than Django traceback/500 error on failed ↵Andrew Straw
multipart parse
2011-06-28Pull in David's initial oauth testsTom Christie
2011-06-27Remove erronous tracebackTom Christie
2011-06-26Allow .json .html .xml style urls and also allow these formats to be ↵Michael Fötsch
specified in a "?format=..." query string.
2011-06-26Very basic YAML support. Probably needs some tweaking, and definitely needs ↵markotibold
tests.
2011-06-26Very basic YAML support. Probably needs some tweaking, and definitely needs ↵markotibold
tests.
2011-06-26On 403's no forms will be displayed anymoremarkotibold
2011-06-25Smaller version in the headermarkotibold
2011-06-25Adding tests for OAuth authentication through django-oauth-plus, a dedicated ↵David Larlet
example project is still missing though
2011-06-25Try to be marginally less awful if we can't reverse resolve the URL for a ↵Tom Christie
model. TODO: Give up on even trying to do such black magic in the first place?
2011-06-25Urg. Fixed bug in assigning headersTom Christie
2011-06-25Typo in urlTom Christie
2011-06-25Allow HEAD methodTom Christie
2011-06-25Support for HEAD methodCarles Barrobés
2011-06-25Add version to htmlTom Christie
2011-06-21Decimals are a protected_type - let's leave them up to the renderer to deal withTom Christie
2011-06-15Additional test for JSONTom Christie
2011-06-15Version 0.2.3Tom Christie
2011-06-15Merge throttling and fix up a coupla thingsTom Christie
2011-06-15Allow related models to be fully serializedTom Christie
2011-06-14Support for nesting resources etc...Tom Christie
--HG-- rename : djangorestframework/tests/resources.py => djangorestframework/tests/serializer.py
2011-06-14Bits of cleaning up for the throttlingTom Christie
2011-06-14Add PerViewThrottling and PerResourceThrottling to __all__Tom Christie
2011-06-14Add PerViewThrottling and PerResourceThrottling to __all__Tom Christie
2011-06-13deleted pre-Django 1.2 work-around and added a usage string.markotibold