| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-11-01 | Merge master | Tom Christie | |
| 2012-11-01 | Relational field support in browseable API. | Tom Christie | |
| Add slug relational fields. Add quickstart. | |||
| 2012-11-01 | Merge pull request #351 from asfaltboy/fix_trans_choices | Tom Christie | |
| Return choices as unicode and not string | |||
| 2012-11-01 | Merge pull request #352 from asfaltboy/cleanup_MultipleObjectBaseView | Tom Christie | |
| cleanup MultipleObjectBaseView remains | |||
| 2012-11-01 | Merge branch 'master' into restframework2-filter | Ben Konrath | |
| 2012-11-01 | since MultipleObjectBaseView was renamed MultipleObjectAPIView, it stands to ↵ | Pavel Savchenko | |
| reason to complete the renaming in docs and comments as well. | |||
| 2012-11-01 | return choices as unicode and not string, | Pavel Savchenko | |
| might as well have jsonp return unicode | |||
| 2012-10-31 | fix 'from_native' method when rel is None | Otto Yiu | |
| 'NoneType' object has no attribute 'to' | |||
| 2012-10-31 | PUT as create should return 201. Fixes #340. | Tom Christie | |
| 2012-10-31 | added support for custom slug field and kwargs | Stephan Groß | |
| without subclassing HyperlinkedRelatedField and overwriting slug_url_kwarg and slug_field there is no possibility to use other fields / arguments. now you can do something like this: url(r'^users/(?P<username>\w[\w-]*)$', UserInstance.as_view(), name='user-detail') class ProjectSerializer(serializers.HyperlinkedModelSerializer): created_by = serializers.HyperlinkedRelatedField(view_name='user-detail', slug_url_kwargs='username', slug_field='username') | |||
| 2012-10-30 | Final docs tweaks for 2.0 | Tom Christie | |
| 2012-10-30 | Raise nicer exception if queryset not Set on writable related field. Refs: #338 | Tom Christie | |
| 2012-10-30 | Merge fixes for 'blank=True' fields. Fixes #324, Fixes #325 | Tom Christie | |
| Thanks to @Roarster. | |||
| 2012-10-30 | Allow use of absolute URLs when deserializing hyperlinked fields | Tom Christie | |
| 2012-10-30 | Hyperlinked serializer tests | Tom Christie | |
| 2012-10-30 | Merge pull request #335 from tomchristie/related-field-as-instance | Tom Christie | |
| Writable related fields should return a model instance from .from_native... | |||
| 2012-10-30 | Merge pull request #336 from markotibold/null_is_true_model_fields | Tom Christie | |
| Null is true model fields | |||
| 2012-10-30 | Fix some typos. | Marko Tibold | |
| 2012-10-30 | Set a ModelSerializer field to required=False if the ModelField has ↵ | Marko Tibold | |
| null=True set. | |||
| 2012-10-30 | Adding failing tests that show null=True model fields are won't validate if ↵ | Marko Tibold | |
| their value is omitted. | |||
| 2012-10-29 | Fix slug based put as create test | Tom Christie | |
| 2012-10-29 | Merge branch 'restframework2' of ↵ | Tom Christie | |
| https://github.com/tomchristie/django-rest-framework into restframework2 | |||
| 2012-10-29 | Fixes for urls with suffixes | Tom Christie | |
| 2012-10-29 | PUT as create should return 200 | Tom Christie | |
| 2012-10-29 | Merge pull request #331 from markotibold/test_put_as_create | Tom Christie | |
| Test put as create | |||
| 2012-10-29 | Style tweaks | Tom Christie | |
| 2012-10-29 | Deal with None and missing values | Tom Christie | |
| 2012-10-29 | Fix up login styling | Tom Christie | |
| 2012-10-29 | Fix breadcrumbs | Tom Christie | |
| 2012-10-29 | Writable welated fields should return a model instance from .from_native(), ↵ | Tom Christie | |
| not a pk | |||
| 2012-10-28 | Remove recursion detection | Tom Christie | |
| 2012-10-28 | nested -> depth | Tom Christie | |
| 2012-10-28 | readonly -> read_only | Tom Christie | |
| 2012-10-28 | Get the correct instance | Marko Tibold | |
| 2012-10-28 | test_put_as_create_on_id_based_url should check for a created-response. | Marko Tibold | |
| 2012-10-28 | Merge pull request #330 from tomchristie/tutorial-refactor | Tom Christie | |
| Tutorial refactor | |||
| 2012-10-28 | Merge pull request #327 from tomchristie/allow-any-permission | Tom Christie | |
| Add AllowAny permission | |||
| 2012-10-28 | Added wo tests. One for PUTing on a non-existing id-based url. And another ↵ | Marko Tibold | |
| for PUTing on a non-existing slug-based url. Fix doctoring for 'test_put_cannot_set_id'. | |||
| 2012-10-28 | TemplateHTMLRenderer, StaticHTMLRenderer | Tom Christie | |
| 2012-10-27 | Add AllowAny class | Tom Christie | |
| 2012-10-27 | Add AllowAny permission | Tom Christie | |
| 2012-10-27 | Push tests into a seperate app namespace 'rest_framework.test' | Tom Christie | |
| Prevents tests from running by default when rest_framework is installed as 3rd party app. Fixes #316, #185 | |||
| 2012-10-27 | pep8 | Tom Christie | |
| 2012-10-26 | Fix failing 'default' on ModelSerializer | Tom Christie | |
| 2012-10-26 | Whitespace | Tom Christie | |
| 2012-10-26 | Object-level permissions respected by Browseable API | Tom Christie | |
| 2012-10-26 | Choice fields from ModelSerializer. | Tom Christie | |
| 2012-10-26 | Drop resources from codebase since implementation is only partial (Created ↵ | Tom Christie | |
| resoorces-routers branch for future reference) | |||
| 2012-10-25 | Merge pull request #320 from j4mie/split-generic-views | Tom Christie | |
| Rename generic base classes, and add CreateAPIView, DeleteAPIView, UpdateAPIView. | |||
| 2012-10-25 | Rework generic view class names | Jamie Matthews | |
