X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/d83d11e6b87e718872e72153ee6bb3a382615c25..7da319efc69089662f9635216bbcc48ca53fe606:/IkiWiki/Plugin/mirrorlist.pm diff --git a/IkiWiki/Plugin/mirrorlist.pm b/IkiWiki/Plugin/mirrorlist.pm index 104587f3a..b726386f6 100644 --- a/IkiWiki/Plugin/mirrorlist.pm +++ b/IkiWiki/Plugin/mirrorlist.pm @@ -3,33 +3,52 @@ package IkiWiki::Plugin::mirrorlist; use warnings; use strict; -use IkiWiki; +use IkiWiki 2.00; -sub import { #{{{ +sub import { + hook(type => "getsetup", id => "mirrorlist", call => \&getsetup); hook(type => "pagetemplate", id => "mirrorlist", call => \&pagetemplate); -} # }}} +} -sub pagetemplate (@) { #{{{ +sub getsetup () { + return + plugin => { + safe => 1, + rebuild => 1, + }, + mirrorlist => { + type => "string", + example => {}, + description => "list of mirrors", + safe => 1, + rebuild => 1, + }, +} + +sub pagetemplate (@) { my %params=@_; my $template=$params{template}; - $template->param(extrafooter => mirrorlist($params{page})) - if $template->query(name => "extrafooter"); -} # }}} + if ($template->query(name => "extrafooter")) { + my $value=$template->param("extrafooter"); + $value.=mirrorlist($params{page}); + $template->param(extrafooter => $value); + } +} -sub mirrorlist ($) { #{{{ +sub mirrorlist ($) { my $page=shift; - return "

Mirror". - (keys %{$config{mirrorlist}} > 1 ? "s" : ""). + return "

". + (keys %{$config{mirrorlist}} > 1 ? gettext("Mirrors") : gettext("Mirror")). ": ". join(", ", map { qq{{$_}."/".urlto($page, ""). qq{">$_} } keys %{$config{mirrorlist}} ). "

"; -} # }}} +} 1