Re: [cgiapp] Output PDF instead of HTML?

2013-09-03 Thread jerry
On 09/03/2013 01:35, Richard Jones wrote: Hi Jerry, I hope I haven't misunderstood your issue and am telling you something you already know, but doesn't $self-header_add() work? *** It did indeed. Thank you very much. I didn't realize that CGI::Application itself had methods for dealing

Re: [cgiapp] is this list still active?

2014-11-20 Thread jerry
debugging. Big learning curve. So I settled on cgiapp. Just enough magic to make my life easy. My app has grown quite large, and it would be painful to recode it. - Jerry Kaidor ( je...@tr2.com ) # CGI::Application community mailing list

Re: [cgiapp] is this list still active?

2014-11-20 Thread jerry
On 11/20/2014 13:43, Thomas Krichel wrote: jerry writes So I settled on cgiapp. Just enough magic to make my life easy. I am in a similar case. I use FCCI with cgiapp. I have a simple URL, get params from POST, look up some data, create XML and then transform it with XSLT to get

[cgiapp] CGI Params lost during forward?

2015-09-07 Thread jerry
GI object inside the rm to re-snarf everything? I just thought I'd ask before I do a TCAITIW ( Throw Code At It Till It Works ) :). Thanks in advance, - Jerry Kaidor # CGI::Application commun

Re: [cgiapp] CGI Params lost during forward?

2015-09-07 Thread jerry
Whups, it was a bug in my own code. One of those things that you stare at all day, and it's Obviously Right. Except that it Wasn't :). All contexts and variables are preserved across $self->forward(). - Jerry On 09/07/2015 07:48, jerry wrote: > Hello, > >

[cgiapp] Authentication for AJAX?

2016-05-17 Thread jerry
; writing the database Has anybody else invented this particular wheel? - Jerry Kaidor # CGI::Application community mailing list #### ## To unsubscribe, or change your me

Re: [cgiapp] Authentication for AJAX?

2016-05-18 Thread jerry
quest responds with an unexpected login screen, then replace the document body with that login screen". - Jerry The way I've handled this in the past is to authenticate the > session in the prerun hook and if it fails, divert them to a different > runmode other th

Re: [cgiapp] AutoRunmode vs Apache issue

2017-05-25 Thread jerry
, and a security risk. So I just got started without it. I do use Apache. - Jerry Kaidor On 05/25/2017 03:04, Simon Cruickshank wrote: > Hi All, > > Sorry if this is a little off topic or has been answered before. > > I used the tutorial at http://www.perlmonks.org/

Re: [cgiapp] Mailing list shutting down

2017-09-01 Thread jerry
there. But for me, cgiapp had just the right balance of magic ( so I typed less ) and understandability - so I could adapt it to my specific needs and troubleshoot it when it didn't work. - Jerry Kaidor On 09/01/2017 09:15, Thomas Krichel wrote: > Jesse Erlbaum writes >> >>

[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

Re: [cgiapp] Multiple Authentications?

2010-06-16 Thread Jerry Kaidor
Hi Nicholas, Jerry, I think the way to make your code future version safe would be as follows: *** OK, I'm working on it. 1.) Derive a driver class from CGI::Application::Plugin::Authentication::Driver::DBI *** I created a file inside the same directory as DBI called MULTI_DBI.pm

[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
Hi Jerry Correct. The '_' is missing from MULTI_DBI. *** Yes, I was back and forth on that underscore. I just put it back in, because it didn't make any difference. So apparently there IS some sort of Perl system-wide list I don't think that's the problem... *** I don't think so

[cgiapp] CAP::Authentication Multi-Driver

2010-06-23 Thread Jerry Kaidor
::MULTI_DBI=HASH(0x89be0a8) looks like the same number to me Anybody know the magic to get new stuff to stick in $self-options? (Mostly fighting my own ignorance here, I know ) Thanks in advance, - Jerry # CGI::Application community mailing list

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] 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

[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

Re: [cgiapp] Weird Perl Internal Errors

2010-09-03 Thread Jerry Kaidor
Hi Jerry, Though off-topic for this list -- DBI appears to be the culprit -- since DBD::* modules usually have XS parts, that's probably where these errors are coming from. *** I have asked on dbi-users this morning. Meanwhile, I'd like to attack this from a time angle. Anybody know how

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] 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] 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] 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] 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] 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