Changeset 3141
- Timestamp:
- 01/24/08 00:18:02 (1 year ago)
- Files:
-
- screenshotsplugin/0.11/setup.py (modified) (1 diff)
- screenshotsplugin/0.11/tracscreenshots/core.py (modified) (1 diff)
- screenshotsplugin/0.11/tracscreenshots/matrix_view.py (modified) (1 diff)
- screenshotsplugin/0.11/tracscreenshots/templates/screenshot-add.html (moved) (moved from screenshotsplugin/0.11/tracscreenshots/templates/screenshot-add.cs)
- screenshotsplugin/0.11/tracscreenshots/templates/screenshot.html (moved) (moved from screenshotsplugin/0.11/tracscreenshots/templates/screenshot.cs)
- screenshotsplugin/0.11/tracscreenshots/templates/screenshots.html (moved) (moved from screenshotsplugin/0.11/tracscreenshots/templates/screenshots.cs)
- screenshotsplugin/0.11/tracscreenshots/templates/screenshots-matrix-view.html (moved) (moved from screenshotsplugin/0.11/tracscreenshots/templates/screenshots-matrix-view.cs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
screenshotsplugin/0.11/setup.py
r3140 r3141 8 8 version = '0.6', 9 9 packages = ['tracscreenshots', 'tracscreenshots.db'], 10 package_data = {'tracscreenshots' : ['templates/*. cs', 'htdocs/css/*.css',10 package_data = {'tracscreenshots' : ['templates/*.html', 'htdocs/css/*.css', 11 11 'htdocs/js/*.js']}, 12 12 entry_points = {'trac.plugins': ['TracScreenshots.api = tracscreenshots.api', screenshotsplugin/0.11/tracscreenshots/core.py
r3140 r3141 123 123 # Return template and its data. 124 124 db.commit() 125 return (template + '. cs', {'screenshots' : self.data}, content_type)125 return (template + '.html', {'screenshots' : self.data}, content_type) 126 126 127 127 # Internal functions. screenshotsplugin/0.11/tracscreenshots/matrix_view.py
r3140 r3141 66 66 data['next_index'] = next_index 67 67 68 return ('screenshots-matrix-view. cs', None)68 return ('screenshots-matrix-view.html', None) 69 69 70 70 def get_screenshots_view(req):
