Use const.VERSION

svn: r18309
This commit is contained in:
Doug Blank 2011-10-13 00:47:13 +00:00
parent df4f26e117
commit e487a32a1f

View File

@ -48,6 +48,7 @@ from web.dbdjango import DbDjango
import gen.proxy import gen.proxy
from Utils import create_id from Utils import create_id
import const
_ = lambda text: text _ = lambda text: text
@ -63,19 +64,6 @@ VIEWS = [(_('People'), 'person', Name),
(_('Tags'), 'tag', Tag), (_('Tags'), 'tag', Tag),
] ]
def get_version():
#Makefile:VERSIONSTRING = 3.4.0-0.SVN18300
version = "trunk.SVN"
try:
fp = file("/usr/local/wsgi/trunk//Makefile")
except:
return version
for line in fp:
if line.startswith("VERSIONSTRING"):
junk, version = [item.strip() for item in line.split("=", 1)]
break
return version
def context_processor(request): def context_processor(request):
""" """
This function is executed before template processing. This function is executed before template processing.
@ -88,7 +76,7 @@ def context_processor(request):
else: else:
context["css_theme"] = "Web_Mainz.css" context["css_theme"] = "Web_Mainz.css"
# Other things for all environments: # Other things for all environments:
context["gramps_version"] = get_version() context["gramps_version"] = const.VERSION
context["views"] = VIEWS context["views"] = VIEWS
context["True"] = True context["True"] = True
context["False"] = False context["False"] = False