Re: use http-equiv to refresh the page

2002-11-07 Thread mike808
me, you want to leave all the VMS, EBCDIC, and MSIE weirdness related to sending headers in the right order, checking values, including extras for broken browsers, and the all-important CRLF-CRLF header separator, et al. to CGI.pm. Mike808/ - http

Re: use http-equiv to refresh the page

2002-11-06 Thread mike808
the issue is a mod_perl one, but rather a CGI.pm one. BTW, Weiqi - there is a stlouis.pm perlmongers list. Mike808/ - http://www.valuenet.net

Re: Modperl! Your spam awaits you

2002-08-04 Thread mike808
if it came from a compromised account. And of course, send whatever info we can to the RBL folks (or your favorite public list of spam offenders). Mike808/ -- () Join the ASCII ribbon campaign against HTML email and Microsoft-specific /\ attachments. If I wanted to read HTML, I would have

Re: possible buget in CGI.pm

2002-07-23 Thread mike808
the options set on the 'use' line. LDS, You might want to separate the option parsing from the autoload magic in _setup_symbols(), and just call the option parsing part with the saved options from the 'use' line in the cleanup handler. Mike808/ -- () Join the ASCII ribbon campaign against HTML email

Re: CGI::Carp qw(fatalsToBroswer); question

2002-07-10 Thread mike808
some nits I've run across. Mike808/ - http://www.valuenet.net

Re: CGI::Application

2002-06-16 Thread mike808
is so interested in Mason, Template, XSLT and all of the other templating technologies. It's a simple business decision. Mike808/ -- () Join the ASCII ribbon campaign against HTML email and Microsoft-specific /\ attachments. If I wanted to read HTML, I would have visited your website! Support

Re: PDF generation

2002-04-03 Thread Mike808
office loved not having to decipher mangled handwritten faxes. Another product I've used for (gasp) Java is Root River systems. Very nice report-writer type API with decent page-flow behaviours. Don't know if you can run a JServ+mod_perl or JPerl hybrid, though. Mike808/ -- perl -le $_='7284254074

Re: performance testing - emulating real world use

2002-03-14 Thread mike808
on the existing sytem during a lunch hour. Mike808/ - http://www.valuenet.net

Re: [OT] email attachments - Win32 email reader to replace OE

2002-02-03 Thread Mike808
in some directions at some of the low-cost alternatives out there. Mike808/ -- perl -le $_='7284254074:0930970:H4012816';tr[0-][ BOPEN!SMUT];print

Re: [OT] Re: mod_perl Developer's Cookbook (and Amazon)

2002-02-02 Thread Mike808
as Amazon. So now it doesn't cost me anything to show my disgust for software and business model patents. As for the Amazon kickback, well, you have a sucky publisher for not giving you more of your directly generated sales. Mike808/ -- perl -le $_='7284254074:0930970:H4012816';tr[0-][ BOPEN

Re: [OT] pdf creation

2001-10-29 Thread Mike808
Mike808/ -- perl -le $_='7284254074:0930970:H4012816';tr[0-][ BOPEN!SMUT];print

Re: Excellent article on Apache/mod_perl at eToys

2001-10-24 Thread Mike808
Nathan Torkington wrote: I like the idea of P2EE. Yeah. Maybe it will take off better than Pervlets did. Mike808/ -- perl -le $_='7284254074:0930970:H4012816';tr[0-][ BOPEN!SMUT];print

Re: OT: placeholders and DBI

2001-09-01 Thread Mike808
in an SQL statement, by escaping any special characters (such as quotation marks) contained within the string and adding the required type of outer quotation marks. $sql = sprintf SELECT foo FROM bar WHERE baz = %s, $dbh-quote(Don't); Taken straight from the perldocs for DBI. mike808/ -- perl

Re: URI::URL - problem in LWP 5.53_95 with mod_perl

2001-08-27 Thread Mike808
earlier patch. My vote is for Cliff's patch to just 'use URI::URL;' in LWP::UserAgent.pm. If you don't feel like patching, remember to export PERL_HTTP_URI_CLASS=URI::URL instead. Mike808/ Stas Bekman wrote: What version of CPAN.pm are you using? CPAN.pm never picks distros

Re: URI::URL - problem in LWP 5.53_95 with mod_perl

2001-08-24 Thread mike808
I ran into the same problem. Found a simpler, cleaner solution. Just perform a export PERL_HTTP_URI_CLASS=URI::URL before building mod_perl, and you're home free. Long term, all mod_perl testing modules that assume URI::URL is loaded by LWP will now need to explicitly load URI::URL if they