comparison templates/minimal/config.py @ 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 c40ed9113285
children cc4667ef3f12
comparison
equal deleted inserted replaced
2033:d11ba8f375cb 2034:be047db3dd3d
13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17 # 17 #
18 # $Id: config.py,v 1.3 2003-12-06 00:00:54 richard Exp $ 18 # $Id: config.py,v 1.4 2004-02-23 05:29:06 richard Exp $
19 19
20 import os 20 import os
21 21
22 # roundup home is this package's directory 22 # roundup home is this package's directory
23 TRACKER_HOME=os.path.split(__file__)[0] 23 TRACKER_HOME=os.path.split(__file__)[0]
113 # HTML version to generate. The templates are html4 by default. If you 113 # HTML version to generate. The templates are html4 by default. If you
114 # wish to make them xhtml, then you'll need to change this var to 'xhtml' 114 # wish to make them xhtml, then you'll need to change this var to 'xhtml'
115 # too so all auto-generated HTML is compliant. 115 # too so all auto-generated HTML is compliant.
116 HTML_VERSION = 'html4' # either 'html4' or 'xhtml' 116 HTML_VERSION = 'html4' # either 'html4' or 'xhtml'
117 117
118 # Character set to encode email headers with. We use utf-8 by default, as
119 # it's the most flexible. Some mail readers (eg. Eudora) can't cope with
120 # that, so you might need to specify a more limited character set (eg.
121 # 'iso-8859-1'.
122 EMAIL_CHARSET = 'utf-8'
123 #EMAIL_CHARSET = 'iso-8859-1' # use this instead for Eudora users
124
118 # vim: set filetype=python ts=4 sw=4 et si 125 # vim: set filetype=python ts=4 sw=4 et si

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