Mercurial > public > src > rhodecode
annotate pylons_app/config/environment.py @ 239:b18f89d6d17f
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Sun, 30 May 2010 19:49:40 +0200 |
parents | 5e2470ebdbc6 |
children | 3782a6d698af |
rev | line source |
---|---|
0 | 1 """Pylons environment configuration""" |
2 from mako.lookup import TemplateLookup | |
43 | 3 from pylons.configuration import PylonsConfig |
0 | 4 from pylons.error import handle_mako_error |
239
b18f89d6d17f
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
Marcin Kuzminski <marcin@python-works.com>
parents:
107
diff
changeset
|
5 from pylons_app.config.routing import make_map |
b18f89d6d17f
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
Marcin Kuzminski <marcin@python-works.com>
parents:
107
diff
changeset
|
6 from pylons_app.lib.auth import set_available_permissions |
b18f89d6d17f
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
Marcin Kuzminski <marcin@python-works.com>
parents:
107
diff
changeset
|
7 from pylons_app.model import init_model |
43 | 8 from sqlalchemy import engine_from_config |
239
b18f89d6d17f
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
Marcin Kuzminski <marcin@python-works.com>
parents:
107
diff
changeset
|
9 import logging |
b18f89d6d17f
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
Marcin Kuzminski <marcin@python-works.com>
parents:
107
diff
changeset
|
10 import os |
0 | 11 import pylons_app.lib.app_globals as app_globals |
12 import pylons_app.lib.helpers | |
239
b18f89d6d17f
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
Marcin Kuzminski <marcin@python-works.com>
parents:
107
diff
changeset
|
13 |
b18f89d6d17f
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
Marcin Kuzminski <marcin@python-works.com>
parents:
107
diff
changeset
|
14 |
0 | 15 |
16 log = logging.getLogger(__name__) | |
17 | |
18 def load_environment(global_conf, app_conf): | |
19 """Configure the Pylons environment via the ``pylons.config`` | |
20 object | |
21 """ | |
43 | 22 config = PylonsConfig() |
23 | |
0 | 24 # Pylons paths |
25 root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | |
32
f93b523c0be3
dirty fix for multiple file encodings,
Marcin Kuzminski <marcin@python-blog.com>
parents:
12
diff
changeset
|
26 paths = dict(root=root, |
f93b523c0be3
dirty fix for multiple file encodings,
Marcin Kuzminski <marcin@python-blog.com>
parents:
12
diff
changeset
|
27 controllers=os.path.join(root, 'controllers'), |
f93b523c0be3
dirty fix for multiple file encodings,
Marcin Kuzminski <marcin@python-blog.com>
parents:
12
diff
changeset
|
28 static_files=os.path.join(root, 'public'), |
f93b523c0be3
dirty fix for multiple file encodings,
Marcin Kuzminski <marcin@python-blog.com>
parents:
12
diff
changeset
|
29 templates=[os.path.join(root, 'templates')]) |
0 | 30 |
31 # Initialize config with the basic options | |
43 | 32 config.init_app(global_conf, app_conf, package='pylons_app', paths=paths) |
0 | 33 |
43 | 34 config['routes.map'] = make_map(config) |
35 config['pylons.app_globals'] = app_globals.Globals(config) | |
0 | 36 config['pylons.h'] = pylons_app.lib.helpers |
43 | 37 |
38 # Setup cache object as early as possible | |
39 import pylons | |
40 pylons.cache._push_object(config['pylons.app_globals'].cache) | |
41 | |
0 | 42 |
43 # Create the Mako TemplateLookup, with the default auto-escaping | |
41
71ffa932799d
Added app basic auth.
Marcin Kuzminski <marcin@python-blog.com>
parents:
32
diff
changeset
|
44 config['pylons.app_globals'].mako_lookup = TemplateLookup( |
32
f93b523c0be3
dirty fix for multiple file encodings,
Marcin Kuzminski <marcin@python-blog.com>
parents:
12
diff
changeset
|
45 directories=paths['templates'], |
f93b523c0be3
dirty fix for multiple file encodings,
Marcin Kuzminski <marcin@python-blog.com>
parents:
12
diff
changeset
|
46 error_handler=handle_mako_error, |
f93b523c0be3
dirty fix for multiple file encodings,
Marcin Kuzminski <marcin@python-blog.com>
parents:
12
diff
changeset
|
47 module_directory=os.path.join(app_conf['cache_dir'], 'templates'), |
41
71ffa932799d
Added app basic auth.
Marcin Kuzminski <marcin@python-blog.com>
parents:
32
diff
changeset
|
48 input_encoding='utf-8', default_filters=['escape'], |
71ffa932799d
Added app basic auth.
Marcin Kuzminski <marcin@python-blog.com>
parents:
32
diff
changeset
|
49 imports=['from webhelpers.html import escape']) |
0 | 50 |
43 | 51 #sets the c attribute access when don't existing attribute ar accessed |
107
5e2470ebdbc6
Added repo switcher, in base and long term caching for this.
Marcin Kuzminski <marcin@python-works.com>
parents:
49
diff
changeset
|
52 config['pylons.strict_tmpl_context'] = True |
43 | 53 |
54 #MULTIPLE DB configs | |
55 # Setup the SQLAlchemy database engine | |
49
3ada2f409c1c
Added sqlalchemy support
Marcin Kuzminski <marcin@python-blog.com>
parents:
43
diff
changeset
|
56 if config['debug']: |
3ada2f409c1c
Added sqlalchemy support
Marcin Kuzminski <marcin@python-blog.com>
parents:
43
diff
changeset
|
57 #use query time debugging. |
3ada2f409c1c
Added sqlalchemy support
Marcin Kuzminski <marcin@python-blog.com>
parents:
43
diff
changeset
|
58 from pylons_app.lib.timerproxy import TimerProxy |
3ada2f409c1c
Added sqlalchemy support
Marcin Kuzminski <marcin@python-blog.com>
parents:
43
diff
changeset
|
59 sa_engine_db1 = engine_from_config(config, 'sqlalchemy.db1.', |
3ada2f409c1c
Added sqlalchemy support
Marcin Kuzminski <marcin@python-blog.com>
parents:
43
diff
changeset
|
60 proxy=TimerProxy()) |
3ada2f409c1c
Added sqlalchemy support
Marcin Kuzminski <marcin@python-blog.com>
parents:
43
diff
changeset
|
61 else: |
3ada2f409c1c
Added sqlalchemy support
Marcin Kuzminski <marcin@python-blog.com>
parents:
43
diff
changeset
|
62 sa_engine_db1 = engine_from_config(config, 'sqlalchemy.db1.') |
43 | 63 |
49
3ada2f409c1c
Added sqlalchemy support
Marcin Kuzminski <marcin@python-blog.com>
parents:
43
diff
changeset
|
64 init_model(sa_engine_db1) |
43 | 65 |
239
b18f89d6d17f
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
Marcin Kuzminski <marcin@python-works.com>
parents:
107
diff
changeset
|
66 set_available_permissions(config) |
0 | 67 # CONFIGURATION OPTIONS HERE (note: all config options will override |
68 # any Pylons config options) | |
43 | 69 |
70 return config |