From: joey Date: Sat, 15 Sep 2007 00:23:08 +0000 (+0000) Subject: bugfixes X-Git-Tag: 2.8~5 X-Git-Url: http://git.tremily.us/?p=ikiwiki.git;a=commitdiff_plain;h=9dc796737f2845c143a91a949ab1ea4526a2a1da bugfixes --- diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm index 273be135a..938a28e59 100644 --- a/IkiWiki/Plugin/meta.pm +++ b/IkiWiki/Plugin/meta.pm @@ -47,7 +47,6 @@ sub preprocess (@) { #{{{ delete $params{$key}; my $page=$params{page}; delete $params{page}; - my $destpage=$params{destpage}; delete $params{destpage}; delete $params{preview}; @@ -105,11 +104,11 @@ sub preprocess (@) { #{{{ } elsif ($key eq 'license') { $meta{$page}.="\n"; - $license{$page}=IkiWiki::linkify($page, $destpage, $value); + $license{$page}=$value; } elsif ($key eq 'copyright') { $meta{$page}.="\n"; - $copyright{$page}=IkiWiki::linkify($page, $destpage, $value); + $copyright{$page}=$value; } else { $meta{$page}.=scrub("query(name => "author"); $template->param(authorurl => $authorurl{$page}) if exists $authorurl{$page} && $template->query(name => "authorurl"); + + if ($page ne $destpage && + ((exists $license{$page} && ! exists $license{$destpage}) || + (exists $copyright{$page} && ! exists $copyright{$destpage}))) { + # Force a scan of the destpage to get its copyright/license + # info. If the info is declared after an inline, it will + # otherwise not be available at this point. + IkiWiki::scan($pagesources{$destpage}); + } if (exists $license{$page} && $template->query(name => "license") && - ($page ne $destpage || ! exists $license{$destpage} || - $license{$page} ne $license{$destpage})) { - $template->param(license => $license{$page}) + ($page eq $destpage || ! exists $license{$destpage} || + $license{$page} ne $license{$destpage})) { + $template->param(license => IkiWiki::linkify($page, $destpage, $license{$page})); } if (exists $copyright{$page} && $template->query(name => "copyright") && - ($page ne $destpage || ! exists $copyright{$destpage} || - $copyright{$page} ne $copyright{$destpage})) { - $template->param(copyright => $copyright{$page}) + ($page eq $destpage || ! exists $copyright{$destpage} || + $copyright{$page} ne $copyright{$destpage})) { + $template->param(copyright => IkiWiki::linkify($page, $destpage, $copyright{$page})); } } # }}} diff --git a/po/ikiwiki.pot b/po/ikiwiki.pot index baa053426..2005a9f51 100644 --- a/po/ikiwiki.pot +++ b/po/ikiwiki.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-09-14 14:10-0400\n" +"POT-Creation-Date: 2007-09-14 20:21-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -213,7 +213,7 @@ msgstr "" msgid "failed to load Markdown.pm perl module (%s) or /usr/bin/markdown (%s)" msgstr "" -#: ../IkiWiki/Plugin/meta.pm:92 +#: ../IkiWiki/Plugin/meta.pm:90 msgid "stylesheet not found" msgstr "" diff --git a/templates/inlinepage.tmpl b/templates/inlinepage.tmpl index 17043b608..ad5e15425 100644 --- a/templates/inlinepage.tmpl +++ b/templates/inlinepage.tmpl @@ -32,14 +32,12 @@ Tags:
- License: