]> gitweb.michael.orlitzky.com - dead/census-tools.git/blob - www/maps/maps/lib/app_globals.py
Added the "maps" Pylons project.
[dead/census-tools.git] / www / maps / maps / lib / app_globals.py
1 """The application's Globals object"""
2
3 class Globals(object):
4
5 """Globals acts as a container for objects available throughout the
6 life of the application
7
8 """
9
10 def __init__(self):
11 """One instance of Globals is created during application
12 initialization and is available during requests via the
13 'app_globals' variable
14
15 """