Changeset 4226
- Timestamp:
- 09/02/08 11:42:44 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tracticketdepgraphplugin/0.11/depgraph/depgraph.py
- Property svn:keywords set to Id HeadURL LastChangedRevision
r4202 r4226 17 17 18 18 """ 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$ 21 21 22 22 Copyright (c) 2007, 2008 Felix Tiede. All rights reserved. … … 39 39 """ 40 40 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$' 44 44 __version__ = '0.11' 45 45 … … 54 54 from mastertickets.model import TicketLinks 55 55 56 class Dep graphMacro(WikiMacroBase):56 class DepGraphMacro(WikiMacroBase): 57 57 """ 58 58 DepgraphMacro provides a plugin for Trac to render a dependency graph … … 132 132 self.log.info('version: %s - id: %s' % (__version__, str(__id__))) 133 133 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 138 138 def get_macro_description(self, name): 139 139 from inspect import getdoc, getmodule tracticketdepgraphplugin/0.11/depgraph/web_ui.py
- Property svn:keywords set to Id HeadURL LastChangedRevision
r4202 r4226 17 17 18 18 """ 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$ 21 21 22 22 Copyright (c) 2007, 2008 Felix Tiede. All rights reserved. … … 26 26 """ 27 27 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$' 31 31 __version__ = '0.11' 32 32 … … 43 43 from trac.util.html import html, Markup 44 44 45 from depgraph import Dep graphMacro45 from depgraph import DepGraphMacro 46 46 47 class Dep graphModule(Component):47 class DepGraphModule(Component): 48 48 """Provides a direct link to a ticket's dependency graph""" 49 49
