summaryrefslogtreecommitdiffstats
path: root/docs/en/rst/conf.py
diff options
context:
space:
mode:
authorGervase Markham <gerv@gerv.net>2014-02-10 17:54:03 +0100
committerGervase Markham <gerv@mozilla.org>2014-02-10 17:54:03 +0100
commit1f815b55a63db41908d7fcf382705764b6b6a8bb (patch)
treefd54a1648e7d0790dc7a99ea327f98442d5daa7b /docs/en/rst/conf.py
parentd05bbe563a21a61788a44bd76ebbed51f1daeb62 (diff)
downloadbugzilla-1f815b55a63db41908d7fcf382705764b6b6a8bb.tar.gz
bugzilla-1f815b55a63db41908d7fcf382705764b6b6a8bb.tar.xz
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.py8
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 --------------------------------------------------