Changeset 3644
- Timestamp:
- 05/08/08 20:11:21 (2 months ago)
- Files:
-
- tagsplugin/trunk/tractags/macros.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tagsplugin/trunk/tractags/macros.py
r3109 r3644 9 9 from trac.resource import Resource, get_resource_url, render_resource_link 10 10 from trac.wiki.macros import WikiMacroBase 11 from trac.web.chrome import add_stylesheet 11 12 from trac.util.compat import sorted, set 12 13 from tractags.api import TagSystem … … 24 25 max_px = 30.0 25 26 scale = 1.0 27 28 add_stylesheet(req, 'tags/css/tractags.css') 26 29 27 30 if renderer is None: … … 71 74 req = formatter.req 72 75 query_result = TagSystem(self.env).query(req, content) 76 add_stylesheet(req, 'tags/css/tractags.css') 73 77 74 78 def link(resource):
