Re: can't step through CGI source code

2007-02-06 Thread c chan
I am pretty sure the cgi is loaded via ModPerl::Registry because when I step into the Debugger, the Apache::ROOT::cgi_bin2blogin::handler is being displayed, it seems to include as a single line { $0 = /usr/local/www/cgi-bin/login } within the handler. except when I using 's' to step into the c

Re: Where does "MoveNext" belong to?

2007-02-06 Thread Robert Landrum
Patrix Diradja wrote: while(!$rsnya->{EOF}){ my $tab4l = $rsnya->fetchrow_array; print "\$tab4l: $tab4l \n"; $rsnya->movenext; } Not a mod_perl question, per se, but try while(my $tab4l = $rsnya->fetchrow_array) { print "\$tab4l: $tab4l\n"; } Rob

Re: [JOB] Open Source Systems Management

2007-02-06 Thread Jie Gao
Hi Doug, Welcome back! :-) Mod_perl rocks! :-) Jie On Wed, 31 Jan 2007, Doug MacEachern wrote: Date: Wed, 31 Jan 2007 14:42:18 -0800 From: Doug MacEachern <[EMAIL PROTECTED]> To: modperl@perl.apache.org Subject: [JOB] Open Source Systems Management Hi All, I haven't posted here in a coup

Re: [RFC] two ajax-related packages

2007-02-06 Thread Jonathan Vanasco
On Feb 6, 2007, at 4:04 AM, Issac Goldstand wrote: Maybe I'm missing something, but why not autodetect Apache2::Request + mod_perl2 presence and fallback to CGI if it doesn't work? Something like: I'm going to talk in context of CGI::Apache2::Ajax, as I haven't had time to look at the res

Re: [RFC] two ajax-related packages

2007-02-06 Thread Issac Goldstand
Randy Kobes wrote: > On Tue, 6 Feb 2007, Issac Goldstand wrote: > >> Randy Kobes wrote: >>> I'd be interested in any comments about these >>> packages, including their names. CGI::Apache2::Ajax >>> was tentatively chosen because, first of all, it only >>> provides CGI.pm-compatible methods that

Re: [RFC] two ajax-related packages

2007-02-06 Thread Randy Kobes
On Tue, 6 Feb 2007, Issac Goldstand wrote: Randy Kobes wrote: I'd be interested in any comments about these packages, including their names. CGI::Apache2::Ajax was tentatively chosen because, first of all, it only provides CGI.pm-compatible methods that the above two Ajax-related applications n

Speaking at SCALE 5x

2007-02-06 Thread Frank Wiles
Hi Everyone, Just wanted to let everyone know, if you're going to SCALE ( Southern California Linux Expo ) next weekend or live in the LA area I'll be giving an introductory talk on mod_perl 2 on Sunday afternoon. Not that any of you really need an introduction to it! :)

Re: can't step through CGI source code

2007-02-06 Thread Frank Wiles
On Tue, 6 Feb 2007 02:05:03 -0500 (EST) c chan <[EMAIL PROTECTED]> wrote: > I installed Apache::DB with mod_perl 2 on Apache 2.0, but Apache::DB > doesn't show any CGI source code even I tried to single step into the > CGI. Have anyone seen this and have a workaround for this? Are you sure y

Where does "MoveNext" belong to?

2007-02-06 Thread Patrix Diradja
Dear my friends I am writing a program use activeperl 5.8, MSSQL and on Win32 Env. Here is my code: === #!/usr/bin/perl use Tk; use Cwd; use DBI::ADO; use WriteExcel; use strict; use Win32::OLE qw( in ); my $dsn="sigma"; my $uname="sa"; my $pword="penguin"; my @bd4l=("AprovaApp1"); my $strs

Re: [RFC] two ajax-related packages

2007-02-06 Thread Issac Goldstand
Randy Kobes wrote: > I'd be interested in any comments about these > packages, including their names. CGI::Apache2::Ajax > was tentatively chosen because, first of all, it only > provides CGI.pm-compatible methods that the above two Ajax-related > applications need, and also, CGI::Ajax > expects th