Code

Did a couple of things:
authoreparker <eparker@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 25 Mar 2004 22:38:55 +0000 (22:38 +0000)
committereparker <eparker@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 25 Mar 2004 22:38:55 +0000 (22:38 +0000)
  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

CHANGES.txt
doc/customizing.txt
doc/index.txt
doc/upgrading.txt
templates/classic/config.py

index da72da044de2a91d411d70e07645899efa4d5cb1..1e36988c4eebbfd676ac97c71269045e38bc8755 100644 (file)
@@ -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
index 1d1ac3cd29a7fa055ef6b7f678714a37b9879927..3b42c4e4074191c85d554a605510e6a538f5bb71 100644 (file)
@@ -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" <issue_tracker@tracker.example>
 
+**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
     </form>
 
    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::
 
     <tal:block tal:condition="python:cat in '6 10 13 14 15 16 17'.split()">
      <tr>
index 1af429d0fcddec0d421cae4ad9eb1e0a242c02de..32a249a2ec4cbf92db15b56dfb053224d3824184 100644 (file)
@@ -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,
index 925cf34d9deb18a827c91f185d9efd470090106a..dbd01ad2cb40363c7ed751a85cf86cf3ed1fed8f 100644 (file)
@@ -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
 ---------------------------
 
index 703fc14188908435e9da17f7a563e628e800db74..d57df1a412cb5677ae63acac94058cdf4191f1c9 100644 (file)
@@ -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" <issue_tracker@tracker.example>
+# usually: "Foo Bar" <issue_tracker@tracker.example>
 # the EMAIL_FROM_TAG goes inside the "Foo Bar" quotes like so:
 #    "Foo Bar EMAIL_FROM_TAG" <issue_tracker@tracker.example>
 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