Modify ↓
Opened 17 years ago
Closed 16 years ago
#2046 closed enhancement (worksforme)
missing lines to tags
Reported by: | Owned by: | Emmanuel Blot | |
---|---|---|---|
Priority: | normal | Component: | RevtreePlugin |
Severity: | major | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
The lines, which are drawn between trunk and branches, are not drawn to tags. It would be helpfull to see from which branch, path and/or revision a tag was created.
Here is our configuration:
[revtree] # regular expression for branch recognition # (always define 2 named groups: 'branch' and 'path') branch_re = ^(?P<branch>branch/[^/]+|trunk|tag)(?:/(?P<path>.*))?$ # space-separated list of branches that should be considered as 'trunks' trunks = trunk # SVG rendering scale (real number) scale = 0.9 # oldest revision to consider (default to the latest revision in the repos) revbase = 1 # whether time filters start on absolute time or on the time of the youngest revision abstime = True # default appearance (either 'compact' or 'timeline') style = compact
Maybe its also important to know, that we do not always tag the trunk or highest path of a branch. We often tag subsystems. We do this as well with branches, which seems to work.
Attachments (0)
Note: See
TracTickets for help on using
tickets.
Tags are now shown as special labels, not as regular branches.
See attached image in #1405.
Closing as worksforme as tags are now handled properly (starting plugin version 0.6.1).
If you want to restore the default behavior (splines between the source revisions and the tag branch), simply add the 'tags' path to the
branch_re
regular expression. Be sure to match the exact path (tag
vs.tags
for instance)