basically, removal works

Still need to consider all the edge cases..
master
Joey Hess 2008-07-21 13:50:12 -04:00
parent c6d1ae33d2
commit c924c76bd8
2 changed files with 18 additions and 2 deletions

View File

@ -106,7 +106,23 @@ sub sessioncgi ($$) { #{{{
exit 0;
}
elsif ($form->submitted eq 'Remove' && $form->validate) {
error("removal not yet implemented"); # TODO
my $page=IkiWiki::titlepage($form->field("page"));
my $file=$pagesources{$page};
# Do removal, and update the wiki.
require IkiWiki::Render;
if ($config{rcs}) {
IkiWiki::rcs_remove($file);
IkiWiki::disable_commit_hook();
IkiWiki::rcs_commit($file, gettext("removed"),
IkiWiki::rcs_prepedit($file),
$session->param("name"), $ENV{REMOTE_ADDR});
IkiWiki::enable_commit_hook();
IkiWiki::rcs_update();
}
IkiWiki::prune("$config{srcdir}/$file");
IkiWiki::refresh();
IkiWiki::saveindex();
}
else {
IkiWiki::showform($form, $buttons, $session, $q);

2
debian/changelog vendored
View File

@ -3,7 +3,7 @@ ikiwiki (2.55) UNRELEASED; urgency=low
* prefix_directives enabled in doc wiki, all preprocessor directives
converted. (Simon McVittie)
* editpage: Don't show attachments link when attachments are disabled.
* All rcs backends need to implement rcs_rm. (Done for svn, git).
* All rcs backends need to implement rcs_remove. (Done for svn, git).
-- Joey Hess <joeyh@debian.org> Mon, 21 Jul 2008 11:35:46 -0400