include manually the toggle js code

master
Antoine Beaupré 2012-07-19 10:32:02 -04:00
parent 12fa9c031f
commit c42f992dc9
1 changed files with 22 additions and 0 deletions

View File

@ -9,10 +9,12 @@ use HTML::Entities;
my $maxlines=200; my $maxlines=200;
sub import { sub import {
add_underlay("javascript");
hook(type => "getsetup", id => "recentchangesdiff", hook(type => "getsetup", id => "recentchangesdiff",
call => \&getsetup); call => \&getsetup);
hook(type => "pagetemplate", id => "recentchangesdiff", hook(type => "pagetemplate", id => "recentchangesdiff",
call => \&pagetemplate); call => \&pagetemplate);
hook(type => "format", id => "recentchangesdiff.pm", call => \&format);
} }
sub getsetup () { sub getsetup () {
@ -55,4 +57,24 @@ sub pagetemplate (@) {
} }
} }
sub format (@) {
my %params=@_;
if (! ($params{content}=~s!^(<body[^>]*>)!$1.include_javascript($params{page})!em)) {
# no <body> tag, probably in preview mode
$params{content}=include_javascript(undef).$params{content};
}
return $params{content};
}
# taken verbatim from toggle.pm
sub include_javascript ($) {
my $from=shift;
return '<script src="'.urlto("ikiwiki/ikiwiki.js", $from).
'" type="text/javascript" charset="utf-8"></script>'."\n".
'<script src="'.urlto("ikiwiki/toggle.js", $from).
'" type="text/javascript" charset="utf-8"></script>';
}
1 1