Re: [cgiapp] Forms - Brannigan and CGI::Untaint

2011-06-16 Thread Robert Mills
Thanks for that Ron, lots to check out! So basically your using CGI::Untaint to do basic validation (ie int,hex,text) and untainting, while Brannigan handles the more specific validation depending on requirements. 2011/6/16 Ron Savage r...@savage.net.au Hi Robert On Wed, 2011-06-15 at 14:40

Re: [cgiapp] can't display and validate only in one run mode with CAP::Plugin::ValidateRM ?

2011-06-16 Thread Mark Stosberg
On 06/14/2011 10:00 PM, silent wrote: Hi, list can I do displaying form and validate form only in one run mode ? It is not designed for this. # run mod sub register { if ( GET request ) { #display form }elsif ( POST requst ) { #validate } } To put

[cgiapp] CGI::Application 4.5 / CGI::Application::Dispatch 3.0 released today with improved PSGI support

2011-06-16 Thread Mark Stosberg
After a long incubation period, perhaps too long, CGI::Application has been updated today with native PSGI support in the core module as well as PSGI-native dispatcher. The changes since the last stable versions for each module are included below. You can now find and review on the new MetaCPAN

Re: [cgiapp] Open source applications written using CGI::Application

2011-06-16 Thread Gabor Szabo
On Tue, Jun 14, 2011 at 5:42 PM, Michael Peters mpet...@plusthree.com wrote: On 06/14/2011 02:49 AM, Gabor Szabo wrote: Is there any plan to upload it to CPAN? It's not a simple matter of uploading it to CPAN. Krang handles it's own dependencies including Apache and mod_perl and

Re: [cgiapp] can't display and validate only in one run mode with CAP::Plugin::ValidateRM ?

2011-06-16 Thread Mark F
On 06/14/2011 10:00 PM, silent wrote: can I do displaying form and validate form only in one run mode ? # run mod sub register {      if ( GET request ) {          #display form      }elsif ( POST requst ) {         #validate     } } I can see where your mind is going with this. I've

[cgiapp] CGI::Application wiki page ShawnSorichetti updated by MichaelRoberts

2011-06-16 Thread cgiapp
CGI::Application page http://cgi-app.org/index.cgi?ShawnSorichetti edited by MichaelRoberts # CGI::Application community mailing list #### ## To unsubscribe, or change your message delivery options, ## ##

[cgiapp] Sessions leaking with FastCGI

2011-06-16 Thread Victor Bruno
I have a webapp in cgiapp (Titanium) that I I recently made persistent with fastcgi. I am hearing sporadic user reports of sessions leaking to the wrong clients. A user will login and get presented with the homepage of a different user who is currently logged in and has a live session. I have

Re: [cgiapp] Forms - Brannigan and CGI::Untaint

2011-06-16 Thread Ron Savage
Hi Rob On Thu, 2011-06-16 at 14:07 +0200, Robert Mills wrote: Thanks for that Ron, lots to check out! So basically your using CGI::Untaint to do basic validation (ie int,hex,text) and untainting, while Brannigan handles the more specific validation depending on requirements. Exactly! It's

Re: [cgiapp] Sessions leaking with FastCGI

2011-06-16 Thread Ron Savage
Hi Victor Looks like no-one replied via the list. I'll take a guess, but I don't use FastCGI. More below. On Thu, 2011-06-16 at 18:50 -0500, Victor Bruno wrote: I have a webapp in cgiapp (Titanium) that I I recently made persistent with fastcgi. I am hearing sporadic user reports of

[cgiapp] CGI::Application wiki page ShawnSorichetti updated by ronsavage

2011-06-16 Thread cgiapp
CGI::Application page http://cgi-app.org/index.cgi?ShawnSorichetti edited by ronsavage # CGI::Application community mailing list #### ## To unsubscribe, or change your message delivery options, ## ## visit:

Re: [cgiapp] Sessions leaking with FastCGI

2011-06-16 Thread Victor Bruno
Thanks, Ron. I am going to try moving my session_config call to prerun from init, since init does not get called on every page request with FastCGI. I am also beginning to wonder if mod_perl isn't a more proven alternative. I was just looking at an old message from Cees Hek in the cgiapp archive

Re: [cgiapp] Sessions leaking with FastCGI

2011-06-16 Thread Mark F
On Thu, Jun 16, 2011 at 9:29 PM, Victor Bruno vicdam...@gmail.com wrote: I am also beginning to wonder if mod_perl isn't a more proven alternative. I was just looking at an old message from Cees Hek in the cgiapp archive that discusses the different options for using mod_perl. I've got a