aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/Problems_with_graphviz.pm_plug-in.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-06-08 10:06:21 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-06-08 10:06:21 +0000
commit6b6d824c5b3d62e12f766e9f596cf3144dc20363 (patch)
treeb07d9b18d9af5d32d3544a861ef998680d17c87c /doc/bugs/Problems_with_graphviz.pm_plug-in.mdwn
parentf871c084f637adc2c2ec8846c86fac9e802183e6 (diff)
downloadikiwiki-6b6d824c5b3d62e12f766e9f596cf3144dc20363.tar
ikiwiki-6b6d824c5b3d62e12f766e9f596cf3144dc20363.tar.gz
web commit by HenrikBrixAndersen: The first proposed patch was broken, this one works
Diffstat (limited to 'doc/bugs/Problems_with_graphviz.pm_plug-in.mdwn')
-rw-r--r--doc/bugs/Problems_with_graphviz.pm_plug-in.mdwn13
1 files changed, 9 insertions, 4 deletions
diff --git a/doc/bugs/Problems_with_graphviz.pm_plug-in.mdwn b/doc/bugs/Problems_with_graphviz.pm_plug-in.mdwn
index 395427b86..7abf152b9 100644
--- a/doc/bugs/Problems_with_graphviz.pm_plug-in.mdwn
+++ b/doc/bugs/Problems_with_graphviz.pm_plug-in.mdwn
@@ -8,7 +8,7 @@ It also generates image URLs relative to the page being rendered, which means th
The patch below fixes these two issues.
--- graphviz.pm.orig Thu Jun 7 15:45:16 2007
- +++ graphviz.pm Thu Jun 7 15:52:27 2007
+ +++ graphviz.pm Fri Jun 8 12:03:38 2007
@@ -41,7 +41,6 @@ sub render_graph (\%) { #{{{
$pid=open2(*IN, *OUT, "$params{prog} -Tpng");
@@ -17,12 +17,17 @@ The patch below fixes these two issues.
binmode (OUT, ':utf8');
print OUT $src;
- @@ -70,7 +69,7 @@ sub render_graph (\%) { #{{{
+ @@ -70,7 +69,12 @@ sub render_graph (\%) { #{{{
}
}
- return "<img src=\"".urlto($dest, $params{page})."\" />\n";
- + return "<img src=\"".urlto($dest, "/")."\" />\n";
+ + if ($params{preview}) {
+ + return "<img src=\"".urlto($dest, "")."\" />\n";
+ + }
+ + else {
+ + return "<img src=\"".urlto($dest, $params{page})."\" />\n";
+ + }
} #}}}
- sub graph (@) { #{{{ \ No newline at end of file
+ sub graph (@) { #{{{