From: Patrick Winnertz Date: Thu, 10 Jan 2008 01:04:51 +0000 (-0500) Subject: I've wrote a little patch for the bug in teximg (can only include fomula on X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/81c726982b36dcea932c8570151095a55c0b0473?ds=sidebyside I've wrote a little patch for the bug in teximg (can only include fomula on one page). --- diff --git a/IkiWiki/Plugin/teximg.pm b/IkiWiki/Plugin/teximg.pm index fc890666a..5f9589fdd 100644 --- a/IkiWiki/Plugin/teximg.pm +++ b/IkiWiki/Plugin/teximg.pm @@ -70,9 +70,8 @@ sub create ($$$) { #{{{ my $digest = md5_hex($code, $height); - my $teximgdir = "/teximg"; - my $imglink = "$teximgdir/$digest.png"; - my $imglog = "$teximgdir/$digest.log"; + my $imglink= $params->{page} . "/$digest.png"; + my $imglog = $params->{page} . "/$digest.log"; will_render($params->{destpage}, $imglink); will_render($params->{destpage}, $imglog); @@ -83,12 +82,12 @@ sub create ($$$) { #{{{ $logurl = urlto($imglog, $params->{destpage}); } else { - $imgurl="$config{url}/$teximgdir/$digest.png"; - $logurl="$config{url}/$teximgdir/$digest.log"; + $imgurl="$params->{page}/$digest.png"; + $logurl="$params->{page}/$digest.log"; } if (-e "$config{destdir}/$imglink" || - gen_image($code, $height, $digest, $teximgdir)) { + gen_image($code, $height, $digest, $params->{page})) { return qq{}
 			.(exists $params->{alt} ? $params->{alt} : encode_entities($code))
 			.qq{};