Re: [cgiapp] Powered by logos - first samples

2009-09-03 Thread Lee Carmichael
I really like the leaves. - Original Message > From: Lyle > To: cgiapp@lists.erlbaum.net > Sent: Thursday, September 3, 2009 5:57:32 AM > Subject: [cgiapp] Powered by logos - first samples > > Feedback please:- > http://www.cosmicsitedesign.com/cgi-app/poweredby/ > > > Lyle > > ###

Re: [cgiapp] Proposed new look and branding for cgi-app.org

2009-04-17 Thread Lee Carmichael
> Lyle Hopkins has generously worked with me to prepare this proposed redesign > for cgi-app.org. I'm interested in your feedback before moving forward: > > http://cosmicsitedesign.com/cgi-app/ > I think it looks great! Good job Lyle and thanks. > The update addresses long standing complaint

Re: [cgiapp] changing app modes during cgiapp_prerun

2008-07-23 Thread Lee Carmichael
Hello Amelia, Since you are still in that run mode, you can't logically change it until the prerun finishes. The prerun_mode only changes the mode after the all the preruns get called so without mucking around with the internal data structure (which is a bad idea) it won't change. ( this also m

Re: [cgiapp] Q: Authz, but only when user is Authenticated...

2008-03-17 Thread Lee Carmichael
Hello Graham, I just ran into this same problem last week. I was just crafting an email about it but found it hard to explain. You did a great job :) > So, I load up CAP::Authen and CAP::Authz in my App superclass and the prerun > hooks get invoked in order (authen first, then authz). However.

Re: [cgiapp] CGI::Application::Dispatch Install Issues

2008-03-09 Thread Lee Carmichael
Hello Michael, >> [EMAIL PROTECTED]:~/perltemp/CGI-Application-Dispatch-2.12]> perl >> Makefile.PL >> This module can optionally use Apache::Test to test the mod_perl >> functionality. >> Undefined subroutine &ExtUtils::MakeMaker::prompt called at >> Makefile.PL >> l

Re: [cgiapp] CGI::Application::Dispatch Install Issues

2008-03-09 Thread Lee Carmichael
Hello Todd, I had the same issues, see bug: http://rt.cpan.org/Public/Bug/Display.html?id=33498 I found that I needed to patch a Build.PL and Makefile.PL when Apache::Test wasn't installed. There are patches attached to the bug, give them a try. I'm pretty confident they will work (that p

Re: [cgiapp] Session name, CGI::Session and CAP::Session

2008-02-15 Thread Lee Carmichael
;My::Subclass2'} = CGI::Session->new(...); Then maybe make my own ->session method that finds the correct session for the subclass: sub session { my $self = shift; return $self->stash->{sessions}{ ref $self }; } ? Todd W. - Original Message From: Lee Carmichae

[cgiapp] Session name, CGI::Session and CAP::Session

2008-02-15 Thread Lee Carmichael
Hello Everyone, I am having a bit of an issue with how the 'name' attribute is being set on CGI::Session (CGI::Session->name). It is necessary to set the class value for 'name' before creating a session after which it is possible and useful to set it on the instance. I have a base class that

Re: [cgiapp] prerun and errormode handling

2007-09-21 Thread Lee Carmichael
Hello James, > just curious. why are you using the Dev version of CGI-Application-4.07_01? > it doesn't seem to > have any advantages to me. Sorry for the confusion but we aren't using the development release. We are using 4.06. I didn't want to go through the work of writing a patch for 4.0

[cgiapp] prerun and errormode handling

2007-09-21 Thread Lee Carmichael
Hello Everyone, I need to capture exceptions caused in the cgiapp_prerun sub. In my situation, I want to verify a set of environmental parts that are used in many run modes. So instead of verifying these each time, I would like to do it in the prerun and then output a nice universal error page