]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/Titles_are_lower-cased_when_creating_a_page.mdwn
(no commit message)
[ikiwiki.git] / doc / bugs / Titles_are_lower-cased_when_creating_a_page.mdwn
1 When you click on a broken link to create a new page, Ikiwiki lower-cases the new page's filename.  I wish it wouldn't.
2
3 If I click on "Czars in Russia", I'd like Ikiwiki to create "Czars\_in\_Russia.mdwn", not "czars\_in\_russia.mdwn".  Is this possible?  --[[sabr]]
4
5 > There's a simple patch that can do this:
6
7 > --- a/IkiWiki.pm
8 > +++ b/IkiWiki.pm
9 > @@ -584,7 +584,7 @@ sub htmllink ($$$;@) { #{{{
10 >                       return "<span class=\"createlink\"><a href=\"".
11 >                               cgiurl(
12 >                                       do => "create",
13 > -                                     page => pagetitle(lc($link), 1),
14 > +                                     page => pagetitle($link, 1),
15 >                                       from => $lpage
16 >                               ).
17 >                               "\">?</a>$linktext</span>"
18
19 > This is fine if you don't mind mixed or randomly cased filenames getting
20 > created. Otoh, if the link happened to start a sentence and so had its
21 > first letter upper-cased, that might not be desired.
22
23 > Of course ikiwiki's case insensative, and there are other ways
24 > of creating pages that don't lower case them, including using the create
25 > a page form on a blog (as was done for this page..).
26
27 > I'm undecided about making the above change by default though, or about making
28 > it a config option. Maybe it would be better to include both capitalisations
29 > in the select list that is used to pick the name for the newly created page.
30 > Then, which one is the default wouldn't much matter. (The non-lower cased
31 > one would probably be the best choice.) --[[Joey]]
32 >> Either of your proposed solutions (make it the default or include both in the pop-up menu) sounds fine to me.  Which one is easier? :) --[[sabr]]