Changeset 2075

Show
Ignore:
Timestamp:
03/03/07 09:04:51 (2 years ago)
Author:
eblot
Message:

RevtreePlugin:

Fix up a stupid bug in the branch detection code

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • revtreeplugin/0.11/revtree/model.py

    r1910 r2075  
    107107        self.branchname = path_mo.group('branch').lower() 
    108108        if src_mo: 
    109             self.clone = (int(base_rev), src_mo.group('branch').lower()
     109            self.clone = (int(base_rev), src_mo.group('branch')
    110110        return True 
    111111 
  • revtreeplugin/0.11/revtree/web_ui.py

    r1916 r2075  
    188188            raise TracError, "Revtree only supports Subversion repositories" 
    189189        bre = self.config.get('revtree', 'branch_re', 
    190                   r'^(?P<branch>branches/[^/]+|trunk|data)' 
     190                  r'^(?P<branch>branches/[^/]+|trunk|tags)' 
    191191                  r'(?:/(?P<path>.*))?$') 
    192192        self.bcre = re.compile(bre) 
  • revtreeplugin/0.11/setup.py

    r1908 r2075  
    1616 
    1717PACKAGE = 'TracRevtreePlugin' 
    18 VERSION = '0.5.0
     18VERSION = '0.5.0.1
    1919 
    2020setup (