Mercurial > p > roundup > code
diff roundup/cgi/client.py @ 1468:f57759a5ee1a
Better form name mangling, doesn't confuse other things like generic editing.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 26 Feb 2003 04:08:04 +0000 |
| parents | 378081f066cc |
| children | 79d8956de3f5 |
line wrap: on
line diff
--- a/roundup/cgi/client.py Tue Feb 25 10:19:32 2003 +0000 +++ b/roundup/cgi/client.py Wed Feb 26 04:08:04 2003 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.97 2003-02-25 10:19:32 richard Exp $ +# $Id: client.py,v 1.98 2003-02-26 04:08:04 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -452,7 +452,7 @@ # these are the actions that are available actions = ( ('edit', 'editItemAction'), - ('editCSV', 'editCSVAction'), + ('editcsv', 'editCSVAction'), ('new', 'newItemAction'), ('register', 'registerAction'), ('confrego', 'confRegoAction'), @@ -469,6 +469,7 @@ identifies the method on this object to call. The four basic actions are defined in the "actions" sequence on this class: "edit" -> self.editItemAction + "editcsv" -> self.editCSVAction "new" -> self.newItemAction "register" -> self.registerAction "confrego" -> self.confRegoAction
