From 43a1d36378c085ed9c71e066686907104c91da7e Mon Sep 17 00:00:00 2001 From: intrigeri Date: Tue, 11 Nov 2008 15:27:39 +0100 Subject: po: added HOMEPAGEURL template variable, documented when to use it Hopefully all links should now be consistent with the chosen linking behavior, but who knows... Signed-off-by: intrigeri --- IkiWiki/Plugin/po.pm | 8 ++++++++ doc/plugins/po.mdwn | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index 42a125808..739564c6b 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -285,6 +285,9 @@ sub pagetemplate (@) { #{{{ if ($template->query(name => "istranslatable")) { $template->param(istranslatable => istranslatable($page)); } + if ($template->query(name => "HOMEPAGEURL")) { + $template->param(homepageurl => homepageurl($page)); + } if ($template->query(name => "otherlanguages")) { $template->param(otherlanguages => [otherlanguagesloop($page)]); map add_depends($page, $_), (values %{otherlanguages($page)}); @@ -705,6 +708,11 @@ sub otherlanguagesloop ($) { #{{{ } @ret; } #}}} +sub homepageurl (;$) { #{{{ + my $page=shift; + + return urlto('', $page); +} #}}} # ,---- # | PageSpec's diff --git a/doc/plugins/po.mdwn b/doc/plugins/po.mdwn index 2f359bb83..d27b5af1d 100644 --- a/doc/plugins/po.mdwn +++ b/doc/plugins/po.mdwn @@ -129,6 +129,10 @@ Usage Templates --------- +When `po_link_to` is not set to `negotiated`, one should replace some +occurrences of `BASEURL` with `HOMEPAGEURL` to get correct links to +the wiki homepage. + The `ISTRANSLATION` and `ISTRANSLATABLE` variables can be used to display things only on translatable or translation pages. -- cgit v1.2.3