Changeset 2771
- Timestamp:
- 11/12/07 18:10:35 (8 months ago)
- Files:
-
- batchmodifyplugin/0.10 (modified) (1 prop)
- batchmodifyplugin/0.10/batchmod/web_ui.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
batchmodifyplugin/0.10
- Property svn:ignore set to
build
BatchModify.egg-info
dist
- Property svn:ignore set to
batchmodifyplugin/0.10/batchmod/web_ui.py
r1379 r2771 2 2 # Copyright (C) 2006 Ashwin Phatak 3 3 4 import re 4 5 from trac.core import * 5 6 from trac.web.chrome import INavigationContributor, ITemplateProvider … … 41 42 42 43 def match_request(self, req): 43 return QueryModule(self.env).match_request(req)44 return QueryModule(self.env).match_request(req) 44 45 45 46 def process_request(self, req): … … 59 60 from pkg_resources import resource_filename 60 61 return [resource_filename(__name__, 'templates')] 61 62 63 def get_htdocs_dirs(self): 64 return [] 62 65 63 66 # IPermissionRequestor methods
