Code

added some implementation notes
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 12 Dec 2001 23:33:58 +0000 (23:33 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 12 Dec 2001 23:33:58 +0000 (23:33 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@459 57a73879-2fb5-44c3-a270-3262357dd7e2

frontends/ZRoundup/ZRoundup.py

index 354b8ada27e094758724f9554062a818a641b741..2b5795765eddca20457c7aa34035a6134530ad3c 100644 (file)
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: ZRoundup.py,v 1.1 2001-12-12 23:27:13 richard Exp $
+# $Id: ZRoundup.py,v 1.2 2001-12-12 23:33:58 richard Exp $
 #
 ''' ZRoundup module - exposes the roundup web interface to Zope
+
+This frontend works by providing a thin layer that sits between Zope and the regular CGI
+interface of roundup, providing the web frontend with the minimum of effort.
+
+This means that the regular CGI interface does all authentication quite independently of
+Zope.
+
+It also means that any requests which specify :filter, :columns or :sort _must_ be done
+using a GET, so that this interface can re-parse the QUERY_STRING. Zope interprets the
+':' as a special character, and the special args are lost to it.
 '''
 from Globals import InitializeClass, HTMLFile
 from OFS.SimpleItem import Item
@@ -153,6 +163,9 @@ modulesecurity.apply(globals())
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.1  2001/12/12 23:27:13  richard
+# Added a Zope frontend for roundup.
+#
 #
 #
 # vim: set filetype=python ts=4 sw=4 et si