more destpage improvements
parent
dea23a1031
commit
22df49a2bf
|
@ -26,6 +26,7 @@ sub preprocess (@) { #{{{
|
||||||
delete $params{$key};
|
delete $params{$key};
|
||||||
my $page=$params{page};
|
my $page=$params{page};
|
||||||
delete $params{page};
|
delete $params{page};
|
||||||
|
delete $params{destpage};
|
||||||
|
|
||||||
eval q{use CGI 'escapeHTML'};
|
eval q{use CGI 'escapeHTML'};
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@ sub preprocess (@) { #{{{
|
||||||
my %params=@_;
|
my %params=@_;
|
||||||
my $page = $params{page};
|
my $page = $params{page};
|
||||||
delete $params{page};
|
delete $params{page};
|
||||||
|
delete $params{destpage};
|
||||||
|
|
||||||
$tags{$page} = [];
|
$tags{$page} = [];
|
||||||
foreach my $tag (keys %params) {
|
foreach my $tag (keys %params) {
|
||||||
|
|
|
@ -169,6 +169,20 @@ use the following hashes, using a page name as the key:
|
||||||
it is by using the IkiWiki::add_depends function, which takes as its
|
it is by using the IkiWiki::add_depends function, which takes as its
|
||||||
parameters the page name and a [[GlobList]] of dependencies to add.
|
parameters the page name and a [[GlobList]] of dependencies to add.
|
||||||
|
|
||||||
|
# A note on generating html links
|
||||||
|
|
||||||
|
Many plugins need to generate html links and add them to a page. This is
|
||||||
|
done by using the htmllink() function in ikiwiki. The usual way to call
|
||||||
|
htmlllink is: `htmllink($page, $page, $link)`
|
||||||
|
|
||||||
|
Why is $page repeated? Because if a page is inlined inside another, and a
|
||||||
|
link is placed on it, the right way to make that link is actually:
|
||||||
|
`htmllink($page, $destpage, $link)`
|
||||||
|
|
||||||
|
Here $destpage is the inlining page. A destpage parameter is passed to some
|
||||||
|
of the hook functions above; the ones that are not passed it are not used
|
||||||
|
during inlining and don't need to worry about this issue.
|
||||||
|
|
||||||
# RCS plugins
|
# RCS plugins
|
||||||
|
|
||||||
ikiwiki's support for revision control systems also uses pluggable perl
|
ikiwiki's support for revision control systems also uses pluggable perl
|
||||||
|
|
Loading…
Reference in New Issue