aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/graphviz.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-07-31 15:54:25 -0400
committerJoey Hess <joey@kitenet.net>2010-07-31 15:54:25 -0400
commitfee00fdb7a4ebb52e90f739cca33def70497620e (patch)
tree453965713832b4a1cb23c4e4d0c0189b9c251a34 /IkiWiki/Plugin/graphviz.pm
parentd1a5d00156da7bf6f25f8e28969c280738d3281c (diff)
downloadikiwiki-fee00fdb7a4ebb52e90f739cca33def70497620e.tar
ikiwiki-fee00fdb7a4ebb52e90f739cca33def70497620e.tar.gz
Use Digest::SHA built into perl rather than external Digest::SHA1 to simplify dependencies. Closes: #591040
Diffstat (limited to 'IkiWiki/Plugin/graphviz.pm')
-rw-r--r--IkiWiki/Plugin/graphviz.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/graphviz.pm b/IkiWiki/Plugin/graphviz.pm
index dfd66a03e..4ed8b89f1 100644
--- a/IkiWiki/Plugin/graphviz.pm
+++ b/IkiWiki/Plugin/graphviz.pm
@@ -37,10 +37,10 @@ sub render_graph (\%) {
$src .= "}\n";
# Use the sha1 of the graphviz code as part of its filename.
- eval q{use Digest::SHA1};
+ eval q{use Digest::SHA};
error($@) if $@;
my $dest=$params{page}."/graph-".
- IkiWiki::possibly_foolish_untaint(Digest::SHA1::sha1_hex($src)).
+ IkiWiki::possibly_foolish_untaint(Digest::SHA::sha1_hex($src)).
".png";
will_render($params{page}, $dest);