Switch to unified view

a/Allura/allura/config/environment.py b/Allura/allura/config/environment.py
1
# -*- coding: utf-8 -*-
1
# -*- coding: utf-8 -*-
2
"""WSGI environment setup for allura."""
2
"""WSGI environment setup for allura."""
3
4
import pylons
5
pylons.c = pylons.tmpl_context
6
pylons.g = pylons.app_globals
7
import pylons.middleware
8
import tg
9
import tg.error
3
10
4
from allura.config.app_cfg import base_config
11
from allura.config.app_cfg import base_config
5
12
6
__all__ = ['load_environment']
13
__all__ = ['load_environment']
7
14