comparison doc/upgrading.txt @ 1388:cd28e3b5db2e

small cleanup, more info on config changes
author Richard Jones <richard@users.sourceforge.net>
date Sun, 19 Jan 2003 23:15:04 +0000
parents 7ca01821df2c
children 27586da5557c
comparison
equal deleted inserted replaced
1387:e975db910d9f 1388:cd28e3b5db2e
8 .. contents:: 8 .. contents::
9 9
10 Migrating from 0.5 to 0.6 10 Migrating from 0.5 to 0.6
11 ========================= 11 =========================
12 12
13 - Introduced EMAIL_FROM_TAG config variable. 13 0.6.0 Configuration
14 -------------------
15
16 - Introduced EMAIL_FROM_TAG config variable. This value is inserted into
17 the From: line of nosy email. If the sending user is "Foo Bar", the
18 From: line is usually::
19
20 "Foo Bar" <issue_tracker@tracker.example>
21
22 the EMAIL_FROM_TAG goes inside the "Foo Bar" quotes like so::
23
24 "Foo Bar EMAIL_FROM_TAG" <issue_tracker@tracker.example>
25
26 0.6.0 Multilingual character set support
27 ----------------------------------------
14 28
15 - Added internationalization support. This is done via encoding all data 29 - Added internationalization support. This is done via encoding all data
16 stored in roundup database to utf-8 (unicode encoding). To support utf-8 in 30 stored in roundup database to utf-8 (unicode encoding). To support utf-8 in
17 web interface you should add the folowing line to your tracker's html/page 31 web interface you should add the folowing line to your tracker's html/page
18 and html/_generic.help files inside <head> tag: 32 and html/_generic.help files inside <head> tag::
19 33
20 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 34 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
21 35
22 Sinse latin characters in utf-8 has the same codes as in ASCII table, this 36 Since latin characters in utf-8 has the same codes as in ASCII table, this
23 modification is optional for users who use only plain latin characters. 37 modification is optional for users who use only plain latin characters.
24 38
25 After this modification, you will be able to see and enter any world 39 After this modification, you will be able to see and enter any world
26 character via web interface. Data received via mail interface also converted 40 character via web interface. Data received via mail interface also converted
27 to utf-8, however only new messages will be converted. If your roundup 41 to utf-8, however only new messages will be converted. If your roundup

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