Skip to content

Commit 199182f

Browse files
author
Eddie Parker
committed
Did a couple of things:
o- Did the proper doc thing, under Richard's stern disciplinary action - Updated Changes.txt - Updated Customizing doc - Took a change out of upgrading.txt that didn't need to be there - Made config.py be the same as the minimal config.py
1 parent 2bc9150 commit 199182f

File tree

5 files changed

+25
-34
lines changed

5 files changed

+25
-34
lines changed

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ are given with the most recent entry first.
44
2004-??-?? 0.7.0b2
55
Feature:
66
- added CSV export to index pages
7+
- added new reactor, filereactor.py, that works around a bug in IE. See
8+
filereactor.py for more info.
9+
- added dispatcher functionality - see upgrading.txt for more info
710

811
Fixed:
912
- Boolean HTML templating was broken
1013
- Link HTML templating field() was broken
1114
- Fix reporting of test inclusion in postgresql test
1215

13-
1416
2004-03-24 0.7.0b1
1517
Major new features:
1618
- added postgresql backend (originally from sf patch 761740, many changes

doc/customizing.txt

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.120 $
5+
:Version: $Revision: 1.121 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -135,6 +135,11 @@ The configuration variables available are:
135135
**ADMIN_EMAIL** - ``'roundup-admin@%s'%MAIL_DOMAIN``
136136
The email address that roundup will complain to if it runs into trouble.
137137

138+
**DISPATCHER_EMAIL** - ``ADMIN_EMAIL``
139+
The email address that roundup will issue all error messages to. This is
140+
also useful, if you want to switch your 'new message' notification to
141+
a central user.
142+
138143
**EMAIL_FROM_TAG** - ``''``
139144
Additional text to include in the "name" part of the ``From:`` address used
140145
in nosy messages. If the sending user is "Foo Bar", the ``From:`` line is
@@ -146,6 +151,9 @@ The configuration variables available are:
146151

147152
"Foo Bar EMAIL_FROM_TAG" <[email protected]>
148153

154+
**ERROR_MESSAGES_TO** - ``'user'``, ``'dispatcher'`` or ``'both'``
155+
Sends error messages to the dispatcher, user, or both.
156+
149157
**MESSAGES_TO_AUTHOR** - ``'new'``, ``'yes'`` or``'no'``
150158
Send nosy messages to the author of the message?
151159
If 'new' is used, then the author will only be sent the message when the
@@ -2811,7 +2819,7 @@ Setting up a "wizard" (or "druid") for controlled adding of issues
28112819
</form>
28122820

28132821
Note that later in the form, I test the value of "cat" include form
2814-
elements that are appropriate. For exsample::
2822+
elements that are appropriate. For example::
28152823

28162824
<tal:block tal:condition="python:cat in '6 10 13 14 15 16 17'.split()">
28172825
<tr>

doc/index.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ implement this system on their time.
4949

5050
Thanks also to the many people on the mailing list, in the sourceforge
5151
project and those who just report bugs:
52+
Eddie Parker,
5253
Thomas Arendsen Hein,
5354
Anthony Baxter,
5455
Cameron Blackwood,

doc/upgrading.txt

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,6 @@ accordingly. Note that there is information about upgrade procedures in the
1313
Migrating from 0.7 to 0.8
1414
=========================
1515

16-
17-
0.8.0 Added filereactor detector
18-
--------------------------------
19-
20-
This reactor is not installed by default, but rather can be found in the source
21-
directory, under the detectors/ directory.
22-
23-
In it, it contains a workaround for an Internet Explorer limitation, regarding
24-
.eml and .mht files. It is tested to work with both Internet Explorer 6 and
25-
Mozilla's Firefox.
26-
27-
Read the description inside of the reactor itself, for more information.
28-
29-
3016
0.8.0 Added Dispatcher role
3117
---------------------------
3218

templates/classic/config.py

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: config.py,v 1.6 2004-03-25 19:27:15 eparker Exp $
18+
# $Id: config.py,v 1.7 2004-03-25 22:38:55 eparker Exp $
1919

2020
import os
2121

@@ -68,24 +68,27 @@
6868

6969
# Additional text to include in the "name" part of the From: address used
7070
# in nosy messages. If the sending user is "Foo Bar", the From: line is
71-
# usually:
72-
# "Foo Bar" <[email protected]>
71+
# usually: "Foo Bar" <[email protected]>
7372
# the EMAIL_FROM_TAG goes inside the "Foo Bar" quotes like so:
7473
# "Foo Bar EMAIL_FROM_TAG" <[email protected]>
7574
EMAIL_FROM_TAG = ""
7675

76+
#
77+
# SECURITY DEFINITIONS
78+
#
79+
# define the Roles that a user gets when they register with the tracker
80+
# these are a comma-separated string of role names (e.g. 'Admin,User')
81+
NEW_WEB_USER_ROLES = 'User'
82+
NEW_EMAIL_USER_ROLES = 'User'
7783

7884
# Send error messages to the dispatcher, user, or both?
7985
# If 'dispatcher', error message notifications will only be sent to the dispatcher.
8086
# If 'user', error message notifications will only be sent to the user.
8187
# If 'both', error message notifications will be sent to both individuals.
8288
ERROR_MESSAGES_TO = 'user'
8389

84-
# Send nosy messages to the author of the message?
85-
# If 'new' is used, then the author will only be sent the message when the
86-
# message creates a new issue. If 'yes' then the author will always be sent
87-
# a copy of the message they wrote.
88-
MESSAGES_TO_AUTHOR = 'no' # one of 'yes', 'no', 'new'
90+
# Send nosy messages to the author of the message
91+
MESSAGES_TO_AUTHOR = 'no' # either 'yes' or 'no'
8992

9093
# Does the author of a message get placed on the nosy list automatically?
9194
# If 'new' is used, then the author will only be added when a message
@@ -128,13 +131,4 @@
128131
EMAIL_CHARSET = 'utf-8'
129132
#EMAIL_CHARSET = 'iso-8859-1' # use this instead for Eudora users
130133

131-
132-
#
133-
# SECURITY DEFINITIONS
134-
#
135-
# define the Roles that a user gets when they register with the tracker
136-
# these are a comma-separated string of role names (e.g. 'Admin,User')
137-
NEW_WEB_USER_ROLES = 'User'
138-
NEW_EMAIL_USER_ROLES = 'User'
139-
140134
# vim: set filetype=python ts=4 sw=4 et si

0 commit comments

Comments
 (0)