] API_KEYS = { 'cloudmade': SECRETS.cloudmade, 'google': SECRETS.google, 'yahoo': SECRETS.yahoo, 'fireeagle': SECRETS.fireeagle, } SITE_MEDIA_PATH = os.path.join(project_root, 'site-media') INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.admin', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'molly.batch_processing', 'molly.utils', # 'debug_toolbar', ) + extract_installed_apps(APPLICATIONS) CACHE_DIR = '/var/cache/molly' SRID = 27700 FIXTURE_DIRS = [ os.path.join(project_root, 'fixtures'), ] INTERNAL_IPS = ('127.0.0.1',) # for the debug_toolbar
Application('molly.favourites', 'favourites', 'Favourite pages', display_to_user = False, ), Application('molly.routing', 'routing', 'Routing', display_to_user = False, ), Application('molly.routing', 'routing', 'Routing', display_to_user = False, ), ] # This is where any non-Molly apps are added to the configuration INSTALLED_APPS = extract_installed_apps(APPLICATIONS) + ( 'django.contrib.auth', 'django.contrib.admin', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.gis', 'django.contrib.comments', 'django.contrib.staticfiles', 'pipeline', 'south', 'djcelery', 'gunicorn', ) SITE_ID = 1
# # # The following defines the mapping between Sakai user identifiers and # # Molly user identifiers # identifiers = ( # ('oxford:sso', ('props', 'aid',)), # ('weblearn:id', ('id',)), # ('oxford:oss', ('props', 'oakOSSID',)), # ('oxford:ldap', ('props', 'udp.dn',)), # ('weblearn:email', ('email',)), # ), #), # This app allows for users to favourite pages which can then be jumped to # immediately from the front page, or rendered on the nearby page. It has no # configuration. Application('molly.favourites', 'favourites', 'Favourite pages', display_to_user = False, ), # This app provides utilities to other apps which want to generate a route # between 2 points Application('molly.routing', 'routing', 'Routing', display_to_user = False, ), ] # This is where any non-Molly apps are added to the configuration INSTALLED_APPS = extract_installed_apps(APPLICATIONS) + INSTALLED_APPS