Commit Graph

7319 Commits

Author SHA1 Message Date
Makedonsky
69366a11d7 modify documenting-your-api docs topic 2017-01-03 13:17:07 +02:00
Xavier Ordoquy
67e0090ea0 Merge pull request #4773 from rsinger86/flexfields-docs
added drf-flexfields addon info
2017-01-03 00:09:26 +01:00
robert
492444eb2e added drf-flexfields addon info 2017-01-02 17:03:03 -06:00
Xavier Ordoquy
6d48223a35 Merge pull request #4772 from nanuxbe/patch-2
Add DRF-Base64 to third-party serializers
2016-12-31 15:16:57 +01:00
Emmanuelle Delescolle
d98a0772d0 Add DRF-Base64 to third-party serializers
Add DRF-Base64, which provides serializers to handle base64-encoded files, to third-party serializers packages
2016-12-31 08:16:45 +01:00
José Padilla
56f0138bb9 Merge pull request #4766 from nanuxbe/patch-1
Add drf-schema-adapter to 3rd party metadata mods
2016-12-25 17:34:11 -04:00
Emmanuelle Delescolle
f1cbf51b43 Add drf-schema-adapter to 3rd party metadata mods 2016-12-25 10:06:47 +01:00
José Padilla
b52de0a871 Merge pull request #4762 from nikolas/patch-6
docs: typo fix: it's -> its
2016-12-22 17:00:54 -04:00
Nik Nyby
24e082b142 docs: typo fix: it's -> its 2016-12-22 12:44:43 -05:00
Matthew Medal
93fe531dea Breadcrumb view name suffix fix (#4750)
* add failing testcase for breadcrumb suffixes missing when using ModelViewSets

* fix get_breadcrumbs to honor overridden get_view_name and keep viewset suffixes

* ensure suffixes are appended in breadcrumb util
2016-12-20 22:19:00 +00:00
Christian Hess
f38734ef98 Add new line correctly in docstring sections (#4759)
The order of the line break was wrong
2016-12-20 16:26:18 +00:00
Masashi SHIBATA
c2367fb017 Fix documentation's sample code in API Guide (#4756) 2016-12-17 13:00:29 +00:00
Eduard Iskandarov
ebe174c0d7 add per-view custom exception handler support (#4753) 2016-12-15 12:36:40 +00:00
José Padilla
ecb905267f Merge pull request #4752 from ByteInternet/document-drf-oidc-auth
Add drf-oidc-auth to docs
2016-12-14 16:24:36 -05:00
Allard Hoeve
0175ea4809 Add drf-oidc-auth to 3rd party mods 2016-12-14 20:15:39 +01:00
Tom Christie
89d22942a6 Add missing docs on RequestsClient. Closes #4747. 2016-12-12 10:08:54 +00:00
Tom Christie
7ecd4f7813 Merge branch 'master' of github.com:tomchristie/django-rest-framework 2016-12-09 16:07:11 +00:00
Tom Christie
38bde343f8 Update sponsor link 2016-12-09 16:06:59 +00:00
Xavier Ordoquy
2230784fab Merge pull request #4745 from auvipy/authtest
converted authentication test asserts to pytest
2016-12-06 08:15:27 +01:00
Asif Saifuddin Auvi
841a91e950 fix authentication_test pytest failure 2016-12-06 00:47:58 +06:00
Asif Saifuddin Auvi
85807e1958 converted authentication_test asserts to pytest 2016-12-06 00:33:13 +06:00
Xavier Ordoquy
792b50feee Merge pull request #4738 from netsyno/master
Updated Link ti Django Docs
2016-12-05 11:38:55 +01:00
Daniel Rech
761d53e923 Updated Link ti Django Docs
The Url to the settings/#caches Link changed in Django documentation.
2016-12-05 11:36:03 +01:00
sol HYUN
c66df67c49 Modify 'to_internal_value' method for handling list
modified the 'get_value' method in fields.py,
The value of primitive_value is a list of values to match the field.

Validate the primitive_value (list) elements one by one using the
run_validation method.

The verified value is appended to the validated_list

Finally, only when there are two or more elements of validated_list, they are
returned as a list.
2016-12-05 19:16:01 +09:00
sol HYUN
d4cc5478dd modify get_value method for get multi-value
Because dictionary is queryDict,
If you send multiple values with the same field_name,
When using the '__get__' method, only the last element is reflected.

Use the 'getlist' method to return a list with multiple values
2016-12-05 18:51:03 +09:00
sol HYUN
5e7497bfe0 modify _writable_fields in serializers.py
Sometimes 'self' instance is not a field (used in rest_framework)
If the 'serializer' that contains 'field' is 'self', only the subelements of
the serializer, the 'fields', are returned.
in the case of a serializer that contains 'field' as a 'child' element,
Only instances of `.source` ending with` _set '(following relationships
"backward") are found using regular expressions.
Then use the child elements again to find the field using '_writable_fields'.

Do not modify '_readable_fields' because it does not address the issue of what
is currently being viewed.
2016-12-05 18:02:09 +09:00
Raphael Pierzina
238783f2ed Change DEFAULT_PERMISSION_CLASSES to a list in quickstart.md (#4733) 2016-12-02 17:01:37 +00:00
Asif Saifuddin Auvi
932d04a4be Browsable API tests asserts to pytest (#4725) 2016-12-01 16:17:36 +00:00
Carlton Gibson
16f5d42cbc Add additional link to HTML & Forms topic page (#4726)
Just makes the topic page easier to find.

Closes #1673
2016-12-01 09:11:25 +00:00
Xavier Ordoquy
22578525ef Documentation update (#4717) 2016-11-30 12:58:34 +00:00
Asif Saifuddin Auvi
4f6c326a99 converted remaining unittes asserts of fields test to pytest (#4724) 2016-11-30 12:52:32 +00:00
Asif Saifuddin Auvi
1a741bb2a2 converted asserts of exceptions test to pytest (#4723) 2016-11-30 11:12:01 +00:00
Xavier Ordoquy
6e30dc75e0 Merge pull request #4722 from auvipy/pytest7
converted descriptions and ecoders test asserts to pytest
2016-11-30 12:00:29 +01:00
Asif Saifuddin Auvi
7e8b01dbd2 converted asserts of encoders test to pytest 2016-11-30 16:45:48 +06:00
Asif Saifuddin Auvi
9a3f8d9a9c converted asserts of descriptions test to pytest 2016-11-30 16:42:43 +06:00
Xavier Ordoquy
01cd09155b Merge pull request #4721 from auvipy/pytest6
converted asserts of atomic requests and decorators tests to pytest
2016-11-30 11:34:02 +01:00
Asif Saifuddin Auvi
a9b6c97485 converted asserts of decorators test to pytest 2016-11-30 16:24:48 +06:00
Asif Saifuddin Auvi
504f4b44c6 converted asserts of atomic requests test to pytest 2016-11-30 16:17:30 +06:00
Asif Saifuddin Auvi
e03d88ced7 more pytest style assert (#4719) 2016-11-30 09:48:33 +00:00
Xavier Ordoquy
4c41f2bfea Merge pull request #4715 from auvipy/pytest4
converted test asserts of generics-test to pytest
2016-11-30 07:53:58 +01:00
Asif Saifuddin Auvi
10b5f36fec added fixes 2016-11-30 12:35:34 +06:00
Xavier Ordoquy
f2a8252660 Merge pull request #4718 from jfw/patch-4
typo
2016-11-30 07:35:22 +01:00
Asif Saifuddin Auvi
f5a900a404 some reverts to fix test 2016-11-30 10:01:37 +06:00
Asif Saifuddin Auvi
a5bb9825f3 attempt to fix test again 2016-11-30 09:56:22 +06:00
Jeff Fein-Worton
a5c8a8c226 typo 2016-11-29 18:00:10 -08:00
Asif Saifuddin Auvi
4a0829d6ec attempt to fix test 2016-11-30 02:08:37 +06:00
Asif Saifuddin Auvi
27641e07b5 converted test asserts of generics-test to pytest 2016-11-30 01:13:21 +06:00
Germán Larraín
aed8387e05 docs: Fix description of DecimalField's max_digits (#4714)
As of PR #4377, `max_digits=None` is allowed for `DecimalField`.
2016-11-29 15:35:43 +00:00
Xavier Ordoquy
1e0988686c Update the Python doc links to use https and point to Python 3 (#4713) 2016-11-29 12:27:00 +00:00
Ryan P Kilby
6498766749 Fix django deprecation warnings (#4712) 2016-11-29 09:49:18 +00:00