Files
@ 4ce49d57765b
Branch filter:
Location: kallithea/kallithea/__init__.py - annotation
4ce49d57765b
2.8 KiB
text/x-python
license: add font license info
d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e 24c0d584ba86 d1addaf7a91e d1addaf7a91e 1948ede028ef 1948ede028ef d1addaf7a91e d1addaf7a91e 24498ba2fbec ad38f9f93b3b d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d17e88a1a88a d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e 56dadd0e5cf7 56dadd0e5cf7 56dadd0e5cf7 56dadd0e5cf7 56dadd0e5cf7 56dadd0e5cf7 56dadd0e5cf7 24498ba2fbec 56dadd0e5cf7 56dadd0e5cf7 56dadd0e5cf7 56dadd0e5cf7 56dadd0e5cf7 24498ba2fbec 56dadd0e5cf7 5b72a0dd966d 24498ba2fbec f5c9018a5cf0 f5c9018a5cf0 f5c9018a5cf0 400fbab35389 400fbab35389 400fbab35389 d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e 1948ede028ef d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e d1addaf7a91e | # -*- coding: utf-8 -*-
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
kallithea.__init__
~~~~~~~~~~~~~~~~~~
Kallithea, a web based repository management based on pylons
versioning implementation: http://www.python.org/dev/peps/pep-0386/
This file was forked by the Kallithea project in July 2014.
Original author and date, and relevant copyright and licensing information is below:
:created_on: Apr 9, 2010
:author: marcink
:copyright: (c) 2013 RhodeCode GmbH, (C) 2014 Bradley M. Kuhn, and others.
:license: GPLv3, see LICENSE.md for more details.
"""
import sys
import platform
VERSION = (0, 1)
BACKENDS = {
'hg': 'Mercurial repository',
'git': 'Git repository',
}
CELERY_ON = False
CELERY_EAGER = False
# link to config for pylons
CONFIG = {}
# Linked module for extensions
EXTENSIONS = {}
# BRAND controls internal references in database and config to the products
# own name.
#
# NOTE: If you want compatibility with a database that was originally created
# for use with the RhodeCode software product, change BRAND to "rhodecode",
# either by editing here or by creating a new file:
# echo "BRAND = 'rhodecode'" > kallithea/brand.py
BRAND = "kallithea"
try:
from kallithea.brand import BRAND
except ImportError:
pass
# Prefix for the ui and settings table names
DB_PREFIX = (BRAND + "_") if BRAND != "kallithea" else ""
# Users.extern_type and .extern_name value for local users
EXTERN_TYPE_INTERNAL = BRAND if BRAND != 'kallithea' else 'internal'
# db_migrate_version.repository_id value, same as kallithea/lib/dbmigrate/migrate.cfg
DB_MIGRATIONS = BRAND + "_db_migrations"
try:
from kallithea.lib import get_current_revision
_rev = get_current_revision(quiet=True)
if _rev and len(VERSION) > 3:
VERSION += ('%s' % _rev[0],)
except ImportError:
pass
__version__ = ('.'.join((str(each) for each in VERSION[:3])))
__dbversion__ = 31 # defines current db version for migrations
__platform__ = platform.system()
__license__ = 'GPLv3'
__py_version__ = sys.version_info
__author__ = "Various Authors"
__url__ = 'https://kallithea-scm.org/'
is_windows = __platform__ in ['Windows']
is_unix = not is_windows
if len(VERSION) > 3:
__version__ += '.'+VERSION[3]
if len(VERSION) > 4:
__version__ += VERSION[4]
else:
__version__ += '0'
|