diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-14 14:44:30 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-14 14:44:30 -0400 |
commit | 5d83e7359d8a450c7e08405640c10157ba481fcc (patch) | |
tree | 40fadc7bd8882b376e64146a7c812838025c2697 | |
parent | 15424d405b8736fa2568c12f7cfca94f34dcf07a (diff) |
graphviz: Fix breakage of the name of the preprocessor directive.
-rw-r--r-- | IkiWiki/Plugin/graphviz.pm | 2 | ||||
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | doc/bugs/Graphviz_plug-in_directive_changed_in_2.60.mdwn | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/graphviz.pm b/IkiWiki/Plugin/graphviz.pm index 999edd8ee..20b419413 100644 --- a/IkiWiki/Plugin/graphviz.pm +++ b/IkiWiki/Plugin/graphviz.pm @@ -10,7 +10,7 @@ use IPC::Open2; sub import { #{{{ hook(type => "getsetup", id => "graphviz", call => \&getsetup); - hook(type => "preprocess", id => "graphviz", call => \&graph); + hook(type => "preprocess", id => "graph", call => \&graph); } # }}} sub getsetup () { #{{{ diff --git a/debian/changelog b/debian/changelog index f23d9c56c..240884cbf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ ikiwiki (2.61) UNRELEASED; urgency=low * poll: Fix typo that broke plugin. + * graphviz: Fix breakage of the name of the preprocessor directive. -- Joey Hess <joeyh@debian.org> Tue, 12 Aug 2008 15:48:36 -0400 diff --git a/doc/bugs/Graphviz_plug-in_directive_changed_in_2.60.mdwn b/doc/bugs/Graphviz_plug-in_directive_changed_in_2.60.mdwn index b2b66c3f1..8dffdf9f8 100644 --- a/doc/bugs/Graphviz_plug-in_directive_changed_in_2.60.mdwn +++ b/doc/bugs/Graphviz_plug-in_directive_changed_in_2.60.mdwn @@ -5,3 +5,7 @@ If yes, the [[plugins/graphviz]] plug-in documentation needs updating, and a hea Personally, I like the new directive name better since it will allow us to add other graph plug-ins later. -- [[HenrikBrixAndersen]] + +> No, that change was not made intentionally. I don't want to bother people +> with such a transition. Though it would be nice if it had a less generic +> name. Changed back. [[tag done]] --[[Joey]] |