Changeset 4695


Ignore:
Timestamp:
Nov 1, 2008, 6:05:29 PM (16 years ago)
Author:
Emmanuel Blot
Message:

Fixes #3442. Thanks to erik for the patch

Location:
revtreeplugin/0.11
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • revtreeplugin/0.11/revtree/enhancer.py

    r4024 r4695  
    5656                    # tweak the color of this changeset
    5757                    svgbranch.svgchangeset(lastchgset).mark_last()
    58         return enhancer
    5958
    6059    def build(self):
     
    7069            svgdstchg = svgdstbr.svgchangeset(dstchg)
    7170            op = SvgOperation(self.svgrevtree, svgsrcchg, svgdstchg, '#3f3f3f')
    72             self.widgets[IRevtreeEnhancer.ZFORE].append(op)
     71            self._widgets[IRevtreeEnhancer.ZFORE].append(op)
    7372                   
    74         for wl in self.widgets:
     73        for wl in self._widgets:
    7574            map(lambda w: w.build(), wl)
    7675       
  • revtreeplugin/0.11/setup.py

    r4024 r4695  
    1616
    1717PACKAGE = 'TracRevtreePlugin'
    18 VERSION = '0.6.0'
     18VERSION = '0.6.1'
    1919
    2020setup (
     
    2727    url='http://trac-hacks.org/wiki/RevtreePlugin',
    2828    keywords = "trac revision svg graphical tree browser visual",
    29     install_requires = [ 'Trac>=0.11dev-r6572', 'Trac<0.12'],
     29    install_requires = [ 'Trac>=0.11', 'Trac<0.12'],
    3030    packages = find_packages(exclude=['ez_setup', '*.tests*', '*.enhancers.*']),
    3131    package_data={
Note: See TracChangeset for help on using the changeset viewer.