diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-01-29 01:03:15 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-01-29 01:03:15 -0500 |
commit | d2a369537688d31884a2a90886768dfc90b8d706 (patch) | |
tree | 585a1d79ae966739517d7463612192189429edd1 | |
parent | d7fdd04b5a113b6dded40cb79b670b16570c11b3 (diff) |
some parameteraisation and generalisation
-rw-r--r-- | IkiWiki/Plugin/recentchanges.pm | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/IkiWiki/Plugin/recentchanges.pm b/IkiWiki/Plugin/recentchanges.pm index 94a2d4c33..6b36ea4c8 100644 --- a/IkiWiki/Plugin/recentchanges.pm +++ b/IkiWiki/Plugin/recentchanges.pm @@ -17,7 +17,8 @@ sub import { #{{{ } #}}} sub checkconfig () { #{{{ - updatechanges(); + my @changes=IkiWiki::rcs_recentchanges(100); + updatechanges("*", "recentchanges", \@changes); } #}}} sub needsbuild () { #{{{ @@ -45,7 +46,7 @@ sub store ($$) { #{{{ 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. @@ -67,24 +68,28 @@ sub store ($$) { #{{{ push @{$change->{pages}}, { link => '...' } if $is_excess; # 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( + user => IkiWiki::userlink($change->{user}), + when => IkiWiki::displaytime($change->{when}, "%X %x"), + pages => $change->{pages}, + message => $change->{message}, + ); $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 } #}}} |