Generated: Wed 2013-03-13 10:33 CET
Source file: /media/Envs/Envs/filer-gallery/lib/python2.7/site-packages/cms/conf/__init__.py
Stats: 0 executed, 16 missed, 4 excluded, 20 ignored
# -*- coding: utf-8 -*-from django.conf import settingsfrom patch import pre_patch, post_patch, post_patch_checkimport warningsdef patch_settings(): """Merge settings with global cms settings, so all required attributes will exist. Never override, just append non existing settings. Also check for setting inconstistence if settings.DEBUG """ if patch_settings.ALREADY_PATCHED: return patch_settings.ALREADY_PATCHED = True if getattr(settings, 'CMS_FLAT_URLS', False): warnings.warn("CMS_FLAT_URLS are deprecated and will be removed in django CMS 2.4!", DeprecationWarning) if getattr(settings, 'CMS_MODERATOR', False): warnings.warn("CMS_MODERATOR will be removed and replaced in django CMS 2.4!", DeprecationWarning) from cms.conf import global_settings # patch settings pre_patch() # merge with global cms settings for attr in dir(global_settings): if attr == attr.upper() and not hasattr(settings, attr): setattr(settings._wrapped, attr, getattr(global_settings, attr)) post_patch() if settings.DEBUG: # check if settings are correct, call this only if debugging is enabled post_patch_check()patch_settings.ALREADY_PATCHED = False