Skip to content

Commit b8caffb

Browse files
author
Richard Jones
committed
added some implementation notes
1 parent 2ac3900 commit b8caffb

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

frontends/ZRoundup/ZRoundup.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,19 @@
1414
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1515
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1616
#
17-
# $Id: ZRoundup.py,v 1.1 2001-12-12 23:27:13 richard Exp $
17+
# $Id: ZRoundup.py,v 1.2 2001-12-12 23:33:58 richard Exp $
1818
#
1919
''' ZRoundup module - exposes the roundup web interface to Zope
20+
21+
This frontend works by providing a thin layer that sits between Zope and the regular CGI
22+
interface of roundup, providing the web frontend with the minimum of effort.
23+
24+
This means that the regular CGI interface does all authentication quite independently of
25+
Zope.
26+
27+
It also means that any requests which specify :filter, :columns or :sort _must_ be done
28+
using a GET, so that this interface can re-parse the QUERY_STRING. Zope interprets the
29+
':' as a special character, and the special args are lost to it.
2030
'''
2131
from Globals import InitializeClass, HTMLFile
2232
from OFS.SimpleItem import Item
@@ -153,6 +163,9 @@ def __getitem__(self, item):
153163

154164
#
155165
# $Log: not supported by cvs2svn $
166+
# Revision 1.1 2001/12/12 23:27:13 richard
167+
# Added a Zope frontend for roundup.
168+
#
156169
#
157170
#
158171
# vim: set filetype=python ts=4 sw=4 et si

0 commit comments

Comments
 (0)