Changeset 1294 for trunk/pylucid/PyLucid/defaulttags/lucidTag.py
- Timestamp:
- 10/30/07 13:50:39 (3 years ago)
- Files:
-
- 1 modified
-
trunk/pylucid/PyLucid/defaulttags/lucidTag.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/defaulttags/lucidTag.py
r1283 r1294 33 33 # FIXME: The re should be more fault-tolerant: 34 34 KWARGS_REGEX = re.compile('''(\w*?)\=['"](.*?)['"]''') 35 36 # Not all plugin output should surrounded with a <span> tag: 37 CSS_TAG_BLACKLIST = ("page_style",) 35 38 36 39 … … 85 88 raise AssertionError(msg) 86 89 87 content = add_css_tag( 88 context, content, self.plugin_name, self.method_name 89 ) 90 if not self.plugin_name in CSS_TAG_BLACKLIST: 91 content = add_css_tag( 92 context, content, self.plugin_name, self.method_name 93 ) 90 94 91 95 return content