add way to change version
This commit is contained in:
parent
b18a6ab3ca
commit
7ba58d0b63
2 changed files with 6 additions and 8 deletions
|
@ -29,18 +29,14 @@ RUN_RELOADER = True
|
||||||
NOTIFIER = None
|
NOTIFIER = None
|
||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
info = join(dirname(dirname(dirname(__file__))), '.bzr', 'branch', 'last-revision')
|
|
||||||
git_dir = join(dirname(dirname(dirname(__file__))), '.git')
|
git_dir = join(dirname(dirname(dirname(__file__))), '.git')
|
||||||
if exists(git_dir):
|
if exists(git_dir):
|
||||||
env = {'GIT_DIR': git_dir}
|
env = {'GIT_DIR': git_dir}
|
||||||
cmd = ['git', 'rev-list', 'HEAD', '--count']
|
cmd = ['git', 'rev-list', 'HEAD', '--count']
|
||||||
return subprocess.check_output(cmd, env=env).strip().decode('utf-8')
|
version = subprocess.check_output(cmd, env=env).strip().decode('utf-8')
|
||||||
elif exists(info):
|
if settings.VERSION_EPOCH:
|
||||||
f = open(info)
|
version = settings.VERSION_EPOCH + version
|
||||||
rev = int(f.read().split()[0])
|
return version
|
||||||
f.close()
|
|
||||||
if rev:
|
|
||||||
return u'%s' % rev
|
|
||||||
else:
|
else:
|
||||||
return u'unknown'
|
return u'unknown'
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,8 @@ LANGUAGE_CODE = 'en-us'
|
||||||
|
|
||||||
SITE_ID = 1
|
SITE_ID = 1
|
||||||
|
|
||||||
|
VERSION_EPOCH = None
|
||||||
|
|
||||||
# If you set this to False, Django will make some optimizations so as not
|
# If you set this to False, Django will make some optimizations so as not
|
||||||
# to load the internationalization machinery.
|
# to load the internationalization machinery.
|
||||||
USE_I18N = True
|
USE_I18N = True
|
||||||
|
|
Loading…
Reference in a new issue