Changes between Version 16 and Version 17 of RevtreePlugin


Ignore:
Timestamp:
Mar 3, 2007, 3:35:33 PM (17 years ago)
Author:
Emmanuel Blot
Comment:

Add a new regex for multiple-project repository layout

Legend:

Unmodified
Added
Removed
Modified
  • RevtreePlugin

    v16 v17  
     1&
    12= Revision Graph for the Version Control Browser =
    23
     
    223224# regular expression for branch recognition
    224225# (always define 2 named groups: 'branch' and 'path')
    225 branch_re = ^(?P<branch>branches/[^/]+|trunk|data)(?:/(?P<path>.*))?$
     226branch_re = ^(?P<branch>branches/[^/]+|trunk|tags)(?:/(?P<path>.*))?$
    226227# space-separated list of branches that should be considered as 'trunks'
    227228trunks = trunk
     
    250251        selects the ''last 2 days'', no changeset will be shown.
    251252       
     253==== Repository layout adaptation ====
     254
     255The default RevtreePlugin setting is defined to work with ''single-project'' repository layout, as defined in the Subversion book [http://svnbook.red-bean.com/nightly/en/svn.branchmerge.maint.html#svn.branchmerge.maint.layout repository layout] section.
     256
     257If your repository follows a different layout, you need to tweak the branch regex.
     258
     259The following regex would better match the ''multiple-project'' repository layout:
     260{{{
     261branch_re = ^(?P<branch;[^/]+/(?:(?:tags|branches)/[^/]+|trunk))(?:/(?P<path>.*))?$
     262}}}
     263
    252264=== Revtree menu item ===
    253265