ikiwiki/IkiWiki/Plugin/mirrorlist.pm

36 lines
716 B
Perl
Raw Normal View History

2006-12-23 02:07:11 +01:00
#!/usr/bin/perl
package IkiWiki::Plugin::mirrorlist;
use warnings;
use strict;
use IkiWiki 2.00;
2006-12-23 02:07:11 +01:00
sub import { #{{{
hook(type => "pagetemplate", id => "mirrorlist", call => \&pagetemplate);
} # }}}
sub pagetemplate (@) { #{{{
my %params=@_;
my $template=$params{template};
$template->param(extrafooter => mirrorlist($params{page}))
if $template->query(name => "extrafooter");
} # }}}
sub mirrorlist ($) { #{{{
my $page=shift;
return "<p>".
(keys %{$config{mirrorlist}} > 1 ? gettext("Mirrors") : gettext("Mirror")).
2006-12-23 02:07:11 +01:00
": ".
join(", ",
map {
qq{<a href="}.
$config{mirrorlist}->{$_}."/".urlto($page, "").
2006-12-23 02:07:11 +01:00
qq{">$_</a>}
} keys %{$config{mirrorlist}}
).
"</p>";
} # }}}
1