Re: [cgiapp] CGI::Application status update from the maintainer

2012-09-13 Thread Jerry Kaidor
Hi Bill, This is fascinating, but I think you're abusing CGI.pm for something it was never intended for. *** Which is one of the glories of open source. Things keep getting used for stuff that the original writers never envisioned. - Jerry Kaidor # CGI

Re: [cgiapp] app authorization patterns, best practices?

2012-03-28 Thread Jerry Kaidor
in the session-param structure. - Jerry Kaidor On Fri, Mar 23, 2012 at 8:05 PM, Jerry Kaidor je...@tr2.com wrote: I have some questions regarding best practices when implementing role based access control (RBAC). I have been playing with CApp::Authentication

Re: [cgiapp] app authorization patterns, best practices?

2012-03-23 Thread Jerry Kaidor
with much finer granularity than Capp::Authorization, which I do not use at all. - Jerry Kaidor ( je...@tr2.com ) Here's the skeleton I came up with - https://gist.github.com/33d23edf8fa2c0f48dc0 My question is really, what's the best way to go about

Re: [cgiapp] CGI::Application wiki page ArticlesAndTutorials updated by Dave

2011-08-07 Thread Jerry Kaidor
Does Wiki editing require a captcha? If not, maybe it should. Automated spam will stop when you require that a human being enter it. Because that costs the spammers money. - Jerry Kaidor Hi Dave On Sat, 2011-08-06 at 21:54 -0400, cgi...@erlbaum.net wrote: CGI

Re: [cgiapp] Debugging Performance with CGI::Application Using Firebug and Time::HiRes

2010-12-31 Thread Jerry Kaidor
it was just the price of civilized programming. - Jerry Kaidor # CGI::Application community mailing list #### ## To unsubscribe, or change your message delivery options, ## ## visit: http

Re: [cgiapp] Progress Bar

2010-09-06 Thread Jerry Kaidor
/. - Jerry Kaidor # CGI::Application community mailing list #### ## To unsubscribe, or change your message delivery options, ## ## visit: http://www.erlbaum.net/mailman/listinfo/cgiapp

Re: [cgiapp] Weird Perl Internal Errors

2010-09-03 Thread Jerry Kaidor
to propogate errors back into the Apache webserver? I'd like to create my own errors that would wind up in /var/log/httpd/error_log, and thusly bracket the problem in time. Thanks in advance, - Jerry Kaidor ( je...@tr2.com ) You might ask on a DBI mailing list

[cgiapp] Weird Perl Internal Errors

2010-08-28 Thread Jerry Kaidor
out what's at 0x8c64f58? I sure would like to troubleshoot this in some other way than just removing pieces of the app until it goes away Is there a usual cause for such distress in the cgiapp environment? BTW, the app seems to work fine. Thanks in advance, - Jerry

[cgiapp] Progress with my code

2010-08-23 Thread Jerry Kaidor
the application are reasonably fast. So thank you all for your help! - Jerry Kaidor # CGI::Application community mailing list #### ## To unsubscribe, or change your message

Re: [cgiapp] Graceful Error Handling in CGI::App (compile / init stages)

2010-07-07 Thread Jerry Kaidor
at my webapp log file. - Jerry Kaidor # CGI::Application community mailing list #### ## To unsubscribe, or change your message delivery options, ## ## visit: http://www.erlbaum.net

[cgiapp] CAP::Authentication Multi-Driver

2010-06-23 Thread Jerry Kaidor
Hello, Continuing to try to get my multiple DBI's driver working. As you may remember, I needed my application to know which database my user authenticated against. With Nicholas Bamber's advice, I was off to a good start. I created a driver ( MULTI_DBI.pm ) which subclasses the DBI

[cgiapp] Authentication cant find my driver

2010-06-18 Thread Jerry Kaidor
. Is there some giant perl-wide list ( besides @INC ) of all the files that are available to require()? - Jerry Kaidor # CGI::Application community mailing list #### ## To unsubscribe

Re: [cgiapp] Authentication cant find my driver

2010-06-18 Thread Jerry Kaidor
/MULTIDBI.pm' and it DIDN'T find it. So apparently there IS some sort of Perl system-wide list of files and packages besides @INC. Can't be @INC because my file is in the same directory. Right? - Jerry Kaidor Hello, Really stuck here I'm trying to create

Re: [cgiapp] Authentication cant find my driver

2010-06-18 Thread Jerry Kaidor
What does your 'package' line at the top of your module look like? It should be: package CGI::Application::Plugin::Authentication::Driver::MULTI_DBI; *** Yes, it is exactly that. - Jerry # CGI::Application community mailing list ##

Re: [cgiapp] Authentication cant find my driver

2010-06-18 Thread Jerry Kaidor
library B, it can't find it, and the system complains that it can't find file A, even though it's right in front of your face. I had to leave it for now and get some real work done for my business. - Jerry Kaidor -- Ron Savage http://savage.net.au/ Ph: 0421 920

Re: [cgiapp] Multiple Authentications?

2010-06-16 Thread Jerry Kaidor
both the driver and the application. And it wouldn't affect your code at all. - Jerry Kaidor # CGI::Application community mailing list #### ## To unsubscribe, or change your message

[cgiapp] Multiple Authentications?

2010-06-08 Thread Jerry Kaidor
- for the duration of the session - I would have to remember which database the user authenticated against, because that effects the permissions. - Jerry Kaidor p.s. I have gotten my entire project under Subversion, generated a branch for this work, and had a great