Re: Apache::VMonitor problem

2002-04-26 Thread Richard Titmuss
Stas Bekman wrote: Richard Titmuss wrote: Hi, I am trying to setup Apache::VMonitor on a mod-perl enabled server. The page is returned OK but some of the information seem corrupt. The following is an example of the output which I get: ##PID M Elapsed LastReq Srvd Size Share

Re: Soaplite debugging with modperl

2002-04-26 Thread Geoffrey Young
Richard Clarke wrote: Hi Guys, Can someone suggest a good method for debugging the server portion of soaplite applications when used in a mod perl context. Debugging in the sense that I want to print out strings to apache log or similar. I've had good with this setup for the

Re: Apache::VMonitor problem

2002-04-26 Thread Stas Bekman
Richard Titmuss wrote: Stas Bekman wrote: Richard Titmuss wrote: Hi, I am trying to setup Apache::VMonitor on a mod-perl enabled server. The page is returned OK but some of the information seem corrupt. The following is an example of the output which I get: ##PID M Elapsed

Re: the cookbook review on perl.com

2002-04-26 Thread Jon Robison
Not sure I would want this person evaluating my books . . . not so great if you need your hands holded. Somebody get this reviewer a grammer checker! --Jon Robison Stas Bekman wrote: For a nice review of the latest and the greatest mod_perl cookbook head to perl.com:

How to generate pre-filled forms?

2002-04-26 Thread F . Xavier Noria
I am writing some modules that receive a form, process it, and return a page that includes that very form. Is there a standard way to fill that returned form so the user sees the same data he sent there, as CGI.pm does? -- fxn PS: I am using Apache modules + HTML::Template if that matters.

RE: the cookbook review on perl.com

2002-04-26 Thread Wiswell, Virginia
Somebody get this reviewer a grammer checker! this is a joke, right? -Original Message- From: Jon Robison [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 9:14 AM To: Stas Bekman Cc: [EMAIL PROTECTED] Subject: Re: the cookbook review on perl.com Not sure I would want this

Re: How to generate pre-filled forms?

2002-04-26 Thread Wim Kerkhoff
On 26-Apr-2002 Paul Lindner wrote: On Fri, Apr 26, 2002 at 04:15:52PM +0200, F.Xavier Noria wrote: I am writing some modules that receive a form, process it, and return a page that includes that very form. Is there a standard way to fill that returned form so the user sees the same data he

Re: the cookbook review on perl.com

2002-04-26 Thread Jon Robison
No it is not. It should read not so great if you need your hands held. --Jon R Wiswell, Virginia wrote: Somebody get this reviewer a grammer checker! this is a joke, right? -Original Message- From: Jon Robison [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 9:14 AM

Re: How to generate pre-filled forms?

2002-04-26 Thread Kee Hinckley
At 4:15 PM +0200 4/26/02, F.Xavier Noria wrote: I am writing some modules that receive a form, process it, and return a page that includes that very form. Is there a standard way to fill that returned form so the user sees the same data he sent there, as CGI.pm does? -- fxn PS: I am using

Re: the cookbook review on perl.com

2002-04-26 Thread John Saylor
Hi -Original Message- From: Jon Robison [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 9:14 AM Somebody get this reviewer a grammer checker! ( 02.04.26 09:22 -0400 ) Wiswell, Virginia: this is a joke, right? No, gramper wants to keep tabs on her. -- \js incentivize

Re: the cookbook review on perl.com

2002-04-26 Thread fliptop
Jon Robison wrote: No it is not. It should read not so great if you need your hands held. i think he was referring to the fact that you spelled grammar incorrectly.

Re: the cookbook review on perl.com

2002-04-26 Thread Jon Robison
Oye! Hmmat least I have the excuse that I'm not a writer ;-) --Jon Fran Fabrizio wrote: Wiswell, Virginia wrote: Somebody get this reviewer a grammer checker! this is a joke, right? Uh, Jon, she was pointing out that you misspelled 'grammar'. :-) -Fran

Re: the cookbook review on perl.com

2002-04-26 Thread Jon Robison
Crud! Well, at least I hadn't said spell checker! --Jon fliptop wrote: Jon Robison wrote: No it is not. It should read not so great if you need your hands held. i think he was referring to the fact that you spelled grammar incorrectly.

Re: the cookbook review on perl.com

2002-04-26 Thread Iain Truskett
* Jon Robison ([EMAIL PROTECTED]) [27 Apr 2002 00:12]: Hmmat least I have the excuse that I'm not a writer ;-) That's fine. Simon's not a copy editor. =) cheers, -- iain. http://eh.org/~koschei/

Re: How to generate pre-filled forms?

2002-04-26 Thread F . Xavier Noria
On Fri, 26 Apr 2002 16:15:52 +0200 F. Xavier Noria [EMAIL PROTECTED] wrote: : I am writing some modules that receive a form, process it, and return a : page that includes that very form. Is there a standard way to fill that : returned form so the user sees the same data he sent there, as CGI.pm

Re: How to generate pre-filled forms? (fwd)

2002-04-26 Thread Ken Y. Clark
Forgot to cc the list. -- Forwarded message -- Date: Fri, 26 Apr 2002 11:35:37 -0400 (EDT) From: Ken Y. Clark [EMAIL PROTECTED] To: F.Xavier Noria [EMAIL PROTECTED] Subject: Re: How to generate pre-filled forms? On Fri, 26 Apr 2002, F.Xavier Noria wrote: Date: Fri, 26 Apr 2002

Re: How to generate pre-filled forms? (fwd)

2002-04-26 Thread darren chamberlain
* Ken Clark [EMAIL PROTECTED] [2002-04-26 14:33]: I'll throw my technique into the ring, too. I use Template Toolkit most of the time, and I pass the original Apache request object back to the template as a parameter. Then I call the param method to fill in the value of form elements, like