comparison rhodecode/lib/dbmigrate/versions/015_version_1_8_0.py @ 4116:ffd45b185016 rhodecode-2.2.5-gpl

Imported some of the GPLv3'd changes from RhodeCode v2.2.5. This imports changes between changesets 21af6c4eab3d and 6177597791c2 in RhodeCode's original repository, including only changes to Python files and HTML. RhodeCode clearly licensed its changes to these files under GPLv3 in their /LICENSE file, which states the following: The Python code and integrated HTML are licensed under the GPLv3 license. (See: https://code.rhodecode.com/rhodecode/files/v2.2.5/LICENSE or http://web.archive.org/web/20140512193334/https://code.rhodecode.com/rhodecode/files/f3b123159901f15426d18e3dc395e8369f70ebe0/LICENSE for an online copy of that LICENSE file) Conservancy reviewed these changes and confirmed that they can be licensed as a whole to the Kallithea project under GPLv3-only. While some of the contents committed herein are clearly licensed GPLv3-or-later, on the whole we must assume the are GPLv3-only, since the statement above from RhodeCode indicates that they intend GPLv3-only as their license, per GPLv3ยง14 and other relevant sections of GPLv3.
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:03:13 -0400
parents
children 7e5f8c12a3fc
comparison
equal deleted inserted replaced
4115:8b7294a804a0 4116:ffd45b185016
1 import logging
2 import datetime
3
4 from sqlalchemy import *
5 from sqlalchemy.exc import DatabaseError
6 from sqlalchemy.orm import relation, backref, class_mapper, joinedload
7 from sqlalchemy.orm.session import Session
8 from sqlalchemy.ext.declarative import declarative_base
9
10 from rhodecode.lib.dbmigrate.migrate import *
11 from rhodecode.lib.dbmigrate.migrate.changeset import *
12
13 from rhodecode.model.meta import Base
14 from rhodecode.model import meta
15 from rhodecode.lib.dbmigrate.versions import _reset_base, notify
16
17 log = logging.getLogger(__name__)
18
19
20 def upgrade(migrate_engine):
21 """
22 Upgrade operations go here.
23 Don't create your own engine; bind migrate_engine to your metadata
24 """
25 _reset_base(migrate_engine)
26 from rhodecode.lib.dbmigrate.schema import db_1_8_0
27 tbl = db_1_8_0.RhodeCodeSetting.__table__
28 app_settings_type = Column("app_settings_type",
29 String(255, convert_unicode=False, assert_unicode=None),
30 nullable=True, unique=None, default=None)
31 app_settings_type.create(table=tbl)
32
33 # issue fixups
34 fixups(db_1_8_0, meta.Session)
35
36
37 def downgrade(migrate_engine):
38 meta = MetaData()
39 meta.bind = migrate_engine
40
41
42 def fixups(models, _SESSION):
43 notify('Fixing default options now...')
44
45 settings = [
46 #general
47 ('realm', '', 'unicode'),
48 ('title', '', 'unicode'),
49 ('ga_code', '', 'unicode'),
50 ('show_public_icon', False, 'bool'),
51 ('show_private_icon', True, 'bool'),
52 ('stylify_metatags', True, 'bool'),
53
54 # defaults
55 ('default_repo_enable_locking', False, 'bool'),
56 ('default_repo_enable_downloads', False, 'bool'),
57 ('default_repo_enable_statistics', False, 'bool'),
58 ('default_repo_private', False, 'bool'),
59 ('default_repo_type', 'hg', 'unicode'),
60
61 #other
62 ('dashboard_items', 100, 'int'),
63 ('show_version', True, 'bool')
64 ]
65
66 for name, default, type_ in settings:
67 setting = models.RhodeCodeSetting.get_by_name(name)
68 if not setting:
69 # if we don't have this option create it
70 setting = models.RhodeCodeSetting(name, default, type_)
71
72 # fix certain key to new defaults
73 if name in ['title', 'show_public_icon']:
74 # change title if it's only the default
75 if name == 'title' and setting.app_settings_value == 'RhodeCode':
76 setting.app_settings_value = default
77 else:
78 setting.app_settings_value = default
79
80 setting._app_settings_type = type_
81 _SESSION().add(setting)
82 _SESSION().commit()