Skip to content

Commit d5c34aa

Browse files
jdufresnecarltongibson
authored andcommitted
Remove unused links from docs (encode#5735)
Each removed link has no inline use.
1 parent b2ec681 commit d5c34aa

15 files changed

+0
-41
lines changed

docs/api-guide/authentication.md

-5
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,6 @@ HTTP Signature (currently a [IETF draft][http-signature-ietf-draft]) provides a
407407
[http401]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.2
408408
[http403]: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.4
409409
[basicauth]: http://tools.ietf.org/html/rfc2617
410-
[oauth]: http://oauth.net/2/
411410
[permission]: permissions.md
412411
[throttling]: throttling.md
413412
[csrf-ajax]: https://docs.djangoproject.com/en/stable/ref/csrf/#ajax
@@ -419,10 +418,6 @@ HTTP Signature (currently a [IETF draft][http-signature-ietf-draft]) provides a
419418
[juanriaza]: https://github.com/juanriaza
420419
[djangorestframework-digestauth]: https://github.com/juanriaza/django-rest-framework-digestauth
421420
[oauth-1.0a]: http://oauth.net/core/1.0a
422-
[django-oauth-plus]: http://code.larlet.fr/django-oauth-plus
423-
[django-oauth2-provider]: https://github.com/caffeinehit/django-oauth2-provider
424-
[django-oauth2-provider-docs]: https://django-oauth2-provider.readthedocs.io/en/latest/
425-
[rfc6749]: http://tools.ietf.org/html/rfc6749
426421
[django-oauth-toolkit]: https://github.com/evonove/django-oauth-toolkit
427422
[evonove]: https://github.com/evonove/
428423
[oauthlib]: https://github.com/idan/oauthlib

docs/api-guide/caching.md

-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ class PostView(APIView):
4747
**NOTE:** The [`cache_page`][page] decorator only caches the
4848
`GET` and `HEAD` responses with status 200.
4949

50-
51-
[django]: https://docs.djangoproject.com/en/dev/topics/cache/
5250
[page]: https://docs.djangoproject.com/en/dev/topics/cache/#the-per-view-cache
5351
[cookie]: https://docs.djangoproject.com/en/dev/topics/http/decorators/#django.views.decorators.vary.vary_on_cookie
5452
[decorator]: https://docs.djangoproject.com/en/dev/topics/class-based-views/intro/#decorating-the-class

docs/api-guide/fields.md

-2
Original file line numberDiff line numberDiff line change
@@ -806,9 +806,7 @@ The [django-rest-framework-hstore][django-rest-framework-hstore] package provide
806806
[cite]: https://docs.djangoproject.com/en/stable/ref/forms/api/#django.forms.Form.cleaned_data
807807
[html-and-forms]: ../topics/html-and-forms.md
808808
[FILE_UPLOAD_HANDLERS]: https://docs.djangoproject.com/en/stable/ref/settings/#std:setting-FILE_UPLOAD_HANDLERS
809-
[ecma262]: http://ecma-international.org/ecma-262/5.1/#sec-15.9.1.15
810809
[strftime]: https://docs.python.org/3/library/datetime.html#strftime-and-strptime-behavior
811-
[django-widgets]: https://docs.djangoproject.com/en/stable/ref/forms/widgets/
812810
[iso8601]: http://www.w3.org/TR/NOTE-datetime
813811
[drf-compound-fields]: https://drf-compound-fields.readthedocs.io
814812
[drf-extra-fields]: https://github.com/Hipo/drf-extra-fields

docs/api-guide/filtering.md

-2
Original file line numberDiff line numberDiff line change
@@ -379,13 +379,11 @@ The [djangorestframework-word-filter][django-rest-framework-word-search-filter]
379379
[drf-url-filter][drf-url-filter] is a simple Django app to apply filters on drf `ModelViewSet`'s `Queryset` in a clean, simple and configurable way. It also supports validations on incoming query params and their values. A beautiful python package `Voluptuous` is being used for validations on the incoming query parameters. The best part about voluptuous is you can define your own validations as per your query params requirements.
380380

381381
[cite]: https://docs.djangoproject.com/en/stable/topics/db/queries/#retrieving-specific-objects-with-filters
382-
[django-filter]: https://github.com/alex/django-filter
383382
[django-filter-docs]: https://django-filter.readthedocs.io/en/latest/index.html
384383
[django-filter-drf-docs]: https://django-filter.readthedocs.io/en/latest/guide/rest_framework.html
385384
[guardian]: https://django-guardian.readthedocs.io/
386385
[view-permissions]: https://django-guardian.readthedocs.io/en/latest/userguide/assign.html
387386
[view-permissions-blogpost]: http://blog.nyaruka.com/adding-a-view-permission-to-django-models
388-
[nullbooleanselect]: https://github.com/django/django/blob/master/django/forms/widgets.py
389387
[search-django-admin]: https://docs.djangoproject.com/en/stable/ref/contrib/admin/#django.contrib.admin.ModelAdmin.search_fields
390388
[django-rest-framework-filters]: https://github.com/philipn/django-rest-framework-filters
391389
[django-rest-framework-word-search-filter]: https://github.com/trollknurr/django-rest-framework-word-search-filter

docs/api-guide/pagination.md

-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,6 @@ The [`drf-proxy-pagination` package][drf-proxy-pagination] includes a `ProxyPagi
314314
The [`django-rest-framework-link-header-pagination` package][drf-link-header-pagination] includes a `LinkHeaderPagination` class which provides pagination via an HTTP `Link` header as desribed in [Github's developer documentation](github-link-pagination).
315315

316316
[cite]: https://docs.djangoproject.com/en/stable/topics/pagination/
317-
[github-link-pagination]: https://developer.github.com/guides/traversing-with-pagination/
318317
[link-header]: ../img/link-header-pagination.png
319318
[drf-extensions]: http://chibisov.github.io/drf-extensions/docs/
320319
[paginate-by-max-mixin]: http://chibisov.github.io/drf-extensions/docs/#paginatebymaxmixin

docs/api-guide/permissions.md

-3
Original file line numberDiff line numberDiff line change
@@ -276,10 +276,7 @@ The [Django Rest Framework API Key][django-rest-framework-api-key] package allow
276276
[contribauth]: https://docs.djangoproject.com/en/stable/topics/auth/customizing/#custom-permissions
277277
[objectpermissions]: https://docs.djangoproject.com/en/stable/topics/auth/customizing/#handling-object-permissions
278278
[guardian]: https://github.com/lukaszb/django-guardian
279-
[get_objects_for_user]: http://pythonhosted.org/django-guardian/api/guardian.shortcuts.html#get-objects-for-user
280-
[2.2-announcement]: ../topics/2.2-announcement.md
281279
[filtering]: filtering.md
282-
[drf-any-permissions]: https://github.com/kevin-brown/drf-any-permissions
283280
[composed-permissions]: https://github.com/niwibe/djangorestframework-composed-permissions
284281
[rest-condition]: https://github.com/caxap/rest_condition
285282
[dry-rest-permissions]: https://github.com/Helioscene/dry-rest-permissions

docs/api-guide/relations.md

-1
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,5 @@ The [rest-framework-generic-relations][drf-nested-relations] library provides re
596596
[reverse-relationships]: https://docs.djangoproject.com/en/stable/topics/db/queries/#following-relationships-backward
597597
[routers]: http://www.django-rest-framework.org/api-guide/routers#defaultrouter
598598
[generic-relations]: https://docs.djangoproject.com/en/stable/ref/contrib/contenttypes/#id1
599-
[2.2-announcement]: ../topics/2.2-announcement.md
600599
[drf-nested-routers]: https://github.com/alanjds/drf-nested-routers
601600
[drf-nested-relations]: https://github.com/Ian-Foote/rest-framework-generic-relations

docs/index.md

-8
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
311311
[django-filter]: http://pypi.python.org/pypi/django-filter
312312
[django-crispy-forms]: https://github.com/maraujop/django-crispy-forms
313313
[django-guardian]: https://github.com/django-guardian/django-guardian
314-
[0.4]: https://github.com/encode/django-rest-framework/tree/0.4.X
315-
[image]: img/quickstart.png
316314
[index]: .
317315
[oauth1-section]: api-guide/authentication/#django-rest-framework-oauth
318316
[oauth2-section]: api-guide/authentication/#django-oauth-toolkit
@@ -385,15 +383,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
385383
[release-notes]: topics/release-notes.md
386384
[jobs]: topics/jobs.md
387385

388-
[tox]: http://testrun.org/tox/latest/
389-
390386
[group]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework
391387
[botbot]: https://botbot.me/freenode/restframework/
392388
[stack-overflow]: http://stackoverflow.com/
393389
[django-rest-framework-tag]: http://stackoverflow.com/questions/tagged/django-rest-framework
394-
[django-tag]: http://stackoverflow.com/questions/tagged/django
395390
[security-mail]: mailto:[email protected]
396-
[paid-support]: http://dabapps.com/services/build/api-development/
397-
[dabapps]: http://dabapps.com
398-
[contact-dabapps]: http://dabapps.com/contact/
399391
[twitter]: https://twitter.com/_tomchristie

docs/topics/2.2-announcement.md

-1
Original file line numberDiff line numberDiff line change
@@ -155,5 +155,4 @@ From version 2.2 onwards, serializers with hyperlinked relationships *always* re
155155
[mailing-list]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework
156156
[django-rest-framework-docs]: https://github.com/marcgibbons/django-rest-framework-docs
157157
[marcgibbons]: https://github.com/marcgibbons/
158-
[issues]: https://github.com/encode/django-rest-framework/issues
159158
[564]: https://github.com/encode/django-rest-framework/issues/564

docs/topics/browsable-api.md

-2
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,8 @@ There are [a variety of packages for autocomplete widgets][autocomplete-packages
155155
[bootstrap]: http://getbootstrap.com
156156
[cerulean]: ../img/cerulean.png
157157
[slate]: ../img/slate.png
158-
[bcustomize]: http://getbootstrap.com/2.3.2/customize.html
159158
[bswatch]: http://bootswatch.com/
160159
[bcomponents]: http://getbootstrap.com/2.3.2/components.html
161160
[bcomponentsnav]: http://getbootstrap.com/2.3.2/components.html#navbar
162161
[autocomplete-packages]: https://www.djangopackages.com/grids/g/auto-complete/
163162
[django-autocomplete-light]: https://github.com/yourlabs/django-autocomplete-light
164-
[django-autocomplete-light-install]: https://django-autocomplete-light.readthedocs.io/en/master/install.html

docs/topics/internationalization.md

-1
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,3 @@ For API clients the most appropriate of these will typically be to use the `Acce
110110
[django-language-preference]: https://docs.djangoproject.com/en/1.7/topics/i18n/translation/#how-django-discovers-language-preference
111111
[django-locale-paths]: https://docs.djangoproject.com/en/1.7/ref/settings/#std:setting-LOCALE_PATHS
112112
[django-locale-name]: https://docs.djangoproject.com/en/1.7/topics/i18n/#term-locale-name
113-
[contributing]: ../../CONTRIBUTING.md

docs/topics/release-notes.md

-10
Original file line numberDiff line numberDiff line change
@@ -892,13 +892,6 @@ For older release notes, [please see the version 2.x documentation][old-release-
892892
[cite]: http://www.catb.org/~esr/writings/cathedral-bazaar/cathedral-bazaar/ar01s04.html
893893
[deprecation-policy]: #deprecation-policy
894894
[django-deprecation-policy]: https://docs.djangoproject.com/en/stable/internals/release-process/#internal-release-deprecation-policy
895-
[defusedxml-announce]: http://blog.python.org/2013/02/announcing-defusedxml-fixes-for-xml.html
896-
[743]: https://github.com/encode/django-rest-framework/pull/743
897-
[staticfiles14]: https://docs.djangoproject.com/en/1.4/howto/static-files/#with-a-template-tag
898-
[staticfiles13]: https://docs.djangoproject.com/en/1.3/howto/static-files/#with-a-template-tag
899-
[2.1.0-notes]: https://groups.google.com/d/topic/django-rest-framework/Vv2M0CMY9bg/discussion
900-
[ticket-582]: https://github.com/encode/django-rest-framework/issues/582
901-
[rfc-6266]: http://tools.ietf.org/html/rfc6266#section-4.3
902895
[old-release-notes]: https://github.com/encode/django-rest-framework/blob/version-2.4.x/docs/topics/release-notes.md
903896
[3.6-release]: 3.6-announcement.md
904897

@@ -1153,7 +1146,6 @@ For older release notes, [please see the version 2.x documentation][old-release-
11531146
[gh3249]: https://github.com/encode/django-rest-framework/issues/3249
11541147
[gh3250]: https://github.com/encode/django-rest-framework/issues/3250
11551148
[gh3275]: https://github.com/encode/django-rest-framework/issues/3275
1156-
[gh3288]: https://github.com/encode/django-rest-framework/issues/3288
11571149
[gh3290]: https://github.com/encode/django-rest-framework/issues/3290
11581150
[gh3303]: https://github.com/encode/django-rest-framework/issues/3303
11591151
[gh3313]: https://github.com/encode/django-rest-framework/issues/3313
@@ -1410,7 +1402,6 @@ For older release notes, [please see the version 2.x documentation][old-release-
14101402

14111403
<!-- 3.4.4 -->
14121404

1413-
[gh2829]: https://github.com/encode/django-rest-framework/issues/2829
14141405
[gh3329]: https://github.com/encode/django-rest-framework/issues/3329
14151406
[gh3330]: https://github.com/encode/django-rest-framework/issues/3330
14161407
[gh3365]: https://github.com/encode/django-rest-framework/issues/3365
@@ -1651,7 +1642,6 @@ For older release notes, [please see the version 2.x documentation][old-release-
16511642
[gh5457]: https://github.com/encode/django-rest-framework/issues/5457
16521643
[gh5376]: https://github.com/encode/django-rest-framework/issues/5376
16531644
[gh5422]: https://github.com/encode/django-rest-framework/issues/5422
1654-
[gh5408]: https://github.com/encode/django-rest-framework/issues/5408
16551645
[gh3732]: https://github.com/encode/django-rest-framework/issues/3732
16561646
[djangodocs-set-timezone]: https://docs.djangoproject.com/en/1.11/topics/i18n/timezones/#default-time-zone-and-current-time-zone
16571647
[gh5273]: https://github.com/encode/django-rest-framework/issues/5273

docs/topics/rest-framework-2-announcement.md

-1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,5 @@ There's also a [live sandbox version of the tutorial API][sandbox] available for
9393
[quote2]: https://groups.google.com/d/msg/django-rest-framework/heRGHzG6BWQ/ooVURgpwVC0J
9494
[quote3]: https://groups.google.com/d/msg/django-rest-framework/flsXbvYqRoY/9lSyntOf5cUJ
9595
[image]: ../img/quickstart.png
96-
[readthedocs]: https://readthedocs.org/
9796
[tut]: ../tutorial/1-serialization.md
9897
[sandbox]: http://restframework.herokuapp.com/

docs/topics/rest-hypermedia-hateoas.md

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ What REST framework doesn't do is give you machine readable hypermedia formats s
4040
[restful-web-apis]: http://restfulwebapis.org/
4141
[building-hypermedia-apis]: http://www.amazon.com/Building-Hypermedia-APIs-HTML5-Node/dp/1449306578
4242
[designing-hypermedia-apis]: http://designinghypermediaapis.com/
43-
[restisover]: http://blog.steveklabnik.com/posts/2012-02-23-rest-is-over
4443
[readinglist]: http://blog.steveklabnik.com/posts/2012-02-27-hypermedia-api-reading-list
4544
[maturitymodel]: http://martinfowler.com/articles/richardsonMaturityModel.html
4645

docs/tutorial/quickstart.md

-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ Great, that was easy!
211211

212212
If you want to get a more in depth understanding of how REST framework fits together head on over to [the tutorial][tutorial], or start browsing the [API guide][guide].
213213

214-
[readme-example-api]: ../#example
215214
[image]: ../img/quickstart.png
216215
[tutorial]: 1-serialization.md
217216
[guide]: ../#api-guide

0 commit comments

Comments
 (0)