]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/bugs/unicode_encoded_urls_and_recentchanges.mdwn
Fix python proxy to not crash when fed unicode data in getstate and setstate.
[ikiwiki.git] / doc / bugs / unicode_encoded_urls_and_recentchanges.mdwn
index d8696cb4cf2e6af56db9b276c606b833d040dd0f..262aa24fce68f56ec77168f85299947f5eafdc8a 100644 (file)
@@ -2,7 +2,7 @@ it appears that unicode characters in the title that are unicode letters are spa
 
 > Filenames can have any alphanumerics in them without the __ escaping.
 > Your locale determines whether various unicode characters are considered
-> alphanumeric. In other words, it just looks at the [[:alpha:]] character
+> alphanumeric. In other words, it just looks at the \[[:alpha:]] character
 > class, whatever your locale defines it to be. --[[Joey]]
 
 this is not a problem per se, but (at least with git backend) the recent changes missinterpret the file name character set (it seems to read the filenames as latin1) and both display wrong titles and create broken links.
@@ -19,10 +19,13 @@ the problem can be shown with an auto-setup'd ikiwiki without cgi when manually
 >>
 >>> The problem is that all cgi inputs have to be explicitly decoded to
 >>> utf-8, which I've now done for `recentchange_link`.
+>>>> thanks a lot, i think that closed the bug.
 >>> 
 >>> I cannot, however, reproduce a problem with meta redir. Here it
 >>> generated the following html, which redirected the browser ok:
 >>>    <meta http-equiv="refresh" content="0; URL=./../รข/" />
+>>>> sorry, my fault -- it was the blank which needed to be replaced by an
+>>>> underscore, not the high byte character
 >>
 >> update: i've had a look at the git options; you could run git with '-z' (NUL
 >> termination) in the `git_commit_info` function; this would require some
@@ -31,5 +34,5 @@ the problem can be shown with an auto-setup'd ikiwiki without cgi when manually
 >> 
 >>> If you would like to develop a patch to that effect, I'd be glad to
 >>> drop the current nasty code.
->> 
->> --[[chrysn]]
+>>>> i'll have a look, but i'm afraid that's above my current perl skills.
+>>>> --[[chrysn]]