On Fri, Aug 02, 2002 at 12:52:20PM +0200, Andreas Kostyrka wrote: >I've been wondering why Quixote leaves out argument processing and calls >all objects just with request? >Is this a deliberate design choice? Or was it just left out because >nobody wrote the code? Zope's HTTPRequest had a feature something like this, where something like fieldname:int would automatically convert the field to integer. We ripped it out because the argument parsing code added a lot of complexity that we never used. (See rev. 1.17 of http_request.py, which discarded about 400 lines of code.) --amk