##// END OF EJS Templates
Complete copyright notices for web interface; change footer to link to them....
Complete copyright notices for web interface; change footer to link to them. The original copyright notice found in the footer was not accurate as it included only one of the many copyright holders in this project. This change creates an "about" page, which currently contains just the copyright and license information. It links to repository for additional potential copyright holders not listed on the about page. Unlisted contributors are mentioned in template comments. Html links for Kallithea is fixed and we link to Conservancy. Display of version information in the footer is improved.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4178:9dd72670 kallithea-2.2.5-r...
Show More
015_version_1_8_0.py
82 lines | 2.6 KiB | text/x-python | PythonLexer
import logging
import datetime
from sqlalchemy import *
from sqlalchemy.exc import DatabaseError
from sqlalchemy.orm import relation, backref, class_mapper, joinedload
from sqlalchemy.orm.session import Session
from sqlalchemy.ext.declarative import declarative_base
from rhodecode.lib.dbmigrate.migrate import *
from rhodecode.lib.dbmigrate.migrate.changeset import *
from rhodecode.model.meta import Base
from rhodecode.model import meta
from rhodecode.lib.dbmigrate.versions import _reset_base, notify
log = logging.getLogger(__name__)
def upgrade(migrate_engine):
"""
Upgrade operations go here.
Don't create your own engine; bind migrate_engine to your metadata
"""
_reset_base(migrate_engine)
from rhodecode.lib.dbmigrate.schema import db_1_8_0
tbl = db_1_8_0.RhodeCodeSetting.__table__
app_settings_type = Column("app_settings_type",
String(255, convert_unicode=False, assert_unicode=None),
nullable=True, unique=None, default=None)
app_settings_type.create(table=tbl)
# issue fixups
fixups(db_1_8_0, meta.Session)
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
def fixups(models, _SESSION):
notify('Fixing default options now...')
settings = [
#general
('realm', '', 'unicode'),
('title', '', 'unicode'),
('ga_code', '', 'unicode'),
('show_public_icon', False, 'bool'),
('show_private_icon', True, 'bool'),
('stylify_metatags', True, 'bool'),
# defaults
('default_repo_enable_locking', False, 'bool'),
('default_repo_enable_downloads', False, 'bool'),
('default_repo_enable_statistics', False, 'bool'),
('default_repo_private', False, 'bool'),
('default_repo_type', 'hg', 'unicode'),
#other
('dashboard_items', 100, 'int'),
('show_version', True, 'bool')
]
for name, default, type_ in settings:
setting = models.RhodeCodeSetting.get_by_name(name)
if not setting:
# if we don't have this option create it
setting = models.RhodeCodeSetting(name, default, type_)
# fix certain key to new defaults
if name in ['title', 'show_public_icon']:
# change title if it's only the default
if name == 'title' and setting.app_settings_value == 'RhodeCode':
setting.app_settings_value = default
else:
setting.app_settings_value = default
setting._app_settings_type = type_
_SESSION().add(setting)
_SESSION().commit()