return $f, ["Rename", "Cancel"];
} #}}}
-sub rename_start ($$$$) {
+sub rename_start ($$$$) { #{{{
my $q=shift;
my $session=shift;
my $attachment=shift;
IkiWiki::showform($f, $buttons, $session, $q);
exit 0;
-}
+} #}}}
-sub postrename ($;$$) {
+sub postrename ($;$$$) { #{{{
my $session=shift;
+ my $src=shift;
my $dest=shift;
my $attachment=shift;
$session->clear("postrename");
IkiWiki::cgi_savesession($session);
- if (defined $dest && ! $attachment) {
- # They renamed the page they were editing. This requires
- # fixups to the edit form state.
- # Tweak the edit form to be editing the new page.
- $postrename->param("page", $dest);
- }
+ if (defined $dest) {
+ if (! $attachment) {
+ # They renamed the page they were editing. This requires
+ # fixups to the edit form state.
+ # Tweak the edit form to be editing the new page.
+ $postrename->param("page", $dest);
+ }
+
+ # Update edit form content to fix any links present
+ # on it.
+ $postrename->param("editcontent",
+ renamepage_hook($dest, $src, $dest,
+ $postrename->param("editcontent")));
- # Get a new edit token; old likely not valid.
- $postrename->param("rcsinfo", IkiWiki::rcs_prepedit($pagesources{$dest}));
+ # Get a new edit token; old was likely invalidated.
+ $postrename->param("rcsinfo",
+ IkiWiki::rcs_prepedit($pagesources{$dest}));
+ }
IkiWiki::cgi_editpage($postrename, $session);
-}
+} #}}}
sub formbuilder (@) { #{{{
my %params=@_;
my $bestlink=bestlink($page, $link);
if ($bestlink eq $src) {
$needfix=1;
+ last;
}
}
if ($needfix) {
# Scan for any remaining broken links to $src.
my @brokenlinks;
foreach my $page (keys %links) {
+ my $broken=0;
foreach my $link (@{$links{$page}}) {
my $bestlink=bestlink($page, $link);
if ($bestlink eq $src) {
- push @brokenlinks, $page;
+ $broken=1;
+ last;
}
}
+ push @brokenlinks, $page if $broken;
}
# Generate a rename summary, that will be shown at the top
]);
$renamesummary=$template->output;
- postrename($session, $dest, $q->param("attachment"));
+ postrename($session, $src, $dest, $q->param("attachment"));
}
else {
IkiWiki::showform($form, $buttons, $session, $q);