From ad80278d40e175ce4d9f9dfffffc0d4b3de46d7a Mon Sep 17 00:00:00 2001 From: Gervase Markham Date: Wed, 29 Jan 2014 10:06:18 +0000 Subject: Bug 963145 - conf.py should read Bugzilla version from its canonical location. r=glob, a=justdave --- docs/en/rst/conf.py | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/en/rst/conf.py b/docs/en/rst/conf.py index 20ea71295..3cb412a3e 100644 --- a/docs/en/rst/conf.py +++ b/docs/en/rst/conf.py @@ -11,7 +11,7 @@ # All configuration values have a default; values that are commented out # serve to show the default. -import sys, os +import sys, os, re # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -51,9 +51,20 @@ copyright = u'2014, The Bugzilla Team' # built documents. # # The short X.Y version. -version = '4.5.2' +version = 'Unknown' # The full version, including alpha/beta/rc tags. -release = '4.5.2' +release = 'Unknown' + +for line in open("../../../Bugzilla/Constants.pm"): + match = re.search(r'BUGZILLA_VERSION\s+=>\s+"([^"]+)"', line) + if (match): + release = match.group(1) + match = re.search(r'^\d+\.\d+', release) + if (match): + version = match.group(0) + else: + version = release + break # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -- cgit v1.2.3-24-g4f1b