]> sipb.mit.edu Git - ikiwiki.git/commitdiff
graphviz: Support urls embedded in the graph, by having graphviz generate an imagemap.
authorJoey Hess <joey@kitenet.net>
Wed, 30 Nov 2011 18:40:27 +0000 (14:40 -0400)
committerJoey Hess <joey@kitenet.net>
Wed, 30 Nov 2011 19:47:12 +0000 (15:47 -0400)
Also, I let preview mode write real files, rather than using data: uri.
Which is ok these days, since ikiwiki tracks files created during
previewing, and cleans them up later.

IkiWiki/Plugin/graphviz.pm
debian/changelog
doc/ikiwiki/directive/graph.mdwn

index 4ed8b89f165847832762408c05b0abedc21aaf6c..f01fdca8573135026210468ac2b84ae63806f7b5 100644 (file)
@@ -26,10 +26,13 @@ my %graphviz_programs = (
        "dot" => 1, "neato" => 1, "fdp" => 1, "twopi" => 1, "circo" => 1
 );
 
+my $graphnum=0;
+
 sub render_graph (\%) {
        my %params = %{(shift)};
 
-       my $src = "$params{type} g {\n";
+       $graphnum++;
+       my $src = "$params{type} graph$graphnum {\n";
        $src .= "charset=\"utf-8\";\n";
        $src .= "ratio=compress;\nsize=\"".($params{width}+0).", ".($params{height}+0)."\";\n"
                if defined $params{width} and defined $params{height};
@@ -39,48 +42,50 @@ sub render_graph (\%) {
        # Use the sha1 of the graphviz code as part of its filename.
        eval q{use Digest::SHA};
        error($@) if $@;
-       my $dest=$params{page}."/graph-".
-               IkiWiki::possibly_foolish_untaint(Digest::SHA::sha1_hex($src)).
-               ".png";
+       my $base=$params{page}."/graph-".
+               IkiWiki::possibly_foolish_untaint(Digest::SHA::sha1_hex($src));
+       my $dest=$base.".png";
        will_render($params{page}, $dest);
 
-       if (! -e "$config{destdir}/$dest") {
+       # The imagemap data is stored as a separate file.
+       my $imagemap=$base.".imagemap";
+       will_render($params{page}, $imagemap);
+       
+       my $map;
+       if (! -e "$config{destdir}/$dest" || ! -e "$config{destdir}/$imagemap") {
+               # Use ikiwiki's function to create the image file, this makes
+               # sure needed subdirs are there and does some sanity checking.
+               writefile($dest, $config{destdir}, "");
+               
                my $pid;
                my $sigpipe=0;
                $SIG{PIPE}=sub { $sigpipe=1 };
-               $pid=open2(*IN, *OUT, "$params{prog} -Tpng");
+               $pid=open2(*IN, *OUT, "$params{prog} -Tpng -o '$config{destdir}/$dest' -Tcmapx");
 
                # open2 doesn't respect "use open ':utf8'"
+               binmode (IN, ':utf8');
                binmode (OUT, ':utf8');
 
                print OUT $src;
                close OUT;
 
-               my $png;
-               {
-                       local $/ = undef;
-                       $png = <IN>;
-               }
+               local $/ = undef;
+               $map=<IN>;
                close IN;
+               writefile($imagemap, $config{destdir}, $map);
 
                waitpid $pid, 0;
                $SIG{PIPE}="DEFAULT";
-               error gettext("failed to run graphviz") if $sigpipe;
-
-               if (! $params{preview}) {
-                       writefile($dest, $config{destdir}, $png, 1);
-               }
-               else {
-                       # in preview mode, embed the image in a data uri
-                       # to avoid temp file clutter
-                       eval q{use MIME::Base64};
-                       error($@) if $@;
-                       return "<img src=\"data:image/png;base64,".
-                               encode_base64($png)."\" />";
-               }
+               error gettext("failed to run graphviz") if ($sigpipe || $?);
+
+       }
+       else {
+               $map=readfile("$config{destdir}/$imagemap");
        }
 
-       return "<img src=\"".urlto($dest, $params{destpage})."\" />\n";
+       return "<img src=\"".urlto($dest, $params{destpage}).
+               "\" usemap=\"#graph$graphnum\" />\n".
+               $map;
 }
 
 sub graph (@) {
index 73318b2696601de3b41dc09693c05aa926ab0740..c77fbbeef03cf9858bcab2f51b9f47f748ec8f1f 100644 (file)
@@ -6,6 +6,8 @@ ikiwiki (3.20111107) UNRELEASED; urgency=low
   * The umask setting can now be set to private, group, or public,
     avoiding the need to enter octal correctly which is particularly
     difficult in yaml setup files. (smcv)
+  * graphviz: Support urls embedded in the graph, by having graphviz
+    generate an imagemap.
 
  -- Joey Hess <joeyh@debian.org>  Thu, 17 Nov 2011 18:52:23 -0400
 
index 4331872686198113bec7b157003c4b8db1e55526..2828921d715e4172bfba7d9d13521e51a771fe48 100644 (file)
@@ -1,14 +1,10 @@
 The `graph` directive is supplied by the [[!iki plugins/graphviz desc=graphviz]] plugin.
 
-This directive allows embedding [graphviz](http://www.graphviz.org/) graphs in a
-page.  Example usage:
+This directive allows embedding [graphviz](http://www.graphviz.org/)
+graphs in a page.  Example usage:
 
        \[[!graph src="a -> b -> c; a -> c;"]]
 
-Note that graphs will only show up in previews if your browser has
-[[!wikipedia data: URI]] support, or if the same graph already exists on that
-page.
-
 The `graph` directive supports the following parameters:
 
 - `src` - The graphviz source to render.