Generated: Wed 2013-03-13 10:33 CET
Source file: /media/Envs/Envs/filer-gallery/lib/python2.7/site-packages/django/contrib/messages/storage/__init__.py
Stats: 0 executed, 15 missed, 3 excluded, 13 ignored
from django.conf import settingsfrom django.core.exceptions import ImproperlyConfiguredfrom django.utils.importlib import import_moduledef get_storage(import_path): """ Imports the message storage class described by import_path, where import_path is the full Python path to the class. """ try: dot = import_path.rindex('.') except ValueError: raise ImproperlyConfigured("%s isn't a Python path." % import_path) module, classname = import_path[:dot], import_path[dot + 1:] try: mod = import_module(module) except ImportError, e: raise ImproperlyConfigured('Error importing module %s: "%s"' % (module, e)) try: return getattr(mod, classname) except AttributeError: raise ImproperlyConfigured('Module "%s" does not define a "%s" ' 'class.' % (module, classname))# Callable with the same interface as the storage classes i.e. accepts a# 'request' object. It is wrapped in a lambda to stop 'settings' being used at# the module leveldefault_storage = lambda request: get_storage(settings.MESSAGE_STORAGE)(request)