##// END OF EJS Templates
i18n: updated translation for Polish...
i18n: updated translation for Polish Currently translated at 56.5% (614 of 1087 strings)

File last commit:

r8053:aa6f17a5 default
r8092:7fef5132 default
Show More
__init__.py
59 lines | 1.7 KiB | text/x-python | PythonLexer
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 # -*- 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/>.
"""
Mads Kiilerich
cleanup: make module self-naming consistent...
r5376 kallithea
~~~~~~~~~
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187
Thomas De Schampheleire
Turbogears2 migration: remove some references to Pylons in comments...
r6178 Kallithea, a web based repository management system.
Versioning implementation: http://www.python.org/dev/peps/pep-0386/
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187
Bradley M. Kuhn
RhodeCode GmbH is not the sole author of this work
r4211 This file was forked by the Kallithea project in July 2014.
Original author and date, and relevant copyright and licensing information is below:
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 :created_on: Apr 9, 2010
:author: marcink
Bradley M. Kuhn
SETTINGS_PREFIX for identifiers (e.g., db table names) incl. project's name....
r4219 :copyright: (c) 2013 RhodeCode GmbH, (C) 2014 Bradley M. Kuhn, and others.
Bradley M. Kuhn
Correct licensing information in individual files....
r4208 :license: GPLv3, see LICENSE.md for more details.
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 """
Mads Kiilerich
scripts: initial run of import cleanup using isort
r7718 import platform
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 import sys
Mads Kiilerich
scripts: initial run of import cleanup using isort
r7718
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187
Mads Kiilerich
py3: switch to use Python 3 interpreter, temporarily leaving many things very broken until they have been migrated/fixed in a reviewable way...
r8053 if sys.version_info < (3, 6):
raise Exception('Kallithea requires python 3.6 or later')
Thomas De Schampheleire
Kick off next release cycle (0.5.99)
r7852 VERSION = (0, 5, 99)
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 BACKENDS = {
'hg': 'Mercurial repository',
'git': 'Git repository',
}
CELERY_ON = False
CELERY_EAGER = False
CONFIG = {}
# Linked module for extensions
EXTENSIONS = {}
Mads Kiilerich
lib: simplify version; drop get_current_revision - it was run every time on import time - we don't want that...
r6164 __version__ = '.'.join(str(each) for each in VERSION)
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 __platform__ = platform.system()
__license__ = 'GPLv3'
__py_version__ = sys.version_info
Bradley M. Kuhn
RhodeCode GmbH is not the sole author of this work
r4211 __author__ = "Various Authors"
Bradley M. Kuhn
Second step in two-part process to rename directories....
r4187 __url__ = 'https://kallithea-scm.org/'
is_windows = __platform__ in ['Windows']
is_unix = not is_windows