Skip to content

Commit 1f6a59d

Browse files
Moar hyperlinks
1 parent 7ba2f44 commit 1f6a59d

File tree

2 files changed

+29
-10
lines changed

2 files changed

+29
-10
lines changed

README.md

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ Django REST framework is a powerful and flexible toolkit that makes it easy to b
1212

1313
Some reasons you might want to use REST framework:
1414

15-
* The Web browseable API is a huge useability win for your developers.
16-
* Authentication policies including OAuth1a and OAuth2 out of the box.
17-
* Serialization that supports both ORM and non-ORM data sources.
18-
* Customizable all the way down - just use regular function-based views if you don't need the more powerful features.
19-
* Extensive documentation, and great community support.
15+
* The [Web browseable API][sandbox] is a huge useability win for your developers.
16+
* [Authentication policies][authentication] including [OAuth1a][oauth1-section] and [OAuth2][oauth2-section] out of the box.
17+
* [Serialization][serializers] that supports both [ORM][modelserializer-section] and [non-ORM][serializer-section] data sources.
18+
* 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].
19+
* [Extensive documentation][index], and [great community support][group].
2020

2121
There is a live example API for testing purposes, [available here][sandbox].
2222

@@ -139,6 +139,19 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
139139
[group]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework
140140
[0.4]: https://github.com/tomchristie/django-rest-framework/tree/0.4.X
141141
[sandbox]: http://restframework.herokuapp.com/
142+
143+
[index]: http://django-rest-framework.org/
144+
[oauth1-section]: http://django-rest-framework.org/api-guide/authentication.html#oauthauthentication
145+
[oauth2-section]: http://django-rest-framework.org/api-guide/authentication.html#oauth2authentication
146+
[serializer-section]: http://django-rest-framework.org/api-guide/serializers.html#serializers
147+
[modelserializer-section]: http://django-rest-framework.org/api-guide/serializers.html#modelserializer
148+
[functionview-section]: http://django-rest-framework.org/api-guide/views.html#function-based-views
149+
[generic-views]: http://django-rest-framework.org/api-guide/generic-views.html
150+
[viewsets]: http://django-rest-framework.org/api-guide/viewsets.html
151+
[routers]: http://django-rest-framework.org/api-guide/routers.html
152+
[serializers]: http://django-rest-framework.org/api-guide/serializers.html
153+
[authentication]: http://django-rest-framework.org/api-guide/authentication.html
154+
142155
[rest-framework-2-announcement]: http://django-rest-framework.org/topics/rest-framework-2-announcement.html
143156
[2.1.0-notes]: https://groups.google.com/d/topic/django-rest-framework/Vv2M0CMY9bg/discussion
144157
[image]: http://django-rest-framework.org/img/quickstart.png

docs/index.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Django REST framework is a powerful and flexible toolkit that makes it easy to b
1515

1616
Some reasons you might want to use REST framework:
1717

18-
* The Web browseable API is a huge usability win for your developers.
19-
* Authentication policies including OAuth1a and OAuth2 out of the box.
20-
* Serialization that supports both ORM and non-ORM data sources.
21-
* Customizable all the way down - just use regular function-based views if you don't need the more powerful features.
22-
* Extensive documentation, and great community support.
18+
* The [Web browseable API][sandbox] is a huge usability win for your developers.
19+
* [Authentication policies][authentication] including [OAuth1a][oauth1-section] and [OAuth2][oauth2-section] out of the box.
20+
* [Serialization][serializers] that supports both [ORM][modelserializer-section] and [non-ORM][serializer-section] data sources.
21+
* 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].
22+
* [Extensive documentation][index], and [great community support][group].
2323

2424
There is a live example API for testing purposes, [available here][sandbox].
2525

@@ -250,6 +250,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
250250
[django-oauth2-provider]: https://github.com/caffeinehit/django-oauth2-provider
251251
[0.4]: https://github.com/tomchristie/django-rest-framework/tree/0.4.X
252252
[image]: img/quickstart.png
253+
[index]: .
254+
[oauth1-section]: api-guide/authentication.html#oauthauthentication
255+
[oauth2-section]: api-guide/authentication.html#oauth2authentication
256+
[serializer-section]: api-guide/serializers.html#serializers
257+
[modelserializer-section]: api-guide/serializers.html#modelserializer
258+
[functionview-section]: api-guide/views.html#function-based-views
253259
[sandbox]: http://restframework.herokuapp.com/
254260

255261
[quickstart]: tutorial/quickstart.md

0 commit comments

Comments
 (0)