aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/rename.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-05-21 15:50:25 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-05-21 15:50:25 -0400
commit27193a2eeba3aa2f5ed8c0168f828149696b2b7f (patch)
treef8a1b89a9aab45e28e34c44bd226e08d7c733b73 /IkiWiki/Plugin/rename.pm
parent36dbd21be6384d187c40e6ae97ff7384461e3c7a (diff)
downloadikiwiki-27193a2eeba3aa2f5ed8c0168f828149696b2b7f.tar
ikiwiki-27193a2eeba3aa2f5ed8c0168f828149696b2b7f.tar.gz
support longname for page types in commands and rename
Also, sort the list of page types.
Diffstat (limited to 'IkiWiki/Plugin/rename.pm')
-rw-r--r--IkiWiki/Plugin/rename.pm8
1 files changed, 5 insertions, 3 deletions
diff --git a/IkiWiki/Plugin/rename.pm b/IkiWiki/Plugin/rename.pm
index 41af3ca4d..0b6e74705 100644
--- a/IkiWiki/Plugin/rename.pm
+++ b/IkiWiki/Plugin/rename.pm
@@ -116,14 +116,16 @@ sub rename_form ($$$) {
# insert the standard extensions
my @page_types;
if (exists $IkiWiki::hooks{htmlize}) {
- @page_types=grep { !/^_/ }
- keys %{$IkiWiki::hooks{htmlize}};
+ foreach my $key (grep { !/^_/ } keys %{$IkiWiki::hooks{htmlize}}) {
+ push @page_types, [$key, $IkiWiki::hooks{htmlize}{$key}{longname} || $key];
+ }
}
+ @page_types=sort @page_types;
# make sure the current extension is in the list
my ($ext) = $pagesources{$page}=~/\.([^.]+)$/;
if (! $IkiWiki::hooks{htmlize}{$ext}) {
- unshift(@page_types, $ext);
+ unshift(@page_types, [$ext, $ext]);
}
$f->field(name => "type", type => 'select',