##// END OF EJS Templates
Authenticated controller with LoginRequired decorator, and cleaned __before__ (used in baseController now). fixed User for clone url with logged in session user....
Authenticated controller with LoginRequired decorator, and cleaned __before__ (used in baseController now). fixed User for clone url with logged in session user. Removed login form from admin.

File last commit:

r185:3380ca40 default
r191:b68b2246 default
Show More
__init__.py
13 lines | 316 B | text/x-python | PythonLexer
"""
Hg app, a web based mercurial repository managment based on pylons
"""
VERSION = (0, 6, 0, 'beta')
__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]))