summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6105864)
raw | patch | inline | side by side (parent: 6105864)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 19 Aug 2002 00:20:34 +0000 (00:20 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 19 Aug 2002 00:20:34 +0000 (00:20 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@961 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 55486dd4b077a9a6f57cb35efe0ad6e8aa106f10..a917532c39ddbaef0c15d224ca3c30e7caa59c22 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.159 2002-08-16 04:29:41 richard Exp $
+# $Id: cgi_client.py,v 1.160 2002-08-19 00:20:34 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
'''
security.addPermission(name="Web Registration",
description="User may register through the web")
- security.addPermission(name="Web Access",
+ p = security.addPermission(name="Web Access",
description="User may access the web interface")
+ security.addPermissionToRole('Admin', p)
# doing Role stuff through the web - make sure Admin can
p = security.addPermission(name="Web Roles",
Default is all.
'''
+ print 'list'
cn = self.classname
cl = self.db.classes[cn]
if sort is None: sort = self.index_sort()
if files:
props['files'] = files
# create the node and return it's id
+ print `props`
return cl.create(**props)
def _handle_message(self):
#
# $Log: not supported by cvs2svn $
+# Revision 1.159 2002/08/16 04:29:41 richard
+# bugfix
+#
# Revision 1.158 2002/08/15 00:40:10 richard
# cleanup
#