Mercurial > p > roundup > code
comparison templates/classic/config.py @ 2035:1d86402ce5e8 maint-0.6
merge from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Feb 2004 05:37:11 +0000 |
| parents | e109d59f232d |
| children |
comparison
equal
deleted
inserted
replaced
| 2029:39e8b9e24aff | 2035:1d86402ce5e8 |
|---|---|
| 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-04-24 07:19:59 richard Exp $ | 18 # $Id: config.py,v 1.3.2.1 2004-02-23 05:37:11 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] |
| 104 # subjects. To disable, comment out the variable below or leave it blank. | 104 # subjects. To disable, comment out the variable below or leave it blank. |
| 105 # Examples: | 105 # Examples: |
| 106 MAIL_DEFAULT_CLASS = 'issue' # use "issue" class by default | 106 MAIL_DEFAULT_CLASS = 'issue' # use "issue" class by default |
| 107 #MAIL_DEFAULT_CLASS = '' # disable (or just comment the var out) | 107 #MAIL_DEFAULT_CLASS = '' # disable (or just comment the var out) |
| 108 | 108 |
| 109 # Character set to encode email headers with. We use utf-8 by default, as | |
| 110 # it's the most flexible. Some mail readers (eg. Eudora) can't cope with | |
| 111 # that, so you might need to specify a more limited character set (eg. | |
| 112 # 'iso-8859-1'. | |
| 113 EMAIL_CHARSET = 'utf-8' | |
| 114 #EMAIL_CHARSET = 'iso-8859-1' # use this instead for Eudora users | |
| 115 | |
| 109 # | 116 # |
| 110 # SECURITY DEFINITIONS | 117 # SECURITY DEFINITIONS |
| 111 # | 118 # |
| 112 # define the Roles that a user gets when they register with the tracker | 119 # define the Roles that a user gets when they register with the tracker |
| 113 # these are a comma-separated string of role names (e.g. 'Admin,User') | 120 # these are a comma-separated string of role names (e.g. 'Admin,User') |
