From: eparker Date: Thu, 25 Mar 2004 22:38:55 +0000 (+0000) Subject: Did a couple of things: X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3173714e0030a223633417a227a1febb79eaf6e7;p=roundup.git 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 git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2189 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index da72da0..1e36988 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -4,13 +4,15 @@ are given with the most recent entry first. 2004-??-?? 0.7.0b2 Feature: - added CSV export to index pages +- added new reactor, filereactor.py, that works around a bug in IE. See + filereactor.py for more info. +- added dispatcher functionality - see upgrading.txt for more info Fixed: - Boolean HTML templating was broken - Link HTML templating field() was broken - Fix reporting of test inclusion in postgresql test - 2004-03-24 0.7.0b1 Major new features: - added postgresql backend (originally from sf patch 761740, many changes diff --git a/doc/customizing.txt b/doc/customizing.txt index 1d1ac3c..3b42c4e 100644 --- a/doc/customizing.txt +++ b/doc/customizing.txt @@ -2,7 +2,7 @@ Customising Roundup =================== -:Version: $Revision: 1.120 $ +:Version: $Revision: 1.121 $ .. This document borrows from the ZopeBook section on ZPT. The original is at: http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx @@ -135,6 +135,11 @@ The configuration variables available are: **ADMIN_EMAIL** - ``'roundup-admin@%s'%MAIL_DOMAIN`` The email address that roundup will complain to if it runs into trouble. +**DISPATCHER_EMAIL** - ``ADMIN_EMAIL`` + The email address that roundup will issue all error messages to. This is + also useful, if you want to switch your 'new message' notification to + a central user. + **EMAIL_FROM_TAG** - ``''`` Additional text to include in the "name" part of the ``From:`` address used in nosy messages. If the sending user is "Foo Bar", the ``From:`` line is @@ -146,6 +151,9 @@ The configuration variables available are: "Foo Bar EMAIL_FROM_TAG" +**ERROR_MESSAGES_TO** - ``'user'``, ``'dispatcher'`` or ``'both'`` + Sends error messages to the dispatcher, user, or both. + **MESSAGES_TO_AUTHOR** - ``'new'``, ``'yes'`` or``'no'`` Send nosy messages to the author of the message? 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 Note that later in the form, I test the value of "cat" include form - elements that are appropriate. For exsample:: + elements that are appropriate. For example:: diff --git a/doc/index.txt b/doc/index.txt index 1af429d..32a249a 100644 --- a/doc/index.txt +++ b/doc/index.txt @@ -49,6 +49,7 @@ implement this system on their time. Thanks also to the many people on the mailing list, in the sourceforge project and those who just report bugs: +Eddie Parker, Thomas Arendsen Hein, Anthony Baxter, Cameron Blackwood, diff --git a/doc/upgrading.txt b/doc/upgrading.txt index 925cf34..dbd01ad 100644 --- a/doc/upgrading.txt +++ b/doc/upgrading.txt @@ -13,20 +13,6 @@ accordingly. Note that there is information about upgrade procedures in the Migrating from 0.7 to 0.8 ========================= - -0.8.0 Added filereactor detector --------------------------------- - -This reactor is not installed by default, but rather can be found in the source -directory, under the detectors/ directory. - -In it, it contains a workaround for an Internet Explorer limitation, regarding -.eml and .mht files. It is tested to work with both Internet Explorer 6 and -Mozilla's Firefox. - -Read the description inside of the reactor itself, for more information. - - 0.8.0 Added Dispatcher role --------------------------- diff --git a/templates/classic/config.py b/templates/classic/config.py index 703fc14..d57df1a 100644 --- a/templates/classic/config.py +++ b/templates/classic/config.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: config.py,v 1.6 2004-03-25 19:27:15 eparker Exp $ +# $Id: config.py,v 1.7 2004-03-25 22:38:55 eparker Exp $ import os @@ -68,12 +68,18 @@ DISPATCHER_EMAIL = ADMIN_EMAIL # Additional text to include in the "name" part of the From: address used # in nosy messages. If the sending user is "Foo Bar", the From: line is -# usually: -# "Foo Bar" +# usually: "Foo Bar" # the EMAIL_FROM_TAG goes inside the "Foo Bar" quotes like so: # "Foo Bar EMAIL_FROM_TAG" EMAIL_FROM_TAG = "" +# +# SECURITY DEFINITIONS +# +# define the Roles that a user gets when they register with the tracker +# these are a comma-separated string of role names (e.g. 'Admin,User') +NEW_WEB_USER_ROLES = 'User' +NEW_EMAIL_USER_ROLES = 'User' # Send error messages to the dispatcher, user, or both? # If 'dispatcher', error message notifications will only be sent to the dispatcher. @@ -81,11 +87,8 @@ EMAIL_FROM_TAG = "" # If 'both', error message notifications will be sent to both individuals. ERROR_MESSAGES_TO = 'user' -# Send nosy messages to the author of the message? -# If 'new' is used, then the author will only be sent the message when the -# message creates a new issue. If 'yes' then the author will always be sent -# a copy of the message they wrote. -MESSAGES_TO_AUTHOR = 'no' # one of 'yes', 'no', 'new' +# Send nosy messages to the author of the message +MESSAGES_TO_AUTHOR = 'no' # either 'yes' or 'no' # Does the author of a message get placed on the nosy list automatically? # If 'new' is used, then the author will only be added when a message @@ -128,13 +131,4 @@ HTML_VERSION = 'html4' # either 'html4' or 'xhtml' EMAIL_CHARSET = 'utf-8' #EMAIL_CHARSET = 'iso-8859-1' # use this instead for Eudora users - -# -# SECURITY DEFINITIONS -# -# define the Roles that a user gets when they register with the tracker -# these are a comma-separated string of role names (e.g. 'Admin,User') -NEW_WEB_USER_ROLES = 'User' -NEW_EMAIL_USER_ROLES = 'User' - # vim: set filetype=python ts=4 sw=4 et si