Mercurial > p > roundup > code
comparison templates/classic/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.4 2003-12-06 00:00:54 richard Exp $ | 18 # $Id: config.py,v 1.5 2004-02-23 05:29:05 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] |
| 109 # HTML version to generate. The templates are html4 by default. If you | 109 # HTML version to generate. The templates are html4 by default. If you |
| 110 # wish to make them xhtml, then you'll need to change this var to 'xhtml' | 110 # wish to make them xhtml, then you'll need to change this var to 'xhtml' |
| 111 # too so all auto-generated HTML is compliant. | 111 # too so all auto-generated HTML is compliant. |
| 112 HTML_VERSION = 'html4' # either 'html4' or 'xhtml' | 112 HTML_VERSION = 'html4' # either 'html4' or 'xhtml' |
| 113 | 113 |
| 114 # Character set to encode email headers with. We use utf-8 by default, as | |
| 115 # it's the most flexible. Some mail readers (eg. Eudora) can't cope with | |
| 116 # that, so you might need to specify a more limited character set (eg. | |
| 117 # 'iso-8859-1'. | |
| 118 EMAIL_CHARSET = 'utf-8' | |
| 119 #EMAIL_CHARSET = 'iso-8859-1' # use this instead for Eudora users | |
| 120 | |
| 121 | |
| 114 # | 122 # |
| 115 # SECURITY DEFINITIONS | 123 # SECURITY DEFINITIONS |
| 116 # | 124 # |
| 117 # define the Roles that a user gets when they register with the tracker | 125 # define the Roles that a user gets when they register with the tracker |
| 118 # these are a comma-separated string of role names (e.g. 'Admin,User') | 126 # these are a comma-separated string of role names (e.g. 'Admin,User') |
