Files @ 70f645fa97cc
Branch filter:

Location: kallithea/pylons_app/__init__.py

Marcin Kuzminski
Moved repo creation to admin/repos, as part of crud controller. Now repo creation is based on a form, which can be auto filled with data from 404 page. Fixed the error controller to properly give the repo name.
"""
Hg app, a web based mercurial repository managment based on pylons
"""

VERSION = (0, 7, 3, '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]))