Changeset 3465
- Timestamp:
- 04/04/08 07:38:50 (6 months ago)
- Files:
-
- screenshotsplugin/0.10/setup.py (modified) (1 diff)
- screenshotsplugin/0.10/tracscreenshots/wiki.py (modified) (2 diffs)
- screenshotsplugin/0.11/tracscreenshots/wiki.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
screenshotsplugin/0.10/setup.py
r3303 r3465 15 15 'TracScreenshots.matrix_view = tracscreenshots.matrix_view', 16 16 'TracScreenshots.wiki = tracscreenshots.wiki', 17 'TracScreenshots.tags = tracscreenshots.tags ']},17 'TracScreenshots.tags = tracscreenshots.tags [Tags]']}, 18 18 install_requires = [], 19 extras_require = {'Tags' : ['TracTags']}, 19 20 keywords = 'trac screenshots', 20 21 author = 'Radek BartoÅ', screenshotsplugin/0.10/tracscreenshots/wiki.py
r3313 r3465 191 191 screenshot = api.get_screenshot(cursor, screenshot_id) 192 192 193 self.log.debug((params, label, arguments)) 194 193 195 # Return macro content 194 196 if screenshot: … … 197 199 screenshot['description']) 198 200 else: 199 return html.a(arguments[0], href = formatter.href.screenshots(), 200 title = params, class_ = 'missing') 201 return html.a(screenshot_id, href = 202 formatter.href.screenshots(), title = params, class_ = 203 'missing') 201 204 202 205 def _format_description(self, template, screenshot): screenshotsplugin/0.11/tracscreenshots/wiki.py
r3313 r3465 203 203 screenshot['description']) 204 204 else: 205 return html.a( arguments[0], href = formatter.href.screenshots(),205 return html.a(screenshot_id, href = formatter.href.screenshots(), 206 206 title = params, class_ = 'missing') 207 207
