##// END OF EJS Templates
Turbogears2 migration: remove some references to Pylons in comments...
Thomas De Schampheleire -
r6178:5eec7942 default
parent child Browse files
Show More
@@ -15,8 +15,9 b''
15 kallithea
15 kallithea
16 ~~~~~~~~~
16 ~~~~~~~~~
17
17
18 Kallithea, a web based repository management based on pylons
18 Kallithea, a web based repository management system.
19 versioning implementation: http://www.python.org/dev/peps/pep-0386/
19
20 Versioning implementation: http://www.python.org/dev/peps/pep-0386/
20
21
21 This file was forked by the Kallithea project in July 2014.
22 This file was forked by the Kallithea project in July 2014.
22 Original author and date, and relevant copyright and licensing information is below:
23 Original author and date, and relevant copyright and licensing information is below:
@@ -38,7 +39,6 b' BACKENDS = {'
38 CELERY_ON = False
39 CELERY_ON = False
39 CELERY_EAGER = False
40 CELERY_EAGER = False
40
41
41 # link to config for pylons
42 CONFIG = {}
42 CONFIG = {}
43
43
44 # Linked module for extensions
44 # Linked module for extensions
@@ -15,7 +15,7 b''
15 kallithea.controllers.admin.user_groups
15 kallithea.controllers.admin.user_groups
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17
17
18 User Groups crud controller for pylons
18 User Groups crud controller
19
19
20 This file was forked by the Kallithea project in July 2014.
20 This file was forked by the Kallithea project in July 2014.
21 Original author and date, and relevant copyright and licensing information is below:
21 Original author and date, and relevant copyright and licensing information is below:
@@ -15,7 +15,7 b''
15 kallithea.controllers.admin.users
15 kallithea.controllers.admin.users
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17
17
18 Users crud controller for pylons
18 Users crud controller
19
19
20 This file was forked by the Kallithea project in July 2014.
20 This file was forked by the Kallithea project in July 2014.
21 Original author and date, and relevant copyright and licensing information is below:
21 Original author and date, and relevant copyright and licensing information is below:
@@ -15,8 +15,7 b''
15 kallithea.controllers.changeset
15 kallithea.controllers.changeset
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17
17
18 changeset controller for pylons showing changes between
18 changeset controller showing changes between revisions
19 revisions
20
19
21 This file was forked by the Kallithea project in July 2014.
20 This file was forked by the Kallithea project in July 2014.
22 Original author and date, and relevant copyright and licensing information is below:
21 Original author and date, and relevant copyright and licensing information is below:
@@ -15,7 +15,7 b''
15 kallithea.controllers.compare
15 kallithea.controllers.compare
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17
17
18 compare controller for pylons showing differences between two
18 compare controller showing differences between two
19 repos, branches, bookmarks or tips
19 repos, branches, bookmarks or tips
20
20
21 This file was forked by the Kallithea project in July 2014.
21 This file was forked by the Kallithea project in July 2014.
@@ -15,7 +15,7 b''
15 kallithea.controllers.journal
15 kallithea.controllers.journal
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17
17
18 Journal controller for pylons
18 Journal controller
19
19
20 This file was forked by the Kallithea project in July 2014.
20 This file was forked by the Kallithea project in July 2014.
21 Original author and date, and relevant copyright and licensing information is below:
21 Original author and date, and relevant copyright and licensing information is below:
@@ -679,12 +679,12 b' class AuthUser(object):'
679
679
680 def set_available_permissions(config):
680 def set_available_permissions(config):
681 """
681 """
682 This function will propagate pylons globals with all available defined
682 This function will propagate globals with all available defined
683 permission given in db. We don't want to check each time from db for new
683 permission given in db. We don't want to check each time from db for new
684 permissions since adding a new permission also requires application restart
684 permissions since adding a new permission also requires application restart
685 ie. to decorate new views with the newly created permission
685 ie. to decorate new views with the newly created permission
686
686
687 :param config: current pylons config instance
687 :param config: current config instance
688
688
689 """
689 """
690 log.info('getting information about all available permissions')
690 log.info('getting information about all available permissions')
@@ -373,8 +373,8 b' def handle_git_post_receive(repo_path, r'
373 def handle_git_receive(repo_path, revs, env, hook_type):
373 def handle_git_receive(repo_path, revs, env, hook_type):
374 """
374 """
375 A really hacky method that is run by git post-receive hook and logs
375 A really hacky method that is run by git post-receive hook and logs
376 an push action together with pushed revisions. It's executed by subprocess
376 a push action together with pushed revisions. It's executed by subprocess
377 thus needs all info to be able to create a on the fly pylons environment,
377 thus needs all info to be able to create an on the fly app environment,
378 connect to database and run the logging code. Hacky as sh*t but works.
378 connect to database and run the logging code. Hacky as sh*t but works.
379
379
380 :param repo_path:
380 :param repo_path:
@@ -85,7 +85,7 b' class BasePasterCommand(Command):'
85
85
86 def bootstrap_config(self, conf):
86 def bootstrap_config(self, conf):
87 """
87 """
88 Loads the pylons configuration.
88 Loads the app configuration.
89 """
89 """
90 from pylons import config as pylonsconfig
90 from pylons import config as pylonsconfig
91
91
@@ -378,7 +378,7 b" def make_ui(read_from='file', path=None,"
378
378
379 def set_app_settings(config):
379 def set_app_settings(config):
380 """
380 """
381 Updates pylons config with new settings from database
381 Updates app config with new settings from database
382
382
383 :param config:
383 :param config:
384 """
384 """
@@ -13,12 +13,7 b''
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14
14
15 """
15 """
16 Pylons application test package
16 Kallithea test package
17
18 This package assumes the Pylons environment is already loaded.
19
20 This module initializes the application via ``websetup`` (`paster
21 setup-app`) and provides the base testing objects.
22
17
23 Refer to docs/contributing.rst for details on running the test suite.
18 Refer to docs/contributing.rst for details on running the test suite.
24 """
19 """
General Comments 0
You need to be logged in to leave comments. Login now