Changeset 1800
- Timestamp:
- 11/18/08 16:13:38 (16 months ago)
- Location:
- trunk/pylucid_project/PyLucid
- Files:
-
- 2 modified
-
settings_example.py (modified) (1 diff)
-
template_addons/lucidTag.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid_project/PyLucid/settings_example.py
r1634 r1800 406 406 CSS_PLUGIN_CLASS_NAME = "PyLucidPlugins" 407 407 408 # A tuple list of all plugins witch output should not surrounded with a 409 # <div> tag: 410 CSS_TAG_BLACKLIST = ("page_style", "RSSfeedGenerator",) 408 411 409 412 -
trunk/pylucid_project/PyLucid/template_addons/lucidTag.py
r1667 r1800 35 35 KWARGS_REGEX = re.compile('''(\w*?)\=['"](.*?)['"]''') 36 36 37 # Not all plugin output should surrounded with a <div> tag: 38 CSS_TAG_BLACKLIST = ("page_style", "RSSfeedGenerator",) 37 # TODO: Should be removed in the next release 38 CSS_TAG_BLACKLIST = getattr( 39 settings, "CSS_TAG_BLACKLIST", ("page_style", "RSSfeedGenerator",) 40 ) 39 41 40 42