|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
18 | | -# $Id: instance_config.py,v 1.19 2002-07-26 08:26:59 richard Exp $ |
| 18 | +# $Id: instance_config.py,v 1.20 2002-08-16 04:28:41 richard Exp $ |
19 | 19 |
|
20 | 20 | MAIL_DOMAIN=MAILHOST=HTTP_HOST=None |
21 | 21 | HTTP_PORT=0 |
|
38 | 38 | if not MAIL_DOMAIN: |
39 | 39 | MAIL_DOMAIN = 'your.tracker.email.domain.example' |
40 | 40 |
|
41 | | -# the next two are only used for the standalone HTTP server. |
42 | | -if not HTTP_HOST: |
43 | | - HTTP_HOST = '' |
44 | | -if not HTTP_PORT: |
45 | | - HTTP_PORT = 9080 |
46 | | - |
47 | 41 | # This is the directory that the database is going to be stored in |
48 | 42 | DATABASE = os.path.join(INSTANCE_HOME, 'db') |
49 | 43 |
|
|
62 | 56 | # The email address that roundup will complain to if it runs into trouble |
63 | 57 | ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN |
64 | 58 |
|
65 | | -# Somewhere for roundup to log stuff internally sent to stdout or stderr |
66 | | -LOG = os.path.join(INSTANCE_HOME, 'roundup.log') |
67 | | - |
68 | 59 | # Where to place the web filtering HTML on the index page |
69 | 60 | FILTER_POSITION = 'bottom' # one of 'top', 'bottom', 'top and bottom' |
70 | 61 |
|
|
177 | 168 |
|
178 | 169 | # |
179 | 170 | # $Log: not supported by cvs2svn $ |
| 171 | +# Revision 1.19 2002/07/26 08:26:59 richard |
| 172 | +# Very close now. The cgi and mailgw now use the new security API. The two |
| 173 | +# templates have been migrated to that setup. Lots of unit tests. Still some |
| 174 | +# issue in the web form for editing Roles assigned to users. |
| 175 | +# |
180 | 176 | # Revision 1.18 2002/05/25 07:16:25 rochecompaan |
181 | 177 | # Merged search_indexing-branch with HEAD |
182 | 178 | # |
|
0 commit comments