Parent: [d7e074] (diff)

Child: [7c7fe1] (diff)

Download this file

app_cfg.py    93 lines (74 with data), 4.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# -*- coding: utf-8 -*-
"""
Global configuration file for TG2-specific settings in allura.
This file complements development/deployment.ini.
Please note that **all the argument values are strings**. If you want to
convert them into boolean, for example, you should use the
:func:`paste.deploy.converters.asbool` function, as in::
from paste.deploy.converters import asbool
setting = asbool(global_conf.get('the_setting'))
"""
from tg.configuration import AppConfig, config
from pylons.middleware import StatusCodeRedirect
from paste.deploy.converters import asbool
from routes import Mapper
import pkg_resources
import sfx.middleware
import allura
import allura.lib.helpers as h
from allura import model
from allura.lib import app_globals, custom_middleware
class ForgeConfig(AppConfig):
def __init__(self, root_controller='root'):
AppConfig.__init__(self)
self.root_controller = root_controller
self.package = allura
self.renderers = [ 'json', 'genshi', 'mako', 'jinja' ]
self.default_renderer = 'genshi'
self.use_sqlalchemy = False
self.use_toscawidgets = True
self.use_transaction_manager = False
# self.handle_status_codes = [ 403, 404 ]
self.handle_status_codes = [ 403, 404 ]
def add_error_middleware(self, global_conf, app):
app = AppConfig.add_error_middleware(self, global_conf, app)
app = custom_middleware.LoginRedirectMiddleware(app)
return app
def after_init_config(self):
config['pylons.strict_c'] = True
def add_core_middleware(self, app):
if asbool(config.get('auth.method', 'local')=='sfx'):
d = h.config_with_prefix(config, 'auth.')
d.update(h.config_with_prefix(config, 'sfx.'))
app = sfx.middleware.SfxMiddleware(app, d)
return super(ForgeConfig, self).add_core_middleware(app)
def setup_routes(self):
map = Mapper(directory=config['pylons.paths']['controllers'],
always_scan=config['debug'])
# Setup a default route for the root of object dispatch
map.connect('*url', controller=self.root_controller,
action='routes_placeholder')
config['routes.map'] = map
def setup_jinja_renderer(self):
self.paths['templates'].append(pkg_resources.resource_filename('forgetracker', 'templates'))
self.paths['templates'].append(pkg_resources.resource_filename('forgewiki', 'templates'))
self.paths['templates'].append(pkg_resources.resource_filename('forgegit', 'templates'))
self.paths['templates'].append(pkg_resources.resource_filename('forgegit', 'widgets/templates'))
self.paths['templates'].append(pkg_resources.resource_filename('forgesvn', 'templates'))
self.paths['templates'].append(pkg_resources.resource_filename('forgesvn', 'widgets/templates'))
self.paths['templates'].append(pkg_resources.resource_filename('forgehg', 'templates'))
self.paths['templates'].append(pkg_resources.resource_filename('forgehg', 'widgets/templates'))
self.paths['templates'].append(pkg_resources.resource_filename('allura', 'ext/admin/templates'))
self.paths['templates'].append(pkg_resources.resource_filename('sfx', 'templates'))
self.paths['templates'].append(pkg_resources.resource_filename('forgedownloads', 'templates'))
self.paths['templates'].append(pkg_resources.resource_filename('forgelink', 'templates'))
from jinja2 import ChoiceLoader, Environment, FileSystemLoader
from tg.render import render_jinja
config['pylons.app_globals'].jinja2_env = Environment(loader=ChoiceLoader(
[FileSystemLoader(path) for path in self.paths['templates']]),
auto_reload=self.auto_reload_templates,
extensions=['jinja2.ext.do'])
# Jinja's unable to request c's attributes without strict_c
config['pylons.strict_c'] = True
self.render_functions.jinja = render_jinja
base_config = ForgeConfig()