Re: Sendmail mail from script

2006-06-05 Thread JupiterHost.Net
Мандип Сингх Бхабха wrote: How to use this module if there is russian language in subject field ? Body of message, can be send using html. use the # _text_info # _html_info keys for the message, use the Mail::Sender object's encoding methods for the subject, etc -- To unsubscribe, e-mail:

Re: Servlet

2006-06-05 Thread Dave Gray
On 5/30/06, Tom Allison [EMAIL PROTECTED] wrote: How can I impliment a Servlet in Perl without writing my own http server or running apache? What exactly are you trying to do? I assume you didn't get a response because you weren't very specific. -- To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Test::Pod::Coverage

2006-06-05 Thread Peter Scott
On Sun, 04 Jun 2006 16:57:13 +1000, Ken Foskey wrote: For example how do I ensure that there is a SYNOPSIS and DESCRIPTION section? Ah, you want something entirely different for that. Specifically, the tests performed by the Perl::Critic::Policy::Documentation::RequirePodSections class in the

help me!

2006-06-05 Thread sewe_perl
I wrote a program with activeperl 5.6 some days before,and it could work well. but today I run it under activeperl 5.8,it can work but there are some warnings(Please see the appendix). By the way,activeperl 5.8 do not support Chinese? 你 不 想 试 试 今 夏 最 “酷” 的 邮 箱 吗 ? 蕴 涵 中 华 传 统 文 化 于 世 界 一

Re: help me!

2006-06-05 Thread Dr.Ruud
sewe_perl schreef: I wrote a program with activeperl 5.6 some days before,and it could work well. but today I run it under activeperl 5.8,it can work but there are some warnings(Please see the appendix). By the way,activeperl 5.8 do not support Chinese? I guess that you need to put a use

How to set PREFIX when perl Makefile.PL

2006-06-05 Thread reader
I knew this sometime in the past but now not finding the answer in perldoc. How does one set a PREFIX when running ` perl Makefile.PL' so that that the resulting Makefile has the proper PREFIX? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to set PREFIX when perl Makefile.PL

2006-06-05 Thread reader
[EMAIL PROTECTED] writes: I knew this sometime in the past but now not finding the answer in perldoc. How does one set a PREFIX when running ` perl Makefile.PL' so that that the resulting Makefile has the proper PREFIX? Never mind somehow when I tried to perl Makefile.PL

What are the problems with my CGI script

2006-06-05 Thread chen li
Dear all, I just try a small CGI script. Although it displays no problem on the webpage there are two small errors in the script. I wonder if anyone here can help me figure out. And here is the script: #!c:/Perl/bin/perl.exe use warnings; use strict; use CGI; my $query_obj=CGI-new(); #creat

RE: What are the problems with my CGI script

2006-06-05 Thread Charles K. Clarkson
chen li wrote: : I just try a small CGI script. Although it displays no : problem on the webpage there are two small errors in : the script. I wonder if anyone here can help me figure : out. [snip helpful code] : my $name=$query_obj-param('text_field'); : print $query_obj-p,This is your name