- Timestamp:
- 11/18/08 16:13:38 (16 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
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