Files @ be4621c6de58
Branch filter:

Location: kallithea/pylons_app/__init__.py - annotation

Marcin Kuzminski
Pygments code coloring rewrite, annotation was moved to vcs whitch had much better lib for that. Fixed code recognition based on mimetypes of filenodes, for better coloring.
"""
Hg app, a web based mercurial repository managment based on pylons
"""

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