Mercurial > p > roundup > code
comparison templates/minimal/config.py @ 2149:702f9a6afdcf
Added DEFAULT_TIMEZONE. Fixed up some missing info from What's New.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 26 Mar 2004 23:45:34 +0000 |
| parents | cc4667ef3f12 |
| children | fa50e1347397 cc3726fc8830 |
comparison
equal
deleted
inserted
replaced
| 2148:2490d26c88df | 2149:702f9a6afdcf |
|---|---|
| 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.5 2004-03-25 19:27:15 eparker Exp $ | 18 # $Id: config.py,v 1.6 2004-03-26 23:45:34 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] |
| 129 # that, so you might need to specify a more limited character set (eg. | 129 # that, so you might need to specify a more limited character set (eg. |
| 130 # 'iso-8859-1'. | 130 # 'iso-8859-1'. |
| 131 EMAIL_CHARSET = 'utf-8' | 131 EMAIL_CHARSET = 'utf-8' |
| 132 #EMAIL_CHARSET = 'iso-8859-1' # use this instead for Eudora users | 132 #EMAIL_CHARSET = 'iso-8859-1' # use this instead for Eudora users |
| 133 | 133 |
| 134 # You may specify a different default timezone, for use when users do not | |
| 135 # choose their own in their settings. | |
| 136 DEFAULT_TIMEZONE = 0 # specify as numeric hour offest | |
| 137 | |
| 134 # vim: set filetype=python ts=4 sw=4 et si | 138 # vim: set filetype=python ts=4 sw=4 et si |
