summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/auth/customizing.txt6
-rw-r--r--docs/topics/db/queries.txt6
2 files changed, 4 insertions, 8 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index cc0c791f59..87988873a4 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -204,14 +204,12 @@ Notice that in addition to the same arguments given to the associated
all take the user object, which may be an anonymous user, as an argument.
A full authorization implementation can be found in the ``ModelBackend`` class
-in `django/contrib/auth/backends.py`_, which is the default backend and queries
-the ``auth_permission`` table most of the time. If you wish to provide
+in :source:`django/contrib/auth/backends.py`, which is the default backend and
+queries the ``auth_permission`` table most of the time. If you wish to provide
custom behavior for only part of the backend API, you can take advantage of
Python inheritance and subclass ``ModelBackend`` instead of implementing the
complete API in a custom backend.
-.. _django/contrib/auth/backends.py: https://github.com/django/django/blob/master/django/contrib/auth/backends.py
-
.. _anonymous_auth:
Authorization for anonymous users
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index bb8b755297..bcdaaea359 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -867,10 +867,8 @@ precede the definition of any keyword arguments. For example::
.. seealso::
- The `OR lookups examples`_ in the Django unit tests show some possible uses
- of ``Q``.
-
- .. _OR lookups examples: https://github.com/django/django/blob/master/tests/or_lookups/tests.py
+ The :source:`OR lookups examples <tests/or_lookups/tests.py>` in Django's
+ unit tests show some possible uses of ``Q``.
Comparing objects
=================