Changeset 2771

Show
Ignore:
Timestamp:
11/12/07 18:10:35 (8 months ago)
Author:
coling
Message:

Fixes #1337 by applying patch. Also add some directories to ignore for neatness sake.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • batchmodifyplugin/0.10

    • Property svn:ignore set to
      build
      BatchModify.egg-info
      dist
  • batchmodifyplugin/0.10/batchmod/web_ui.py

    r1379 r2771  
    22# Copyright (C) 2006 Ashwin Phatak 
    33 
     4import re 
    45from trac.core import * 
    56from trac.web.chrome import INavigationContributor, ITemplateProvider 
     
    4142 
    4243    def match_request(self, req): 
    43        return QueryModule(self.env).match_request(req) 
     44        return QueryModule(self.env).match_request(req) 
    4445     
    4546    def process_request(self, req): 
     
    5960        from pkg_resources import resource_filename 
    6061        return [resource_filename(__name__, 'templates')] 
    61     
     62 
     63    def get_htdocs_dirs(self): 
     64        return [] 
    6265  
    6366    # IPermissionRequestor methods