Changeset 2076

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

RevtreePlugin:

Fix up a stupid bug in the branch detection code (back port from 0.11/ fix)

Files:

Legend:

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

    r1895 r2076  
    106106        self.branchname = path_mo.group('branch').lower() 
    107107        if src_mo: 
    108             self.clone = (int(base_rev), src_mo.group('branch').lower()
     108            self.clone = (int(base_rev), src_mo.group('branch')
    109109        return True 
    110110 
  • revtreeplugin/0.10/revtree/web_ui.py

    r1895 r2076  
    209209            raise TracError, "Revtree only supports Subversion repositories" 
    210210        bre = self.config.get('revtree', 'branch_re', 
    211                   r'^(?P<branch>branches/[^/]+|trunk|data)' 
     211                  r'^(?P<branch>branches/[^/]+|trunk|tags)' 
    212212                  r'(?:/(?P<path>.*))?$') 
    213213        self.bcre = re.compile(bre) 
  • revtreeplugin/0.10/setup.py

    r1895 r2076  
    1616 
    1717PACKAGE = 'TracRevtreePlugin' 
    18 VERSION = '0.4.7
     18VERSION = '0.4.7.1
    1919 
    2020setup (