diff options
| author | Unai Zalakain <unai@gisa-elkartea.org> | 2013-10-04 00:51:22 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-12-19 09:24:13 -0500 |
| commit | 54b04cc8e6e4ea3f40b6320afe7e8ecfa16a8651 (patch) | |
| tree | b172e7c3107d5301232be282db94fb5a79dd9775 /docs/conf.py | |
| parent | 438f9edff6e53815c8223ec9e04740facad83a26 (diff) | |
[1.6.x] Fixed #21213 -- Added docs for Django's mailing lists.
Added docs/internals/mailing-lists.txt documenting the use of django's
mailing lists. All references across docs changed to point to this page.
The referencing makes use of substitution because there's no way to make
a :ref: link in a non-inline fashion in Sphinx. It also makes use of
rst_epilog Sphinx conf for making this substitutions across all the
docs.
Backport of 3895d8899d from master
Diffstat (limited to 'docs/conf.py')
| -rw-r--r-- | docs/conf.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py index 363e53993e..384825d040 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -206,6 +206,14 @@ htmlhelp_basename = 'Djangodoc' modindex_common_prefix = ["django."] +# Appended to every page +rst_epilog = """ +.. |django-users| replace:: :ref:`django-users <django-users-mailing-list>` +.. |django-core-mentorship| replace:: :ref:`django-core-mentorship <django-core-mentorship-mailing-list>` +.. |django-developers| replace:: :ref:`django-developers <django-developers-mailing-list>` +.. |django-announce| replace:: :ref:`django-announce <django-announce-mailing-list>` +.. |django-updates| replace:: :ref:`django-updates <django-updates-mailing-list>` +""" # -- Options for LaTeX output -------------------------------------------------- |
