diff options
| author | Tom Christie | 2015-01-05 12:26:15 +0000 | 
|---|---|---|
| committer | Tom Christie | 2015-01-05 12:26:15 +0000 | 
| commit | 17665aa52a9cd5599099c19fd8f54540a5d436ce (patch) | |
| tree | 5d9bab5947ec47ffbd93bb88a4bdcca8db6a622f /docs/index.md | |
| parent | 6168f60ba80a84768172437c09957c1fab05f014 (diff) | |
| download | django-rest-framework-17665aa52a9cd5599099c19fd8f54540a5d436ce.tar.bz2 | |
Add docs for OAuth, XML, YAML, JSONP packages. Closes #2179.
Diffstat (limited to 'docs/index.md')
| -rw-r--r-- | docs/index.md | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/docs/index.md b/docs/index.md index 7ccec12f..544204c6 100644 --- a/docs/index.md +++ b/docs/index.md @@ -28,13 +28,12 @@ For more details see the [3.0 release notes][3.0-announcement].  <img alt="Django REST Framework" title="Logo by Jake 'Sid' Smith" src="img/logo.png" width="600px" style="display: block; margin: 0 auto 0 auto">  </p> -  Django REST framework is a powerful and flexible toolkit that makes it easy to build Web APIs.  Some reasons you might want to use REST framework:  * The [Web browsable API][sandbox] is a huge usability win for your developers. -* [Authentication policies][authentication] including optional packages for [OAuth1a][oauth1-section] and [OAuth2][oauth2-section]. +* [Authentication policies][authentication] including packages for [OAuth1a][oauth1-section] and [OAuth2][oauth2-section].  * [Serialization][serializers] that supports both [ORM][modelserializer-section] and [non-ORM][serializer-section] data sources.  * Customizable all the way down - just use [regular function-based views][functionview-section] if you don't need the [more][generic-views] [powerful][viewsets] [features][routers].  * [Extensive documentation][index], and [great community support][group]. @@ -57,7 +56,6 @@ The following packages are optional:  * [Markdown][markdown] (2.1.0+) - Markdown support for the browsable API.  * [django-filter][django-filter] (0.5.4+) - Filtering support. -* [django-restframework-oauth][django-restframework-oauth] package for OAuth 1.0a and 2.0 support.  * [django-guardian][django-guardian] (1.1.1+) - Object level permissions support.  ## Installation @@ -260,13 +258,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  [eventbrite]: https://www.eventbrite.co.uk/about/  [markdown]: http://pypi.python.org/pypi/Markdown/  [django-filter]: http://pypi.python.org/pypi/django-filter -[django-restframework-oauth]: https://github.com/jlafon/django-rest-framework-oauth  [django-guardian]: https://github.com/lukaszb/django-guardian  [0.4]: https://github.com/tomchristie/django-rest-framework/tree/0.4.X  [image]: img/quickstart.png  [index]: . -[oauth1-section]: api-guide/authentication#oauthauthentication -[oauth2-section]: api-guide/authentication#oauth2authentication +[oauth1-section]: api-guide/authentication/#django-rest-framework-oauth +[oauth2-section]: api-guide/authentication/#django-oauth-toolkit  [serializer-section]: api-guide/serializers#serializers  [modelserializer-section]: api-guide/serializers#modelserializer  [functionview-section]: api-guide/views#function-based-views | 
