Attachment 'text_moin_wiki.py-OneLetterWikiWords-1.6.2.patch'
Download 1 --- text_moin_wiki.py.orig 2008-03-21 09:20:34.000000000 -0300
2 +++ text_moin_wiki.py 2008-03-28 16:03:38.000000000 -0300
3 @@ -89,7 +89,10 @@
4 )
5 (
6 ((?<!%(child)s)%(child)s)? # there might be / child prefix (but not if we already had it before)
7 - (?:[%(u)s][%(l)s]+){2,} # at least 2 upper>lower transitions make CamelCase
8 + ############# (?:[%(u)s][%(l)s]+){2,} # at least 2 upper>lower transitions make CamelCase
9 + ## Small modification to allow one letter words (not as the last word) -- MarianoAbsatz
10 + ## See: http://moinmo.in/4ct10n/info/FeatureRequests/OneLetterWordInWikiWords#WorkingPatch
11 + (?:[%(u)s]+[%(l)s]+){2,} # at least 2 upper>lower transitions make CamelCase
12 )+ # we can have MainPage/SubPage/SubSubPage ...
13 (?:
14 \# # anchor separator TODO check if this does not make trouble at places where word_rule is used
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.