X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/d39717a1cb395a45bb794c8141f1ef29f9a00705..af63a2ebff201be7173a296aeabfc2713461c543:/IkiWiki/Plugin/meta.pm?ds=sidebyside
diff --git a/IkiWiki/Plugin/meta.pm b/IkiWiki/Plugin/meta.pm
index 9b026fffa..d624757ba 100644
--- a/IkiWiki/Plugin/meta.pm
+++ b/IkiWiki/Plugin/meta.pm
@@ -13,12 +13,9 @@ my %author;
my %authorurl;
sub import { #{{{
- IkiWiki::hook(type => "preprocess", id => "meta",
- call => \&preprocess);
- IkiWiki::hook(type => "filter", id => "meta",
- call => \&filter);
- IkiWiki::hook(type => "pagetemplate", id => "meta",
- call => \&pagetemplate);
+ hook(type => "preprocess", id => "meta", call => \&preprocess, scan => 1);
+ hook(type => "filter", id => "meta", call => \&filter);
+ hook(type => "pagetemplate", id => "meta", call => \&pagetemplate);
} # }}}
sub filter (@) { #{{{
@@ -40,6 +37,7 @@ sub preprocess (@) { #{{{
my $page=$params{page};
delete $params{page};
delete $params{destpage};
+ delete $params{preview};
eval q{use HTML::Entities};
# Always dencode, even if encoding later, since it might not be
@@ -54,7 +52,7 @@ sub preprocess (@) { #{{{
}
else {
# hidden WikiLink
- push @{$IkiWiki::links{$page}}, $value;
+ push @{$links{$page}}, $value;
}
}
elsif ($key eq 'title') {
@@ -64,6 +62,13 @@ sub preprocess (@) { #{{{
$permalink{$page}=$value;
$meta{$page}.="\n";
}
+ elsif ($key eq 'date') {
+ eval q{use Date::Parse};
+ if (! $@) {
+ my $time = str2time($value);
+ $IkiWiki::pagectime{$page}=$time if defined $time;
+ }
+ }
else {
$meta{$page}.="\n";