diff options
author | Gervase Markham <gerv@gerv.net> | 2014-02-10 16:54:03 +0000 |
---|---|---|
committer | Gervase Markham <gerv@mozilla.org> | 2014-02-10 16:54:03 +0000 |
commit | 1f815b55a63db41908d7fcf382705764b6b6a8bb (patch) | |
tree | fd54a1648e7d0790dc7a99ea327f98442d5daa7b /docs/en/rst/conf.py | |
parent | d05bbe563a21a61788a44bd76ebbed51f1daeb62 (diff) | |
download | bugs-1f815b55a63db41908d7fcf382705764b6b6a8bb.tar bugs-1f815b55a63db41908d7fcf382705764b6b6a8bb.tar.gz bugs-1f815b55a63db41908d7fcf382705764b6b6a8bb.tar.bz2 bugs-1f815b55a63db41908d7fcf382705764b6b6a8bb.tar.xz bugs-1f815b55a63db41908d7fcf382705764b6b6a8bb.zip |
Fix problem of variables not being replaced in RTD documentation by removing references to them. r=LpSolit, a=justdave.
https://bugzilla.mozilla.org/show_bug.cgi?id=964849
Diffstat (limited to 'docs/en/rst/conf.py')
-rw-r--r-- | docs/en/rst/conf.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/en/rst/conf.py b/docs/en/rst/conf.py index 71f610575..e55874a67 100644 --- a/docs/en/rst/conf.py +++ b/docs/en/rst/conf.py @@ -258,10 +258,10 @@ texinfo_documents = [ # How to display URL addresses: 'footnote', 'no', or 'inline'. #texinfo_show_urls = 'footnote' -definitions = "../../definitions.rst" -if os.path.exists(definitions): - execfile(definitions) - +# Global substitutions and other markup required in every page +rst_epilog = """ +.. |min-perl-ver| replace:: 5.10.1 +""" # -- Options for PDF output -------------------------------------------------- |