1 When you create a new page, the choices for page location have underscores and
2 numbers in them to represent spaces and "special characters". This patch lets
3 ikiwiki display more user-friendly names. --Ethan
6 diff -urX ignorepats ikiwiki/IkiWiki/CGI.pm ikidev/IkiWiki/CGI.pm
7 --- ikiwiki/IkiWiki/CGI.pm 2007-02-14 18:17:12.000000000 -0800
8 +++ ikidev/IkiWiki/CGI.pm 2007-02-20 15:54:13.761158000 -0800
10 map { check_canedit($_, $q, $session) } @page_locs;
13 + # don't escape (will be done by formbuilder)
14 + my %loc_options = map { $_ => pagetitle($_, 1) } @editable_locs;
16 if (exists $hooks{htmlize}) {
17 @page_types=keys %{$hooks{htmlize}};
20 $form->tmpl_param("page_select", 1);
21 $form->field(name => "page", type => 'select',
22 - options => \@editable_locs, value => $best_loc);
23 + options => \%loc_options, value => $best_loc);
24 $form->field(name => "type", type => 'select',
25 options => \@page_types);
26 $form->title(sprintf(gettext("creating %s"), pagetitle($page)));