Skip to content

Commit c80af57

Browse files
jdufresnePierre Chiquet
authored andcommitted
Remove unused links from docs (encode#5735)
Each removed link has no inline use.
1 parent 37dbb8e commit c80af57

15 files changed

+0
-41
lines changed

docs/api-guide/authentication.md

Lines changed: 0 additions & 5 deletions
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

Lines changed: 0 additions & 2 deletions
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

Lines changed: 0 additions & 2 deletions
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

Lines changed: 0 additions & 2 deletions
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 3 deletions
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 8 deletions
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:rest-framework-security@googlegroups.com
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 2 deletions
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

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy