Generated: Wed 2013-03-13 10:33 CET
Source file: /media/Envs/Envs/filer-gallery/lib/python2.7/site-packages/cms/utils/django_load.py
Stats: 0 executed, 31 missed, 5 excluded, 52 ignored
# -*- coding: utf-8 -*-"""This is revision from 3058ab9d9d4875589638cc45e84b59e7e1d7c9c3 ofhttps://github.com/ojii/django-load.ANY changes to this file, be it upstream fixes or changes for the cms *must* bedocumentet clearly within this file with comments.For documentation on how to use the functions described in this file, pleaserefer to http://django-load.readthedocs.org/en/latest/index.html."""from django.conf import settingsfrom django.utils.importlib import import_moduledef get_module(app, modname, verbose, failfast): """ Internal function to load a module from a single app. """ module_name = '%s.%s' % (app, modname) try: module = import_module(module_name) except ImportError, e: if failfast: raise e elif verbose: print "Could not load %r from %r: %s" % (modname, app, e) return None if verbose: print "Loaded %r from %r" % (modname, app) return moduledef load(modname, verbose=False, failfast=False): """ Loads all modules with name 'modname' from all installed apps. If verbose is True, debug information will be printed to stdout. If failfast is True, import errors will not be surpressed. """ for app in settings.INSTALLED_APPS: get_module(app, modname, verbose, failfast)def iterload(modname, verbose=False, failfast=False): """ Loads all modules with name 'modname' from all installed apps and returns and iterator of those modules. If verbose is True, debug information will be printed to stdout. If failfast is True, import errors will not be surpressed. """ for app in settings.INSTALLED_APPS: module = get_module(app, modname, verbose, failfast) if module: yield moduledef load_object(import_path): """ Loads an object from an 'import_path', like in MIDDLEWARE_CLASSES and the likes. Import paths should be: "mypackage.mymodule.MyObject". It then imports the module up until the last dot and tries to get the attribute after that dot from the imported module. If the import path does not contain any dots, a TypeError is raised. If the module cannot be imported, an ImportError is raised. If the attribute does not exist in the module, a AttributeError is raised. """ if '.' not in import_path: raise TypeError( "'import_path' argument to 'django_load.core.load_object' must " "contain at least one dot." ) module_name, object_name = import_path.rsplit('.', 1) module = import_module(module_name) return getattr(module, object_name)def iterload_objects(import_paths): """ Load a list of objects. """ for import_path in import_paths: yield load_object(import_path)