+
+ # This attempts to reproduce the bug from
+ # doc/bugs/About___37__2F_problem, in which you can't make new posts
+ # to a blog with a non-ASCII rootpage.
+ $content = readfile('t/tmp/out/writable/__172__blog/index.html');
+ like($content, qr{<input type="hidden" name="from" value="writable/¬blog"});
+ TODO: {
+ local $TODO = 'doc/bugs/About___37__2F_problem';
+ $content = run_cgi(method => 'get',
+ params => {
+ do => 'blog',
+ from => 'writable/¬blog',
+ subpage => '1',
+ title => 'hello',
+ },
+ );
+ like($content, qr{<option selected="selected" value="writable/¬blog/hello">writable/¬blog/hello</option>});
+ unlike($content, qr{Error: bad page name});
+ }