case preservation

master
Joey Hess 2008-07-23 18:57:27 -04:00
parent 4691a2ad39
commit 8b063a24d9
2 changed files with 13 additions and 6 deletions

View File

@ -11,6 +11,7 @@ sub import { #{{{
hook(type => "checkconfig", id => "link", call => \&checkconfig); hook(type => "checkconfig", id => "link", call => \&checkconfig);
hook(type => "linkify", id => "link", call => \&linkify); hook(type => "linkify", id => "link", call => \&linkify);
hook(type => "scan", id => "link", call => \&scan); hook(type => "scan", id => "link", call => \&scan);
hook(type => "renamepage", id => "link", call => \&renamepage);
} # }}} } # }}}
sub checkconfig () { #{{{ sub checkconfig () { #{{{
@ -87,13 +88,17 @@ sub renamepage (@) { #{{{
my $new=$params{newpage}; my $new=$params{newpage};
$params{content} =~ s{(?<!\\)$link_regexp}{ $params{content} =~ s{(?<!\\)$link_regexp}{
my $link=$2; my $linktext=$2;
my $link=$linktext;
if (bestlink($page, $2) eq $old) { if (bestlink($page, $2) eq $old) {
if (index($2, "/") == 0) { $link=$new;
$link="/$new"; if ($linktext =~ m/\/*?[A-Z]/) {
# preserve leading cap
$link=ucfirst($link);
} }
else { if (index($linktext, "/") == 0) {
$link=$new; # absolute link
$link="/$link";
} }
} }
defined $1 defined $1

View File

@ -1,7 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
use warnings; use warnings;
use strict; use strict;
use Test::More tests => 11; use Test::More tests => 14;
use Encode; use Encode;
BEGIN { use_ok("IkiWiki"); } BEGIN { use_ok("IkiWiki"); }
@ -34,6 +34,8 @@ is(try("z", "foo" => "bar", "[[xxx]]"), "[[xxx]]"); # unrelated link
is(try("z", "foo" => "bar", "[[bar]]"), "[[bar]]"); # link already to new page is(try("z", "foo" => "bar", "[[bar]]"), "[[bar]]"); # link already to new page
is(try("z", "foo" => "bar", "[[foo]]"), "[[bar]]"); # basic conversion to new page name is(try("z", "foo" => "bar", "[[foo]]"), "[[bar]]"); # basic conversion to new page name
is(try("z", "foo" => "bar", "[[/foo]]"), "[[/bar]]"); # absolute link is(try("z", "foo" => "bar", "[[/foo]]"), "[[/bar]]"); # absolute link
is(try("z", "foo" => "bar", "[[Foo]]"), "[[Bar]]"); # preserve case
is(try("z", "foo" => "bar", "[[/Foo]]"), "[[/Bar]]"); # preserve case w/absolute
is(try("z", "foo" => "bar", "[[foo]] [[xxx]]"), "[[bar]] [[xxx]]"); # 2 links, 1 converted is(try("z", "foo" => "bar", "[[foo]] [[xxx]]"), "[[bar]] [[xxx]]"); # 2 links, 1 converted
is(try("z", "foo" => "bar", "[[xxx|foo]]"), "[[xxx|bar]]"); # conversion w/text is(try("z", "foo" => "bar", "[[xxx|foo]]"), "[[xxx|bar]]"); # conversion w/text
is(try("z", "foo" => "bar", "[[foo#anchor]]"), "[[bar#anchor]]"); # with anchor is(try("z", "foo" => "bar", "[[foo#anchor]]"), "[[bar#anchor]]"); # with anchor