From aba75bae5d47af701e43b18da883258d55bbdf53 Mon Sep 17 00:00:00 2001 From: richard Date: Thu, 25 Mar 2004 23:14:15 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2194 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 4 ++-- detectors/fileauditor.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 1e36988..ea80670 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -4,8 +4,8 @@ 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 new auditor, emailauditor.py, that works around a bug in IE. See + emailauditor.py for more info. - added dispatcher functionality - see upgrading.txt for more info Fixed: diff --git a/detectors/fileauditor.py b/detectors/fileauditor.py index 606b89c..30f9636 100644 --- a/detectors/fileauditor.py +++ b/detectors/fileauditor.py @@ -1,6 +1,6 @@ def eml_to_mht(db, cl, nodeid, newvalues): - '''This reactor fires whenever a new file entity is created. + '''This auditor fires whenever a new file entity is created. If the file is of type message/rfc822, we tack onthe extension .eml. @@ -37,5 +37,5 @@ def eml_to_mht(db, cl, nodeid, newvalues): newvalues['name'] = name + '.mht' def init(db): - db.file.react('create', eml_to_mht) + db.file.audit('create', eml_to_mht) -- 2.30.2