On 1/5/06, Jeremy Jones <[EMAIL PROTECTED]> wrote: > So, I guess if you needed something that didn't come in on > cherrypy.request, you could hang it off of your controller before the > form is created. I think it's probably safer to try to get it passed in > on cherrypy.request, though.
For anything that stays the same from request-to-request, you could hang that off of the controller. If it changes from request-to-request, it should be put onto the request itself to be threadsafe. Kevin -- Kevin Dangoor Author of the Zesty News RSS newsreader email: [EMAIL PROTECTED] company: http://www.BlazingThings.com blog: http://www.BlueSkyOnMars.com

