Re: follow-up to FieldStorage

2006-06-08 Thread Fredrik Lundh
bruno at modulix wrote: > FWIW, reading the source is not even needed to know this: import cgi dir(cgi.FieldStorage) not to mention: >>> help(cgi.FieldStorage) Help on class FieldStorage in module cgi: class FieldStorage | Store a sequence of fields, reading multipart/form-data.

Re: follow-up to FieldStorage

2006-06-08 Thread John Salerno
Gerard Flanagan wrote: > John Salerno wrote: >> Bruno Desthuilliers wrote: >>> John Salerno a écrit : If I want to get all the values that are entered into an HTML form and write them to a file, is there some way to handle them all at the same time, or must FieldStorage be indexed by

Re: follow-up to FieldStorage

2006-06-08 Thread Gerard Flanagan
John Salerno wrote: > Bruno Desthuilliers wrote: > > John Salerno a écrit : > >> If I want to get all the values that are entered into an HTML form and > >> write them to a file, is there some way to handle them all at the same > >> time, or must FieldStorage be indexed by each specific field name?

Re: follow-up to FieldStorage

2006-06-08 Thread bruno at modulix
Tim Roberts wrote: > John Salerno <[EMAIL PROTECTED]> wrote: > > >>Bruno Desthuilliers wrote: >> >>>John Salerno a écrit : >>> If I want to get all the values that are entered into an HTML form and write them to a file, is there some way to handle them all at the same time, or must

Re: follow-up to FieldStorage

2006-06-07 Thread Tim Roberts
John Salerno <[EMAIL PROTECTED]> wrote: >Bruno Desthuilliers wrote: >> John Salerno a écrit : >>> If I want to get all the values that are entered into an HTML form and >>> write them to a file, is there some way to handle them all at the same >>> time, or must FieldStorage be indexed by each sp

Re: follow-up to FieldStorage

2006-06-06 Thread John Salerno
Bruno Desthuilliers wrote: > John Salerno a écrit : >> If I want to get all the values that are entered into an HTML form and >> write them to a file, is there some way to handle them all at the same >> time, or must FieldStorage be indexed by each specific field name? > > AFAIK, FieldStorage is

Re: follow-up to FieldStorage

2006-06-05 Thread Bruno Desthuilliers
John Salerno a écrit : > If I want to get all the values that are entered into an HTML form and > write them to a file, is there some way to handle them all at the same > time, or must FieldStorage be indexed by each specific field name? AFAIK, FieldStorage is a somewhat dict-like object, but I'

follow-up to FieldStorage

2006-06-05 Thread John Salerno
If I want to get all the values that are entered into an HTML form and write them to a file, is there some way to handle them all at the same time, or must FieldStorage be indexed by each specific field name? -- http://mail.python.org/mailman/listinfo/python-list