Changeset 3141

Show
Ignore:
Timestamp:
01/24/08 00:18:02 (1 year ago)
Author:
Blackhex
Message:
  • Templates renamed from .cs to .html
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • screenshotsplugin/0.11/setup.py

    r3140 r3141  
    88  version = '0.6', 
    99  packages = ['tracscreenshots', 'tracscreenshots.db'], 
    10   package_data = {'tracscreenshots' : ['templates/*.cs', 'htdocs/css/*.css', 
     10  package_data = {'tracscreenshots' : ['templates/*.html', 'htdocs/css/*.css', 
    1111    'htdocs/js/*.js']}, 
    1212  entry_points = {'trac.plugins': ['TracScreenshots.api = tracscreenshots.api', 
  • screenshotsplugin/0.11/tracscreenshots/core.py

    r3140 r3141  
    123123        # Return template and its data. 
    124124        db.commit() 
    125         return (template + '.cs', {'screenshots' : self.data}, content_type) 
     125        return (template + '.html', {'screenshots' : self.data}, content_type) 
    126126 
    127127    # Internal functions. 
  • screenshotsplugin/0.11/tracscreenshots/matrix_view.py

    r3140 r3141  
    6666        data['next_index'] = next_index 
    6767 
    68         return ('screenshots-matrix-view.cs', None) 
     68        return ('screenshots-matrix-view.html', None) 
    6969 
    7070    def get_screenshots_view(req):