Re: Submit web form only client-side with Python? COM?

2007-08-05 Thread Gabriel Genellina
En Sat, 04 Aug 2007 19:17:35 -0300, Jay Loden [EMAIL PROTECTED] escribió: Paul Rubin wrote: goldtech [EMAIL PROTECTED] writes: So I can present the user with an HTML form in it - but how can I write the form data to a local file on my work station? The simplest way is with the cgi and

Re: Submit web form only client-side with Python? COM?

2007-08-05 Thread Jay Loden
Gabriel Genellina wrote: En Sat, 04 Aug 2007 19:17:35 -0300, Jay Loden [EMAIL PROTECTED] escribió: Paul Rubin wrote: goldtech [EMAIL PROTECTED] writes: So I can present the user with an HTML form in it - but how can I write the form data to a local file on my work station? The simplest

Submit web form only client-side with Python? COM?

2007-08-04 Thread goldtech
Say I have have an HTML form , the user hits the submit button and I what text they enetered into a HTML form field is written to a file. But I don't have PHP, JAVA the usual client or server sided layers to write the data to a file, and I'm not to keen on JavaScript. Note: I can not add or

Re: Submit web form only client-side with Python? COM?

2007-08-04 Thread Paul Rubin
goldtech [EMAIL PROTECTED] writes: So I can present the user with an HTML form in it - but how can I write the form data to a local file on my work station? The simplest way is with the cgi and CGIHTTPServer modules. You'd write your form in an html file, with the target set to a Python script

Re: Submit web form only client-side with Python? COM?

2007-08-04 Thread Jay Loden
Paul Rubin wrote: goldtech [EMAIL PROTECTED] writes: So I can present the user with an HTML form in it - but how can I write the form data to a local file on my work station? The simplest way is with the cgi and CGIHTTPServer modules. You'd write your form in an html file, with the target