diff options
author | intrigeri <intrigeri@boum.org> | 2009-08-27 20:19:17 +0200 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-08-27 15:50:01 -0400 |
commit | f4583c1524ea1aab4ec1eb83a361355788b5b531 (patch) | |
tree | f3214d4960834ee00febca51cc8adcb37e25b9cb | |
parent | ffcd97ce52edd73f092d15aae89bbacad99b38b6 (diff) | |
download | ikiwiki-f4583c1524ea1aab4ec1eb83a361355788b5b531.tar ikiwiki-f4583c1524ea1aab4ec1eb83a361355788b5b531.tar.gz |
po: override the title template variable for coherent homepage titling
Signed-off-by: intrigeri <intrigeri@boum.org>
(cherry picked from commit 6c0f9c691c3df3a2ec30dec626c997623568a400)
-rw-r--r-- | IkiWiki/Plugin/po.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index 61f8db328..1b313a979 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -302,6 +302,9 @@ sub pagetemplate (@) { && $masterpage eq "index") { $template->param('parentlinks' => []); } + if (ishomepage($page) && $template->query(name => "title")) { + $template->param(title => $config{wikiname}); + } } # }}} # Add the renamed page translations to the list of to-be-renamed pages. @@ -957,6 +960,14 @@ sub homepageurl (;$) { return urlto('', $page); } +sub ishomepage ($) { + my $page = shift; + + return 1 if $page eq 'index'; + map { return 1 if $page eq 'index.'.$_ } keys %{$config{po_slave_languages}}; + return undef; +} + sub deletetranslations ($) { my $deletedmasterfile=shift; |