Package: detox
Version: 1.2.0-1
Severity: wishlist
Tags: patch

Detox's system-wide config file /etc/detoxrc defines filter sequences
than can be used with the detox command-line tool. The default sequence
translates 8-bit ISO-8859-1 characters to "safe" ASCII characters. Using
ISO-8859-1 may not suit well for Debian because Debian's system-wide
locale uses UTF-8 encoding (since Etch). In detox it means that each
octet in UTF-8 multibyte characters are translated separately to "safe"
characters.

I suggest changing the default sequence so that it uses utf_8 table. See
the attached patch.
--- detox-1.2.0/detoxrc~        2006-07-03 19:45:54.000000000 +0300
+++ detox-1.2.0/detoxrc 2009-05-28 15:34:26.497832449 +0300
@@ -32,10 +32,10 @@
 #
 
 #
-# Basically just ISO8859_1
+# Basically just utf_8
 #
 sequence default {
-       iso8859_1;
+       utf_8;
        safe;
        wipeup;
 };

Reply via email to