##// END OF EJS Templates
Added readme, and changed version display
Added readme, and changed version display

File last commit:

r218:58b46f91 rhodecode-0.0.0.7.4 default
r224:fdcef6ea 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. Made changesets work as should, but vcs had to be fixed for that.
r218 VERSION = (0, 7, 4, '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]))