} #}}}
sub checkconfig () { #{{{
- updatechanges();
+ my @changes=IkiWiki::rcs_recentchanges(100);
+ updatechanges("*", "recentchanges", \@changes);
} #}}}
sub needsbuild () { #{{{
my $page="$subdir/change_".IkiWiki::titlepage($change->{rev});
# Optimisation to avoid re-writing pages. Assumes commits never
- # change, or that any changes are not important.
+ # change (or that any changes are not important).
return if exists $pagesources{$page} && ! $config{rebuild};
# Limit pages to first 10, and add links to the changed pages.
];
push @{$change->{pages}}, { link => '...' } if $is_excess;
+ # Take the first line of the commit message as a summary.
+ #my $m=shift @{$change->{message}};
+ #$change->{summary}=$m->{line};
+ #delete $change->{message} unless @{$change->{message}};
+
+ # See if the committer is an openid.
+ my $oiduser=IkiWiki::openiduser($change->{user});
+ if (defined $oiduser) {
+ $change->{authorurl}=$change->{user};
+ $change->{user}=$oiduser;
+ }
+ elsif (length $config{url}) {
+ $change->{authorurl}="$config{url}/".
+ (length $config{userdir} ? "$config{userdir}/" : "").
+ $change->{user};
+ }
+
# Fill out a template with the change info.
- $change->{user} = IkiWiki::userlink($change->{user});
- my $ctime=$change->{when};
- $change->{when} = IkiWiki::displaytime($change->{when}, "%X %x");
my $template=template("change.tmpl", blind_cache => 1);
- $template->param(%$change);
+ $template->param(
+ %$change,
+ commitdate => displaytime($change->{when}, "%X %x"),
+ wikiname => $config{wikiname},
+ );
$template->param(baseurl => "$config{url}/") if length $config{url};
IkiWiki::run_hooks(pagetemplate => sub {
shift->(page => $page, destpage => $page, template => $template);
});
writefile($page."._change", $config{srcdir}, $template->output);
- utime $ctime, $ctime, "$config{srcdir}/$page._change";
+ utime $change->{when}, $change->{when}, "$config{srcdir}/$page._change";
} #}}}
-sub updatechanges () { #{{{
- my @changelog=IkiWiki::rcs_recentchanges(100);
- foreach my $change (@changelog) {
- store($change, "recentchanges");
+sub updatechanges ($$) { #{{{
+ my $pagespec=shift;
+ my $subdir=shift;
+ my @changes=@{shift()};
+ foreach my $change (@changes) {
+ store($change, $subdir);
}
# TODO: delete old
} #}}}