diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-09-26 15:40:01 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-09-26 15:40:01 -0400 |
commit | 83429adf04b7a4e2f2a01de9c276d3160173fb8b (patch) | |
tree | 6deda90e6152c8f2cfb928f3c21f2162e74e6d04 /doc | |
parent | 1d12dfc57c1150f06a20bd47cd1151a31137289f (diff) |
decode utf-8 in recentchanges_link parameter
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/unicode_encoded_urls_and_recentchanges.mdwn | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/bugs/unicode_encoded_urls_and_recentchanges.mdwn b/doc/bugs/unicode_encoded_urls_and_recentchanges.mdwn index 704ee18cf..d8696cb4c 100644 --- a/doc/bugs/unicode_encoded_urls_and_recentchanges.mdwn +++ b/doc/bugs/unicode_encoded_urls_and_recentchanges.mdwn @@ -17,9 +17,19 @@ the problem can be shown with an auto-setup'd ikiwiki without cgi when manually >> same happens, by the way, when using meta-redir to a page with high bytes in >> the name.) >> +>>> The problem is that all cgi inputs have to be explicitly decoded to +>>> utf-8, which I've now done for `recentchange_link`. +>>> +>>> 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=./../รข/" /> +>> >> 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 >> changes in `parse_diff_tree`, but otherwise completely eliminate the >> problems with git escaping. >> +>>> If you would like to develop a patch to that effect, I'd be glad to +>>> drop the current nasty code. +>> >> --[[chrysn]] |