summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 186c02a)
raw | patch | inline | side by side (parent: 186c02a)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 2 Apr 2002 01:56:10 +0000 (01:56 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 2 Apr 2002 01:56:10 +0000 (01:56 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@688 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/cgi_client.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index bca00229d1fb93f12f4ced8169fbca881d0083ca..1f3b81b93fcbd153dbeb2723aefb6bf9379ac848 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
</property>
</td>
+Fixed:
+ . stop sending blank (whitespace-only) notes
+
+
2002-03-25 - 0.4.1
Feature:
. use blobfiles in back_anydbm which is used in back_bsddb.
diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py
index f466e7d0a1b0297594cf1b9a8467de3282f2dc80..9482b391039da64be8a77f874821737cd614ec46 100644 (file)
--- a/roundup/cgi_client.py
+++ b/roundup/cgi_client.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: cgi_client.py,v 1.114 2002-03-17 23:06:05 richard Exp $
+# $Id: cgi_client.py,v 1.115 2002-04-02 01:56:10 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
# in a nutshell, don't do anything if there's no note or there's no
# NOSY
if self.form.has_key('__note'):
- note = self.form['__note'].value
+ note = self.form['__note'].value.strip()
if not props.has_key('messages'):
return None, files
if not isinstance(props['messages'], hyperdb.Multilink):
#
# $Log: not supported by cvs2svn $
+# Revision 1.114 2002/03/17 23:06:05 richard
+# oops
+#
# Revision 1.113 2002/03/14 23:59:24 richard
# . #517734 ] web header customisation is obscure
#