Mercurial > p > roundup > code
diff roundup/cgi/client.py @ 2112:b86f0627b07c
added CSV download of index / search results
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 25 Mar 2004 00:44:28 +0000 |
| parents | b7404a96b58a |
| children | c49495585c44 |
line wrap: on
line diff
--- a/roundup/cgi/client.py Wed Mar 24 20:31:43 2004 +0000 +++ b/roundup/cgi/client.py Thu Mar 25 00:44:28 2004 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.167 2004-03-24 06:18:59 richard Exp $ +# $Id: client.py,v 1.168 2004-03-25 00:44:28 richard Exp $ """WWW request handler (also used in the stand-alone server). """ @@ -520,17 +520,18 @@ # these are the actions that are available actions = ( - ('edit', EditItemAction), - ('editcsv', EditCSVAction), - ('new', NewItemAction), - ('register', RegisterAction), - ('confrego', ConfRegoAction), - ('passrst', PassResetAction), - ('login', LoginAction), - ('logout', LogoutAction), - ('search', SearchAction), - ('retire', RetireAction), - ('show', ShowAction), + ('edit', EditItemAction), + ('editcsv', EditCSVAction), + ('new', NewItemAction), + ('register', RegisterAction), + ('confrego', ConfRegoAction), + ('passrst', PassResetAction), + ('login', LoginAction), + ('logout', LogoutAction), + ('search', SearchAction), + ('retire', RetireAction), + ('show', ShowAction), + ('export_csv', ExportCSVAction), ) def handle_action(self): ''' Determine whether there should be an Action called.
