diff options
| author | Tom Christie | 2015-03-06 12:26:09 +0000 | 
|---|---|---|
| committer | Tom Christie | 2015-03-06 12:26:09 +0000 | 
| commit | 7efb2fd9ed03a23b0bcf8d9fa20034bf9ef884f8 (patch) | |
| tree | 4de9a44eafeedc0e62990fcb78673fe9aa152816 | |
| parent | c511342047f9eea01335fec0ac9ff7f4c823b696 (diff) | |
| download | django-rest-framework-7efb2fd9ed03a23b0bcf8d9fa20034bf9ef884f8.tar.bz2 | |
Better docs linking
| -rw-r--r-- | docs/topics/3.1-announcement.md | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/docs/topics/3.1-announcement.md b/docs/topics/3.1-announcement.md index 6606d843..9cad88e0 100644 --- a/docs/topics/3.1-announcement.md +++ b/docs/topics/3.1-announcement.md @@ -52,7 +52,7 @@ For more information, see the [custom pagination styles](../api-guide/pagination  ## Versioning -We've made it easier to build versioned APIs. Built-in schemes for versioning include both URL based and Accept header based variations. +We've made it [easier to build versioned APIs][versioning]. Built-in schemes for versioning include both URL based and Accept header based variations.  When using a URL based scheme, hyperlinked serializers will resolve relationships to the same API version as used on the incoming request. @@ -80,7 +80,7 @@ The output representation would match the version used on the incoming request.  ## Internationalization -REST framework now includes a built-in set of translations, and supports internationalized error responses. This allows you to either change the default language, or to allow clients to specify the language via the `Accept-Language` header. +REST framework now includes a built-in set of translations, and [supports internationalized error responses][internationalization]. This allows you to either change the default language, or to allow clients to specify the language via the `Accept-Language` header.  You can change the default language by using the standard Django `LANGUAGE_CODE` setting: @@ -204,3 +204,5 @@ This will either be made as a single 3.2 release, or split across two separate r  [custom-exception-handler]: ../api-guide/exceptions.md#custom-exception-handling  [pagination]: ../api-guide/pagination.md +[versioning]: ../api-guide/versioning.md +[internationalization]: internationalization.md | 
