##// END OF EJS Templates
Update minified YUI to version 2.9 built from Source....
Update minified YUI to version 2.9 built from Source. yui.2.9.js used to be a minified version of YUI 2.9 until 5143b8df576c updated it to something else and applied more aggresive minification. We stick to a clean but minified version 2.9. The license of YUI is BSD 3-clause, as described on http://yuilibrary.com/license/ . Since the minified version combines with GPLv3'd Javascript, it is only GPLv3'd compliant to distribute this Object Code version with the Corresponding Source (or offer therefor). This yui.2.9.js is built from Source this way: git clone https://github.com/yui/builder git clone https://github.com/yui/yui2 cd yui2/ git checkout hudson-yui2-2800 ln -sf JumpToPageDropDown.js src/paginator/js/JumpToPageDropdown.js # work around inconsistent casing rm -f tmp.js for m in yahoo event dom connection animation dragdrop element datasource autocomplete container event-delegate json datatable paginator; do rm -f build/$m/$m.js; ( cd src/$m && ant build deploybuild ) && sed -e 's,@VERSION@,2.9.0,g' -e 's,@BUILD@,2800,g' build/$m/$m.js >> tmp.js done java -jar ../builder/componentbuild/lib/yuicompressor/yuicompressor-2.4.4.jar tmp.js -o yui.2.9.js The source is mirrored and available on https://kallithea-scm.org/repos/mirror .

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4131:31f510a8 rhodecode-2.2.5-gpl
Show More
websetup.py
51 lines | 1.7 KiB | text/x-python | PythonLexer
fixed import problems
r841 # -*- coding: utf-8 -*-
fixed license issue #149
r1206 # 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.
source code cleanup: remove trailing white space, normalize file endings
r1203 #
fixed import problems
r841 # 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.
source code cleanup: remove trailing white space, normalize file endings
r1203 #
fixed import problems
r841 # You should have received a copy of the GNU General Public License
fixed license issue #149
r1206 # along with this program. If not, see <http://www.gnu.org/licenses/>.
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 """
rhodecode.websetup
~~~~~~~~~~~~~~~~~~
Weboperations and setup for rhodecode
:created_on: Dec 11, 2010
:author: marcink
:copyright: (c) 2013 RhodeCode GmbH.
:license: GPLv3, see LICENSE for more details.
"""
fixed import problems
r841
import logging
renamed project to rhodecode
r547 from rhodecode.config.environment import load_environment
from rhodecode.lib.db_manage import DbManage
another major refactoring with session management
r1734 from rhodecode.model.meta import Session
fixed import problems
r841
renamed project to rhodecode
r547
log = logging.getLogger(__name__)
added __license__ into main of rhodecode, PEP8ify
r1205
renamed project to rhodecode
r547 def setup_app(command, conf, vars):
"""Place any commands to setup rhodecode here"""
fixed db manage, to work on other databases than sqlite
r781 dbconf = conf['sqlalchemy.db1.url']
added __license__ into main of rhodecode, PEP8ify
r1205 dbmanage = DbManage(log_sql=True, dbconf=dbconf, root=conf['here'],
Implemented proposed changes from pull request #77
r2919 tests=False, cli_args=command.options.__dict__)
dbmanage.create_tables(override=True)
added current db version into rhodecode,...
r834 dbmanage.set_db_version()
Implemented proposed changes from pull request #77
r2919 opts = dbmanage.config_prompt(None)
new setup-rhodecode command with optional defaults
r2284 dbmanage.create_settings(opts)
renamed project to rhodecode
r547 dbmanage.create_default_user()
Implemented proposed changes from pull request #77
r2919 dbmanage.admin_prompt()
renamed project to rhodecode
r547 dbmanage.create_permissions()
dbmanage.populate_default_permissions()
Implemented proposed changes from pull request #77
r2919 Session().commit()
added fault tolerant case when celeryconfig is not present in the directory....
r555 load_environment(conf.global_conf, conf.local_conf, initial=True)
run waitress check on startup
r3232 DbManage.check_waitress()