##// END OF EJS Templates
Add Twitter's Bootstrap 3.0.0 CSS and Javascript files, under Apache License 2.0...
Add Twitter's Bootstrap 3.0.0 CSS and Javascript files, under Apache License 2.0 These files are exactly as they appear the upstream release 3.0.0 of Bootstrap, which Twitter released under the Apache License 2.0. To extract these files, I did the following: I downloaded the following file: https://github.com/twbs/bootstrap/archive/v3.0.0.zip with sha256sum of: $ sha256sum v3.0.0.zip 2d54f345f4abc6bf65ea648c323e9bae577e6febf755650e62555f2d7a222e17 v3.0.0.zip And extracted from it these two files: bootstrap-3.0.0/dist/css/bootstrap.css bootstrap-3.0.0/dist/js/bootstrap.js which are licensed under the Apache License 2.0. and placed them into: rhodecode/public/css/bootstrap.css rhodecode/public/js/bootstrap.js respectively.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4117:6af3e67c rhodecode-2.2.5-gpl
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()