app_globals.py
25 lines
| 871 B
| text/x-python
|
PythonLexer
Marcin Kuzminski
|
r0 | """The application's Globals object""" | ||
r113 | ||||
r43 | from beaker.cache import CacheManager | |||
from beaker.util import parse_cache_config_options | ||||
r112 | from pylons_app.lib.utils import make_ui | |||
r43 | ||||
Marcin Kuzminski
|
r0 | class Globals(object): | ||
"""Globals acts as a container for objects available throughout the | ||||
life of the application | ||||
""" | ||||
r43 | def __init__(self, config): | |||
Marcin Kuzminski
|
r0 | """One instance of Globals is created during application | ||
initialization and is available during requests via the | ||||
'app_globals' variable | ||||
""" | ||||
r43 | self.cache = CacheManager(**parse_cache_config_options(config)) | |||
r241 | self.baseui = make_ui(config['hg_app_repo_conf']) | |||
r112 | self.paths = self.baseui.configitems('paths') | |||
r93 | self.base_path = self.paths[0][1].replace('*', '') | |||
r165 | self.changeset_annotation_colors = {} | |||
r239 | self.available_permissions = None # propagated after init_model | |||