summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9a9aa33)
raw | patch | inline | side by side (parent: 9a9aa33)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 10 Jan 2002 05:26:10 +0000 (05:26 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 10 Jan 2002 05:26:10 +0000 (05:26 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@520 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/cgi_client.py | patch | blob | history |
diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py
index 5a866cb891caa607e921e00971e2828d7f50b02d..2fef807d88188dd5d9ad8283518ee0504de7afc9 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.95 2002-01-10 03:39:45 richard Exp $
+# $Id: cgi_client.py,v 1.96 2002-01-10 05:26:10 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
''' create a node based on the contents of the form
'''
cl = self.db.classes[self.classname]
- props, dummy = parsePropsFromForm(self.db, cl, self.form)
+ props = parsePropsFromForm(self.db, cl, self.form)
# set status to 'unread' if not specified - a status of '- no
# selection -' doesn't make sense
if [i for i in keys if i[0] != ':']:
try:
props = parsePropsFromForm(self.db, cl, self.form)
- print props
nid = cl.create(**props)
# handle linked nodes
self._post_editnode(nid)
#
# $Log: not supported by cvs2svn $
+# Revision 1.95 2002/01/10 03:39:45 richard
+# . fixed some problems with web editing and change detection
+#
# Revision 1.94 2002/01/09 13:54:21 grubert
# _add_assignedto_to_nosy did set nosy to assignedto only, no adding.
#