/usr/share/perl5/IkiWiki/Plugin/recentchangesdiff.pm is in ikiwiki 3.20130904.1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | #!/usr/bin/perl
package IkiWiki::Plugin::recentchangesdiff;
use warnings;
use strict;
use IkiWiki 3.00;
use HTML::Entities;
my $maxlines=200;
sub import {
add_underlay("javascript");
hook(type => "getsetup", id => "recentchangesdiff",
call => \&getsetup);
hook(type => "pagetemplate", id => "recentchangesdiff",
call => \&pagetemplate);
hook(type => "format", id => "recentchangesdiff.pm", call => \&format);
}
sub getsetup () {
return
plugin => {
safe => 1,
rebuild => 1,
},
}
sub pagetemplate (@) {
my %params=@_;
my $template=$params{template};
if ($config{rcs} && exists $params{rev} && length $params{rev} &&
$template->query(name => "diff")) {
my @lines=IkiWiki::rcs_diff($params{rev}, $maxlines+1);
if (@lines) {
my $diff;
my $trunc=0;
if (@lines > $maxlines) {
$diff=join("", @lines[0..($maxlines-1)]);
$trunc=1;
}
else {
$diff=join("", @lines);
}
if (length $diff > 102400) {
$diff=substr($diff, 0, 10240);
$trunc=1;
}
if ($trunc) {
$diff.="\n".gettext("(Diff truncated)");
}
# escape html
$diff = encode_entities($diff);
# escape links and preprocessor stuff
$diff = encode_entities($diff, '\[\]');
$template->param(diff => $diff);
}
}
}
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
|