Changeset 4226

Show
Ignore:
Timestamp:
09/02/08 11:42:44 (3 months ago)
Author:
ftiede
Message:

Set keywords and fixed macro name to old DepGraph(). See #3305.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tracticketdepgraphplugin/0.11/depgraph/depgraph.py

    • Property svn:keywords set to Id HeadURL LastChangedRevision
    r4202 r4226  
    1717 
    1818""" 
    19 $Id: depgraph.py 3626 2008-05-06 17:45:54Z ftiede
    20 $HeadURL: http://trac-hacks.org/svn/tracticketdepgraphplugin/0.10/depgraph/depgraph.py
     19$Id
     20$HeadURL
    2121 
    2222Copyright (c) 2007, 2008 Felix Tiede. All rights reserved. 
     
    3939""" 
    4040 
    41 __revision__  = '$LastChangedRevision: 3626 $' 
    42 __id__        = '$Id: depgraph.py 3626 2008-05-06 17:45:54Z ftiede $' 
    43 __headurl__   = '$HeadURL: http://trac-hacks.org/svn/tracticketdepgraphplugin/0.10/depgraph/depgraph.py $' 
     41__revision__  = '$LastChangedRevision$' 
     42__id__        = '$Id$' 
     43__headurl__   = '$HeadURL$' 
    4444__version__   = '0.11' 
    4545 
     
    5454from mastertickets.model import TicketLinks 
    5555 
    56 class DepgraphMacro(WikiMacroBase): 
     56class DepGraphMacro(WikiMacroBase): 
    5757        """ 
    5858        DepgraphMacro provides a plugin for Trac to render a dependency graph 
     
    132132                self.log.info('version: %s - id: %s' % (__version__, str(__id__))) 
    133133 
    134 #     def get_macros(self): 
    135 #             """Return an iterable that provides the names of the provided macros.""" 
    136 #             yield 'DepGraph' 
    137 
     134      def get_macros(self): 
     135              """Return an iterable that provides the names of the provided macros.""" 
     136              yield 'DepGraph' 
     137 
    138138        def get_macro_description(self, name): 
    139139                from inspect import getdoc, getmodule 
  • tracticketdepgraphplugin/0.11/depgraph/web_ui.py

    • Property svn:keywords set to Id HeadURL LastChangedRevision
    r4202 r4226  
    1717 
    1818""" 
    19 $Id: web_ui.py 2647 2007-09-20 08:46:26Z ftiede
    20 $HeadURL: http://trac-hacks.org/svn/tracticketdepgraphplugin/0.10/depgraph/web_ui.py
     19$Id
     20$HeadURL
    2121 
    2222Copyright (c) 2007, 2008 Felix Tiede. All rights reserved. 
     
    2626""" 
    2727 
    28 __revision__  = '$LastChangedRevision: 2647 $' 
    29 __id__        = '$Id: web_ui.py 2647 2007-09-20 08:46:26Z ftiede $' 
    30 __headurl__   = '$HeadURL: http://trac-hacks.org/svn/tracticketdepgraphplugin/0.10/depgraph/web_ui.py $' 
     28__revision__  = '$LastChangedRevision$' 
     29__id__        = '$Id$' 
     30__headurl__   = '$HeadURL$' 
    3131__version__   = '0.11' 
    3232 
     
    4343from trac.util.html import html, Markup 
    4444 
    45 from depgraph import DepgraphMacro 
     45from depgraph import DepGraphMacro 
    4646 
    47 class DepgraphModule(Component): 
     47class DepGraphModule(Component): 
    4848        """Provides a direct link to a ticket's dependency graph""" 
    4949