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
|
#!/usr/bin/perl
package IkiWiki::Plugin::more;
use warnings;
use strict;
use IkiWiki 3.00;
my $linktext = gettext("more");
sub import {
hook(type => "getsetup", id => "more", call => \&getsetup);
hook(type => "preprocess", id => "more", call => \&preprocess);
}
sub getsetup () {
return
plugin => {
safe => 1,
rebuild => undef,
section => "widget",
},
}
sub preprocess (@) {
my %params=@_;
$params{linktext} = $linktext unless defined $params{linktext};
if ($params{page} ne $params{destpage} &&
(! exists $params{pages} ||
pagespec_match($params{destpage}, $params{pages},
location => $params{page}))) {
return "\n".
htmllink($params{page}, $params{destpage}, $params{page},
linktext => $params{linktext},
anchor => "more");
}
else {
return "<a name=\"more\"></a>\n\n".
IkiWiki::preprocess($params{page}, $params{destpage},
$params{text});
}
}
1
|