Re: Apache::Perfmon 0.011

2000-08-23 Thread Ask Bjoern Hansen
On Tue, 22 Aug 2000, Stas Bekman wrote: [...] Sorry, it's in contrib, not the book: http://perl.apache.org/dist/contrib/Timeit.pm And I have an improved version which I for some reason never uploaded to CPAN. I guess I didn't get everything I wanted to work to work. :) Next time I need it

Re: Apache::Perfmon 0.011

2000-08-23 Thread Stas Bekman
On Wed, 23 Aug 2000, Ask Bjoern Hansen wrote: On Tue, 22 Aug 2000, Stas Bekman wrote: [...] Sorry, it's in contrib, not the book: http://perl.apache.org/dist/contrib/Timeit.pm And I have an improved version which I for some reason never uploaded to CPAN. I guess I didn't get

Acmemail vs WING (was Re: mod_perl-friendly webmail solutions?)

2000-08-23 Thread martin langhoff
I found the one that Luis suggested, (acmemail) and a few more, including WING. These 2 are the only ones programmed to take advantage of mod_perl. I fear the other ones are not mod_perl aware, so the may not be safe/efficient under mod_perl, so my choices are mainly between these two.

Re: Acmemail vs WING (was Re: mod_perl-friendly webmail solutions?)

2000-08-23 Thread Leon Brocard
martin langhoff sent the following bits through the ether: Acmemail is nicely documented, and seems 'ready to go' (tempting!), although I fear it may not be as configurable as I want. Do you know anything about it? As the main developer of acmemail, I'd actually go for WING - acmemail is

Re: Acmemail vs WING (was Re: mod_perl-friendly webmail solutions?)

2000-08-23 Thread David Hodgkinson
Leon! Development will start again as soon as yapc::Europe is over and people get back from holiday, honest. Scalability will really only happen when I can get some beefy servers to test it on. What are the scalability issues? I'm looking at the possiblity of doing this for some hundreds of

executing a cgi from within a handler (templating redux)

2000-08-23 Thread Todd Finney
Hi, I'm building a simple templating system. The major requirement of the system is that allow custom dynamic headers, footers, and toolbars based upon the identity of the user. The system so far works like this: - a user enters the site and logs in. The names of the user's

Re: Acmemail vs WING (was Re: mod_perl-friendly webmail solutions?)

2000-08-23 Thread entropic
On Wed, Aug 23, 2000 at 02:51:22PM +0100, David Hodgkinson wrote: Leon! Development will start again as soon as yapc::Europe is over and people get back from holiday, honest. Scalability will really only happen when I can get some beefy servers to test it on. What

Re: Acmemail vs WING (was Re: mod_perl-friendly webmail solutions?)

2000-08-23 Thread brian moseley
On Wed, 23 Aug 2000 [EMAIL PROTECTED] wrote: Wing scales well. Its the 'imap' server where you will have issues. I use wing with imap-uw and about 50 'trusted' users. what issues will you have with the imap server? I'm looking into a 'ldap' email alternative. But haven't learned the

Re: executing a cgi from within a handler (templating redux)

2000-08-23 Thread Ken Y. Clark
On Wed, 23 Aug 2000, Todd Finney wrote: Hi, I'm building a simple templating system. The major requirement of the system is that allow custom dynamic headers, footers, and toolbars based upon the identity of the user. is there a particular reason why you've not chosen to use one

A precision about All RAM Consumed in the manual

2000-08-23 Thread Benoit Caron
Hello. I've read the recommendation in http://perl.apache.org/guide/control.html#All_RAM_Consumed to put a sub like that sub UNIVERSAL::AUTOLOAD { my $class = shift; warn "$class can't \$UNIVERSAL::AUTOLOAD!\n"; } to trap the memory leaking that

New module cadidate Apache::AddHostPath

2000-08-23 Thread Robert Jenks
I have written a new PerlTransHandler module which I currently calling Apache::AddHostPath. It was written to solve a problem I am having in an application I am writing, however if others think it might be usefull and there isn't already something out there that does it, I'd be more than happy

Re: Acmemail vs WING (was Re: mod_perl-friendly webmail solutions?)

2000-08-23 Thread martin langhoff
entropic, is WING something I can deploy and configure/customize (like most webmail solutions) or should code the interface to get it to work? does it support imap folders and address books? martin [EMAIL PROTECTED] wrote: Wing scales well. Its the 'imap' server where you

Re: executing a cgi from within a handler (templating redux)

2000-08-23 Thread Todd Finney
Thanks, Ken. We looked at Template::Toolkit and also at Axkit, but both seemed to be much larger hammers than we needed. It also (and I could be incorrect here) did not appear to have the capability to select the included component dynamically based upon information provided at request

Updates to www.modperl.com site

2000-08-23 Thread Lincoln Stein
Hi, I am very gradually making changes to the modperl book site. My plan over the next few weeks is to bring more of the examples online. Suggestions for priorities are very much appreciated. As of this morning, I have added an online demo of my Apache::MP3 module, which does nice directory

Re: executing a cgi from within a handler (templating redux)

2000-08-23 Thread Matt Sergeant
On Wed, 23 Aug 2000, Todd Finney wrote: Thanks, Ken. We looked at Template::Toolkit and also at Axkit, but both seemed to be much larger hammers than we needed. It also (and I could be incorrect here) did not appear to have the capability to select the included component dynamically

Re: Producing an error page

2000-08-23 Thread Nathan Vonnahme
-Original Message- From: Jay Strauss [mailto:[EMAIL PROTECTED]] I've tried the suggestions so far: cgi::carp http://perl.apache.org/guide/snippets.html#Redirecting_Errors_to_t he_Client BEGIN { print "Content-Type: text/plain\n\n"; *STDERR = *STDOUT } Jay, Below is a module I

Re: executing a cgi from within a handler (templating redux)

2000-08-23 Thread Alex Menendez
H, the do does seem a little inefficient. I solved this problem in the past by intiating a subrequest and changing the stack handler to cgi-script right before running the cgi. something like this: $subr = $r-lookup_uri($uri); if($r-filename =~ /\.(cgi|pl)$)/o) {

RE: env in background process

2000-08-23 Thread Sheth, Niraj
Didn't get any reply yet on this, so I think i am doing something very stupid ... Can anyone try it and tell me if gets the same result? Thanks, Niraj -Original Message- From: Niraj Sheth [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 15, 2000 11:03 AM To: [EMAIL PROTECTED]

Re: executing a cgi from within a handler (templating redux)

2000-08-23 Thread Perrin Harkins
On Wed, 23 Aug 2000, Todd Finney wrote: We were looking for a way to do only templating, and leave (essentially) everything else on the site alone. For that, Template Toolkit, HTML::Template, or CGI::FastTemplate are probably your best options. Almost, but we still have a couple of concerns

RE: Producing an error page

2000-08-23 Thread Perrin Harkins
On Tue, 22 Aug 2000, Howard Jones wrote: Something that may be worthwhile as a starting point for you is CGI::Debug There is an Apache::Debug in the standard distribution. If you turn on the debugging flag in Apache::Registry, it looks like it will send the errors to the client using this

VB parser

2000-08-23 Thread Jerrad Pierce
So what happened to the VB parser? Is it going forward?

Re: VB parser

2000-08-23 Thread Billy Donahue
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 23 Aug 2000, Jerrad Pierce wrote: Date: Wed, 23 Aug 2000 14:05:19 -0400 From: Jerrad Pierce [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: VB parser So what happened to the VB parser? Is it going forward? There was just a week of

anon CVS of modperl hangs?

2000-08-23 Thread Jens-Uwe Mager
I am trying to do an anon cvs update of modperl and it appears to hang without doing anything. I can cvs upd other projects. Could anyone try that and look if it works? -- Jens-Uwe Mager HELIOS Software GmbH Steinriede 3 30827 Garbsen Germany Phone: +49 5131 709320 FAX:+49

Re: executing a cgi from within a handler (templating redux)

2000-08-23 Thread Matt Sergeant
On Wed, 23 Aug 2000, Todd Finney wrote: Managing the site in a different way would be pretty great, but we've been asked to do something fairly complicated (this borders thingy) on very short time. We were looking for a way to do only templating, and leave (essentially) everything else

Re: anon CVS of modperl hangs?

2000-08-23 Thread Stas Bekman
On Wed, 23 Aug 2000, Jens-Uwe Mager wrote: I am trying to do an anon cvs update of modperl and it appears to hang without doing anything. I can cvs upd other projects. Could anyone try that and look if it works? It's located on the same machine with other apache projects, the machine (locus)

Re: Passing a hash to a cgi outside a form?

2000-08-23 Thread Ruben I Safir
Passing a Hash is a CGI proble (and done like all hash passing). Mod_perl is not CGI. Please - if you can. try to send messages as text only without an attachment. Ruben perl wrote: Hi there! Sorry for this question which might sound easy to you, but, does anyone know : How can a CGI

make test error (long)

2000-08-23 Thread Christopher Everett
OK, I know this is a little bit off topic, and I won't resent any flamage agreeing with me on that but I can't raise any responses whatsoever in comp.infosystems.www.servers.unix and [EMAIL PROTECTED] is quiet, so I'm bringing my troubles here in the hopes that I can get at least pointed in

PATCH: AIX build fix for the apaci style build

2000-08-23 Thread Jens-Uwe Mager
Well, I have only used the apxs DSO style build previously and did not notice that for linking modperl statically into httpd (apaci style) there are small problems due to the AIX specifix .exp file business. The following patch fixes this, in particular it adds the mod_perl.exp file as an export

make test error (followup)

2000-08-23 Thread Christopher Everett
I've been advised to follow up with more compilation and os/compiler/hardware/etc info ASAP so here it is: OS: Linux 2.2.17 (debian) compiler: gcc 2.95.2 make: Gnu make v. 3.78.1 ldGnu ld 2.9.5 Hardware: Pentium-166, 96 MB RAM I'm following the instructions from the guide for

Re: Apache::Icon fix

2000-08-23 Thread George Sanderson
Update: Apache/1.3.12 (Unix) mod_perl/1.24_01-dev/Perl-5.6.0/linux-2.2.14. (mod_perl linked statically.) with Icon.pm. I hope I am not bugging anyone with my problem and I appreciate any help. I have made some progress isolating the problem. With a minimal config. (with only Apache::Icon

Re: executing a cgi from within a handler (templating redux)

2000-08-23 Thread Todd Finney
At 03:00 PM 8/23/00, Matt Sergeant wrote: On Wed, 23 Aug 2000, Todd Finney wrote: Almost, but we still have a couple of concerns about it. First, it would mean that we'd have to update all the cgis to not use CGI.pm for form argument handling. I doubt thats true - CGI.pm just gets its

STDIN and subrequests

2000-08-23 Thread Alex Menendez
hello, all I am currently trying to have a cgi execute in a mod_perl module by generating a subrequest to the executable via lookup_uri. It is working great for GET requests. However, POST requests are obviously failing because only the uri is being passed to the subrequest and not the main

RE: anon CVS of modperl hangs?

2000-08-23 Thread Geoffrey Young
doesn't work for me... cvsup seems to be up, though --Geoff -Original Message- From: Jens-Uwe Mager [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 23, 2000 2:54 PM To: [EMAIL PROTECTED] Subject: anon CVS of modperl hangs? I am trying to do an anon cvs update of modperl

cvs commit: modperl-site/embperl CVS.pod.1.html CVS.pod.cont.html Changes.pod.1.html Changes.pod.10.html Changes.pod.11.html Changes.pod.12.html Changes.pod.13.html Changes.pod.14.html Changes.pod.15.html Changes.pod.16.html Changes.pod.17.html Changes.pod.18.html Changes.pod.19.html Changes.pod.2.html Changes.pod.20.html Changes.pod.21.html Changes.pod.22.html Changes.pod.23.html Changes.pod.24.html Changes.pod.25.html Changes.pod.26.html Changes.pod.27.html Changes.pod.28.html Changes.pod.29.html Changes.pod.3.html Changes.pod.30.html Changes.pod.31.html Changes.pod.32.html Changes.pod.33.html Changes.pod.34.html Changes.pod.35.html Changes.pod.36.html Changes.pod.37.html Changes.pod.38.html Changes.pod.39.html Changes.pod.4.html Changes.pod.40.html Changes.pod.5.html Changes.pod.6.html Changes.pod.7.html Changes.pod.8.html Changes.pod.9.html Changes.pod.cont.html Embperl.pod.10.html Embperl.pod.11.html Embperl.pod.12.html Embperl.pod.13.html Embperl.pod.14.html Embperl.pod.15.html Embperl.pod.16.html Embperl.pod.17.html Embperl.pod.18.html Embperl.pod.3.html Embperl.pod.4.html Embperl.pod.5.html Embperl.pod.6.html Embperl.pod.7.html Embperl.pod.8.html Embperl.pod.9.html EmbperlObject.pod.1.html EmbperlObject.pod.2.html EmbperlObject.pod.3.html EmbperlObject.pod.4.html EmbperlObject.pod.5.html EmbperlObject.pod.6.html EmbperlObject.pod.cont.html Faq.pod.1.html Faq.pod.2.html Faq.pod.3.html Faq.pod.4.html Faq.pod.5.html Faq.pod.6.html Faq.pod.7.html Faq.pod.8.html Faq.pod.9.html Faq.pod.cont.html Features.pod.1.html Features.pod.cont.html INSTALL.pod.1.html INSTALL.pod.cont.html Intro.pod.1.html Intro.pod.10.html Intro.pod.2.html Intro.pod.3.html Intro.pod.4.html Intro.pod.5.html Intro.pod.6.html Intro.pod.7.html Intro.pod.8.html Intro.pod.9.html Intro.pod.cont.html Intrors.pod.1.html Intrors.pod.2.html Intrors.pod.3.html Intrors.pod.4.html Intrors.pod.cont.html Mail.pod.1.html Mail.pod.2.html Mail.pod.cont.html Sites.pod.1.html Sites.pod.cont.html

2000-08-23 Thread richter
richter 00/08/23 22:44:43 Modified:embperl CVS.pod.1.html CVS.pod.cont.html Changes.pod.1.html Changes.pod.10.html Changes.pod.11.html Changes.pod.12.html Changes.pod.13.html Changes.pod.14.html

RE: anon CVS of modperl hangs?

2000-08-23 Thread Geoffrey Young
doesn't work for me... cvsup seems to be up, though --Geoff -Original Message- From: Jens-Uwe Mager [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 23, 2000 2:54 PM To: [EMAIL PROTECTED] Subject: anon CVS of modperl hangs? I am trying to do an anon cvs update of modperl