changeset 1386:7ca01821df2c

notes about upgrading to unicode
author Andrey Lebedev <kedder@users.sourceforge.net>
date Sun, 19 Jan 2003 16:15:38 +0000
parents 2bd4822f96a6
children e975db910d9f
files doc/upgrading.txt
diffstat 1 files changed, 20 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/doc/upgrading.txt	Wed Jan 15 22:39:07 2003 +0000
+++ b/doc/upgrading.txt	Sun Jan 19 16:15:38 2003 +0000
@@ -12,6 +12,26 @@
 
 - Introduced EMAIL_FROM_TAG config variable.
 
+- Added internationalization support. This is done via encoding all data
+  stored in roundup database to utf-8 (unicode encoding). To support utf-8 in
+  web interface you should add the folowing line to your tracker's html/page
+  and html/_generic.help files inside <head> tag:
+  
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+
+  Sinse latin characters in utf-8 has the same codes as in ASCII table, this
+  modification is optional for users who use only plain latin characters. 
+
+  After this modification, you will be able to see and enter any world
+  character via web interface. Data received via mail interface also converted
+  to utf-8, however only new messages will be converted. If your roundup
+  database contains some of non-ASCII characters in one of 8-bit encoding,
+  they will not be visible in new unicode environment. Some of such data (e.g.
+  user names, keywords, etc)  can be edited by administrator, the others
+  (e.g. messages' contents) is not editable via web interface. Currently there
+  is no tool for converting such data, the only solution is to close
+  appropriate old issues and create new ones with the same content.
+
 
 Migrating from 0.4.x to 0.5.0
 =============================

Roundup Issue Tracker: http://roundup-tracker.org/