summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 52a498a)
raw | patch | inline | side by side (parent: 52a498a)
author | dman13 <dman13@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sun, 16 Jun 2002 01:01:42 +0000 (01:01 +0000) | ||
committer | dman13 <dman13@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sun, 16 Jun 2002 01:01:42 +0000 (01:01 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@784 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
frontends/ZRoundup/ZRoundup.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index eace6d22e825c4dc73f3dd6796d3fcd853168a82..985df81a77c9a2fc6e11987e92efa12f1a14b3b8 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
- also changed cgi client since it was duplicating the functionality
Fixed:
+ . remove CR characters embedded in messages (ZRoundup)
. properly quote the email address and "real name" in all situations using the
'email' module if it is available and 'rfc822' otherwise
. #565992 ] if ISSUE_TRACKER_WEB doesn't have the trailing '/', add it
index 8cd92ab0a3ebb6eb4e69203e3bff56444361bdaf..b03414005e89342ef0a1e616e832298050a045b9 100644 (file)
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: ZRoundup.py,v 1.7 2002-06-14 01:25:46 dman13 Exp $
+# $Id: ZRoundup.py,v 1.8 2002-06-16 01:01:42 dman13 Exp $
#
''' ZRoundup module - exposes the roundup web interface to Zope
# with it and we lose all the :filter, :columns, etc goodness
form = None
else:
- form = FormWrapper(self.REQUEST.form)
+ # For some reason, CRs are embeded in multiline notes.
+ # It doesn't occur with apache/roundup.cgi, though.
+ form = self.REQUEST.form
+ if form.has_key( '__note' ) :
+ form['__note'] = form['__note'].replace( '\r' , '' )
+ form = FormWrapper(form)
+
return instance.Client(instance, request, env, form)
#
# $Log: not supported by cvs2svn $
+# Revision 1.7 2002/06/14 01:25:46 dman13
+# Fixed bug #558867 by redirecting /instance requests to /instance/
+#
# Revision 1.6 2002/06/12 00:59:44 dman13
# Fixed the logic for determing the cookie path. (Closes #562130.)
#