diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-02-20 23:56:55 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-02-20 23:56:55 +0000 |
commit | a28f028ed48d2f4d37a5ba7a2b53c33a3f604e09 (patch) | |
tree | 65d597f8c203b6c4e28033054bac68ed3ec446a1 /doc/patchqueue | |
parent | d0804acdc2974541bdb15558adf26f2d3dc81818 (diff) | |
download | ikiwiki-a28f028ed48d2f4d37a5ba7a2b53c33a3f604e09.tar ikiwiki-a28f028ed48d2f4d37a5ba7a2b53c33a3f604e09.tar.gz |
web commit by http://ethan.betacantrips.com/: new patch for user-friendliness
Diffstat (limited to 'doc/patchqueue')
-rw-r--r-- | doc/patchqueue/friendly_pagelocs.mdwn | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/patchqueue/friendly_pagelocs.mdwn b/doc/patchqueue/friendly_pagelocs.mdwn new file mode 100644 index 000000000..2fbfbf51d --- /dev/null +++ b/doc/patchqueue/friendly_pagelocs.mdwn @@ -0,0 +1,27 @@ +When you create a new page, the choices for page location have underscores and +numbers in them to represent spaces and "special characters". This patch lets +ikiwiki display more user-friendly names. --Ethan + +<pre> +diff -urX ignorepats ikiwiki/IkiWiki/CGI.pm ikidev/IkiWiki/CGI.pm +--- ikiwiki/IkiWiki/CGI.pm 2007-02-14 18:17:12.000000000 -0800 ++++ ikidev/IkiWiki/CGI.pm 2007-02-20 15:54:13.761158000 -0800 +@@ -450,6 +450,8 @@ + map { check_canedit($_, $q, $session) } @page_locs; + } + ++ # don't escape (will be done by formbuilder) ++ my %loc_options = map { $_ => pagetitle($_, 1) } @editable_locs; + my @page_types; + if (exists $hooks{htmlize}) { + @page_types=keys %{$hooks{htmlize}}; +@@ -457,7 +459,7 @@ + + $form->tmpl_param("page_select", 1); + $form->field(name => "page", type => 'select', +- options => \@editable_locs, value => $best_loc); ++ options => \%loc_options, value => $best_loc); + $form->field(name => "type", type => 'select', + options => \@page_types); + $form->title(sprintf(gettext("creating %s"), pagetitle($page))); +</pre>
\ No newline at end of file |