2009-01-21 16:11:39 +01:00
|
|
|
# -*- python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2014-02-08 23:54:51 +01:00
|
|
|
# Debian Member Portfolio Service environment configuration
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
2014-02-08 23:54:51 +01:00
|
|
|
# Copyright © 2009-2014 Jan Dittberner <jan@dittberner.info>
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
2014-02-08 23:54:51 +01:00
|
|
|
# This file is part of the Debian Member Portfolio Service.
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
2014-02-08 23:54:51 +01:00
|
|
|
# Debian Member Portfolio Service is free software: you can redistribute it
|
|
|
|
# and/or modify it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the License,
|
|
|
|
# or (at your option) any later version.
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
2014-02-08 23:54:51 +01:00
|
|
|
# Debian Member Portfolio Service 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 Affero
|
|
|
|
# General Public License for more details.
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
2014-02-08 23:54:51 +01:00
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
2014-10-14 13:38:29 +02:00
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2014-02-08 23:54:51 +01:00
|
|
|
#
|
|
|
|
"""
|
|
|
|
Pylons environment configuration
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2009-01-20 22:39:05 +01:00
|
|
|
import os
|
|
|
|
|
2010-04-16 21:44:13 +02:00
|
|
|
from mako.lookup import TemplateLookup
|
|
|
|
from pylons.configuration import PylonsConfig
|
|
|
|
from pylons.error import handle_mako_error
|
2009-01-20 22:39:05 +01:00
|
|
|
|
2014-02-08 23:54:51 +01:00
|
|
|
import debianmemberportfolio.lib.app_globals as app_globals
|
|
|
|
import debianmemberportfolio.lib.helpers
|
|
|
|
from debianmemberportfolio.config.routing import make_map
|
2009-01-20 22:39:05 +01:00
|
|
|
|
2012-01-07 01:46:57 +01:00
|
|
|
|
2009-01-20 22:39:05 +01:00
|
|
|
def load_environment(global_conf, app_conf):
|
2012-01-07 01:46:57 +01:00
|
|
|
"""
|
2014-02-08 23:54:51 +01:00
|
|
|
Configures the Pylons environment via the ``pylons.config`` object.
|
2009-01-20 22:39:05 +01:00
|
|
|
"""
|
2010-04-16 21:44:13 +02:00
|
|
|
config = PylonsConfig()
|
|
|
|
|
2009-01-20 22:39:05 +01:00
|
|
|
# Pylons paths
|
|
|
|
root = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
paths = dict(root=root,
|
|
|
|
controllers=os.path.join(root, 'controllers'),
|
|
|
|
static_files=os.path.join(root, 'public'),
|
|
|
|
templates=[os.path.join(root, 'templates')])
|
|
|
|
|
|
|
|
# Initialize config with the basic options
|
2012-01-07 01:46:57 +01:00
|
|
|
config.init_app(
|
2014-02-08 23:54:51 +01:00
|
|
|
global_conf, app_conf, package='debianmemberportfolio', paths=paths)
|
2009-01-20 22:39:05 +01:00
|
|
|
|
2010-04-16 21:44:13 +02:00
|
|
|
config['routes.map'] = make_map(config)
|
|
|
|
config['pylons.app_globals'] = app_globals.Globals(config)
|
2014-02-08 23:54:51 +01:00
|
|
|
config['pylons.h'] = debianmemberportfolio.lib.helpers
|
2009-01-20 22:39:05 +01:00
|
|
|
|
2010-04-16 21:44:13 +02:00
|
|
|
# Setup cache object as early as possible
|
|
|
|
import pylons
|
|
|
|
pylons.cache._push_object(config['pylons.app_globals'].cache)
|
|
|
|
|
|
|
|
# Create the Mako TemplateLookup, with the default auto-escaping
|
|
|
|
config['pylons.app_globals'].mako_lookup = TemplateLookup(
|
|
|
|
directories=paths['templates'],
|
|
|
|
error_handler=handle_mako_error,
|
|
|
|
module_directory=os.path.join(app_conf['cache_dir'], 'templates'),
|
|
|
|
input_encoding='utf-8', default_filters=['escape'],
|
|
|
|
imports=['from webhelpers.html import escape'])
|
2009-01-20 22:39:05 +01:00
|
|
|
|
|
|
|
# CONFIGURATION OPTIONS HERE (note: all config options will override
|
|
|
|
# any Pylons config options)
|
2010-04-16 21:44:13 +02:00
|
|
|
|
|
|
|
return config
|