##// END OF EJS Templates
bugfix
bugfix

File last commit:

r211:a3a7c3e0 rhodecode-0.0.0.7.3 default
r213:7a97f0b1 default
Show More
__init__.py
13 lines | 316 B | text/x-python | PythonLexer
added version generation to pylons_app and showed it into template. Propagated baseController with some data for acces into each controller. Fixed simplehg middleware to get proper name of application
r185 """
Hg app, a web based mercurial repository managment based on pylons
"""
version bump. Bugfix when changelog parameter was not an int. Added limit for 100 changelogs to view at once.
r211 VERSION = (0, 7, 3, 'beta')
added version generation to pylons_app and showed it into template. Propagated baseController with some data for acces into each controller. Fixed simplehg middleware to get proper name of application
r185
__version__ = '.'.join((str(each) for each in VERSION[:4]))
def get_version():
"""
Returns shorter version (digit parts only) as string.
"""
return '.'.join((str(each) for each in VERSION[:3]))