Mercurial > p > roundup > code
comparison roundup/templates/classic/config.py @ 1320:3758a5af985f
Lots of little fixes in this update:
- fixed Date.local()
- email quoted text stripping is controllable again [SF#650742]
- extract attachment name from content-disposition if name missing [SF#637278]
- removed FILTER_POSITION from bundled configs
- reverse message listing in issue display (reversion of recent change)
- bad entries for multilink editing in cgi don't traceback now [SF#640310]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 10 Dec 2002 00:11:16 +0000 |
| parents | 0b44a351cf6d |
| children | 9371d34141bd |
comparison
equal
deleted
inserted
replaced
| 1319:f8cc0b724b28 | 1320:3758a5af985f |
|---|---|
| 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 2002-11-07 21:17:44 richard Exp $ | 18 # $Id: config.py,v 1.5 2002-12-10 00:11:16 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] |
| 44 # in a trailing forward slash "/" or your web interface will break! | 44 # in a trailing forward slash "/" or your web interface will break! |
| 45 TRACKER_WEB = 'http://your.tracker.url.example/' | 45 TRACKER_WEB = 'http://your.tracker.url.example/' |
| 46 | 46 |
| 47 # The email address that roundup will complain to if it runs into trouble | 47 # The email address that roundup will complain to if it runs into trouble |
| 48 ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN | 48 ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN |
| 49 | |
| 50 # Where to place the web filtering HTML on the index page | |
| 51 FILTER_POSITION = 'bottom' # one of 'top', 'bottom', 'top and bottom' | |
| 52 | 49 |
| 53 # | 50 # |
| 54 # SECURITY DEFINITIONS | 51 # SECURITY DEFINITIONS |
| 55 # | 52 # |
| 56 # define the Roles that a user gets when they register with the tracker | 53 # define the Roles that a user gets when they register with the tracker |
