2 package IkiWiki::Plugin::recentchanges;
11 hook(type => "getsetup", id => "recentchanges", call => \&getsetup);
12 hook(type => "checkconfig", id => "recentchanges", call => \&checkconfig);
13 hook(type => "refresh", id => "recentchanges", call => \&refresh);
14 hook(type => "pagetemplate", id => "recentchanges", call => \&pagetemplate);
15 hook(type => "htmlize", id => "_change", call => \&htmlize);
16 # Load goto to fix up links from recentchanges
17 IkiWiki::loadplugin("goto");
26 recentchangespage => {
28 example => "recentchanges",
29 description => "name of the recentchanges page",
36 description => "number of changes to track",
43 $config{recentchangespage}='recentchanges' unless defined $config{recentchangespage};
44 $config{recentchangesnum}=100 unless defined $config{recentchangesnum};
51 foreach my $change (IkiWiki::rcs_recentchanges($config{recentchangesnum})) {
52 $seen{store($change, $config{recentchangespage})}=1;
55 # delete old and excess changes
56 foreach my $page (keys %pagesources) {
57 if ($pagesources{$page} =~ /\._change$/ && ! $seen{$page}) {
58 unlink($config{srcdir}.'/'.$pagesources{$page});
63 sub confirmation_form {
64 my ($q, $session, $rev) = @_;
66 eval q{use CGI::FormBuilder};
68 my $f = CGI::FormBuilder->new(
75 action => $config{cgiurl},
77 template => { template('revert.tmpl') },
80 $f->field(name => "sid", type => "hidden", value => $session->id,
82 $f->field(name => "do", type => "hidden", value => "revert", force => 1);
83 $f->field(name => "rev", type => "hidden", value => $rev, force => 1);
85 return $f, ["Revert", "Cancel"];
89 my ($q, $session) = @_;
90 my $do = $q->param('do');
91 my $rev = $q->param('rev');
93 return unless $do eq 'revert' && $rev;
95 # FIXME rcs_preprevert ??
96 IkiWiki::check_canedit('FIXME', $q, $session);
98 my ($form, $buttons) = confirmation_form($q, $session);
99 IkiWiki::decode_form_utf8($form);
101 if($form->submitted eq 'Revert' && $form->validate) {
102 IkiWiki::checksessionexpiry($q, $session, $q->param('sid'));
104 IkiWiki::disable_commit_hook();
105 my $r = IkiWiki::rcs_revert(
108 IkiWiki::enable_commit_hook();
111 die "FIXME revert '$rev' failed.";
114 IkiWiki::saveindex();
115 # FIXME indicate success.
118 $form->title(sprintf(gettext("confirm reversion of %s"), $rev));
119 my $patch_contents = IkiWiki::rcs_showpatch($rev);
120 $form->tmpl_param(patch_contents => encode_entities($patch_contents));
121 IkiWiki::showform($form, $buttons, $session, $q);
125 IkiWiki::redirect($q, urlto($config{recentchangespage}, ''));
129 # Enable the recentchanges link.
130 sub pagetemplate (@) {
132 my $template=$params{template};
133 my $page=$params{page};
135 if (defined $config{recentchangespage} && $config{rcs} &&
136 $template->query(name => "recentchangesurl") &&
137 $page ne $config{recentchangespage}) {
138 $template->param(recentchangesurl => urlto($config{recentchangespage}, $page));
139 $template->param(have_actions => 1);
143 # Pages with extension _change have plain html markup, pass through.
146 return $params{content};
152 my $page="$config{recentchangespage}/change_".titlepage($change->{rev});
154 # Optimisation to avoid re-writing pages. Assumes commits never
155 # change (or that any changes are not important).
156 return $page if exists $pagesources{$page} && ! $config{rebuild};
158 # Limit pages to first 10, and add links to the changed pages.
159 my $is_excess = exists $change->{pages}[10];
160 delete @{$change->{pages}}[10 .. @{$change->{pages}}] if $is_excess;
163 if (length $config{cgiurl}) {
164 $_->{link} = "<a href=\"".
169 "\" rel=\"nofollow\">".
170 pagetitle($_->{page}).
174 $_->{link} = pagetitle($_->{page});
176 $_->{baseurl}="$config{url}/" if length $config{url};
179 } @{$change->{pages}}
181 push @{$change->{pages}}, { link => '...' } if $is_excess;
183 $change->{author}=$change->{user};
184 my $oiduser=eval { IkiWiki::openiduser($change->{user}) };
185 if (defined $oiduser) {
186 $change->{authorurl}=$change->{user};
187 $change->{user}=defined $change->{nickname} ? $change->{nickname} : $oiduser;
189 elsif (length $config{cgiurl}) {
190 $change->{authorurl} = IkiWiki::cgiurl(
192 page => IkiWiki::userpage($change->{author}),
196 if (ref $change->{message}) {
197 foreach my $field (@{$change->{message}}) {
198 if (exists $field->{line}) {
200 $field->{line} = encode_entities($field->{line});
201 # escape links and preprocessor stuff
202 $field->{line} = encode_entities($field->{line}, '\[\]');
207 # Fill out a template with the change info.
208 my $template=template("change.tmpl", blind_cache => 1);
211 commitdate => displaytime($change->{when}, "%X %x"),
212 wikiname => $config{wikiname},
215 $template->param(permalink => "$config{url}/$config{recentchangespage}/#change-".titlepage($change->{rev}))
216 if exists $config{url};
218 IkiWiki::run_hooks(pagetemplate => sub {
219 shift->(page => $page, destpage => $page,
220 template => $template, rev => $change->{rev});
223 my $file=$page."._change";
224 writefile($file, $config{srcdir}, $template->output);
225 utime $change->{when}, $change->{when}, "$config{srcdir}/$file";