Code

new cgi client here too
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 4 Sep 2002 02:05:19 +0000 (02:05 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 4 Sep 2002 02:05:19 +0000 (02:05 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1055 57a73879-2fb5-44c3-a270-3262357dd7e2

frontends/ZRoundup/ZRoundup.py

index e1614a85059d401368e01f57ea8a96e24ef50d33..0be45f38af4c7934432921d4c75ac0d2038b1691 100644 (file)
@@ -14,7 +14,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: ZRoundup.py,v 1.9 2002-07-04 01:25:22 dman13 Exp $
+# $Id: ZRoundup.py,v 1.10 2002-09-04 02:05:19 richard Exp $
 #
 ''' ZRoundup module - exposes the roundup web interface to Zope
 
@@ -45,7 +45,7 @@ from AccessControl import ModuleSecurityInfo
 modulesecurity = ModuleSecurityInfo()
 
 import roundup.instance
-from roundup import cgi_client
+from roundup.cgi import NotFound
 
 modulesecurity.declareProtected('View management screens',
     'manage_addZRoundupForm')
@@ -191,7 +191,7 @@ class ZRoundup(Item, PropertyManager, Implicit, Persistent):
             # and call roundup to do something 
             client.main()
             return ''
-        except cgi_client.NotFound:
+        except NotFound:
             raise 'NotFound', self.REQUEST.URL
             pass
         except:
@@ -208,6 +208,9 @@ modulesecurity.apply(globals())
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.9  2002/07/04 01:25:22  dman13
+# fixed #576086 (dumb copying mistake)
+#
 # Revision 1.8  2002/06/16 01:01:42  dman13
 # remove CR characters embedded in messages (ZRoundup)
 #