https://bugzilla.wikimedia.org/show_bug.cgi?id=28722
--- Comment #2 from Brion Vibber <[email protected]> 2011-04-27 19:01:44 UTC --- Changing case and normalizing series of spaces are part of title normalization -- not URL encoding. Depending on the site configuration, 'union' and 'Union' may refer to the same or to different articles, so they must not be encoded the same. To match wfUrlEncode() however, the treatment of some not-100%-reserved chars should be changed to match. wikiUrlencode currently attempts to specifically ensure that ':' and '/' are included raw, but none of the others. To match wfUrlEncode, should ensure that these are all left as-is: ';', '@', '$', '!', '*', '(', ')', ',', '/', ':' -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
