Use UTF8 for plain output.
Mon Sep 19 06:30:38 UTC 2005 Alberto Bertogli <albertogli@telpin.com.ar>
* Use UTF8 for plain output.
Make the plain outputs use UTF8 too, as it's the only sane option.
{
hunk ./darcsweb.cgi 365
- print "Content-type: text/plain\n"
+ print "Content-type: text/plain; charset=utf-8\n"
hunk ./darcsweb.cgi 1041
- sys.stdout.write(l)
+ sys.stdout.write(fixu8(l))
hunk ./darcsweb.cgi 1094
- sys.stdout.write(l)
+ sys.stdout.write(fixu8(l))
hunk ./darcsweb.cgi 1146
- sys.stdout.write(l)
+ sys.stdout.write(fixu8(l))
hunk ./darcsweb.cgi 1194
- sys.stdout.write(l)
+ sys.stdout.write(fixu8(l))
hunk ./darcsweb.cgi 1450
- sys.stdout.write(l)
+ sys.stdout.write(fixu8(l))
}