comparison doc/customizing.txt @ 2034:be047db3dd3d

Eudora can't handle utf-8 headers. We love Eudora. [SF#900046]
author Richard Jones <richard@users.sourceforge.net>
date Mon, 23 Feb 2004 05:29:06 +0000
parents 31d920b31642
children f913b6beac35
comparison
equal deleted inserted replaced
2033:d11ba8f375cb 2034:be047db3dd3d
1 =================== 1 ===================
2 Customising Roundup 2 Customising Roundup
3 =================== 3 ===================
4 4
5 :Version: $Revision: 1.115 $ 5 :Version: $Revision: 1.116 $
6 6
7 .. This document borrows from the ZopeBook section on ZPT. The original is at: 7 .. This document borrows from the ZopeBook section on ZPT. The original is at:
8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx 8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
9 9
10 .. contents:: 10 .. contents::
185 **HTML_VERSION** - ``'html4'`` or ``'xhtml'`` 185 **HTML_VERSION** - ``'html4'`` or ``'xhtml'``
186 HTML version to generate. The templates are html4 by default. If you 186 HTML version to generate. The templates are html4 by default. If you
187 wish to make them xhtml, then you'll need to change this var to 'xhtml' 187 wish to make them xhtml, then you'll need to change this var to 'xhtml'
188 too so all auto-generated HTML is compliant. 188 too so all auto-generated HTML is compliant.
189 189
190 **EMAIL_CHARSET** - ``utf-8`` (or ``iso-8859-1`` for Eudora users)
191 Character set to encode email headers with. We use utf-8 by default, as
192 it's the most flexible. Some mail readers (eg. Eudora) can't cope with
193 that, so you might need to specify a more limited character set (eg.
194 'iso-8859-1'.
195
190 The default config.py is given below - as you 196 The default config.py is given below - as you
191 can see, the MAIL_DOMAIN must be edited before any interaction with the 197 can see, the MAIL_DOMAIN must be edited before any interaction with the
192 tracker is attempted.:: 198 tracker is attempted.::
193 199
194 # roundup home is this package's directory 200 # roundup home is this package's directory
264 270
265 # HTML version to generate. The templates are html4 by default. If you 271 # HTML version to generate. The templates are html4 by default. If you
266 # wish to make them xhtml, then you'll need to change this var to 'xhtml' 272 # wish to make them xhtml, then you'll need to change this var to 'xhtml'
267 # too so all auto-generated HTML is compliant. 273 # too so all auto-generated HTML is compliant.
268 HTML_VERSION = 'html4' # either 'html4' or 'xhtml' 274 HTML_VERSION = 'html4' # either 'html4' or 'xhtml'
275
276 # Character set to encode email headers with. We use utf-8 by default, as
277 # it's the most flexible. Some mail readers (eg. Eudora) can't cope with
278 # that, so you might need to specify a more limited character set (eg.
279 # 'iso-8859-1'.
280 EMAIL_CHARSET = 'utf-8'
281 #EMAIL_CHARSET = 'iso-8859-1' # use this instead for Eudora users
269 282
270 # 283 #
271 # SECURITY DEFINITIONS 284 # SECURITY DEFINITIONS
272 # 285 #
273 # define the Roles that a user gets when they register with the 286 # define the Roles that a user gets when they register with the

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