RE: no_cache(1) and still cached?

2003-07-28 Thread Frank Maas
On Fri, 2003-07-25 at 04:32, Frank Maas wrote: Come to think of it, I have never had problems with mod_proxy caching thing I didn't want cached. Quite the opposite -- I had to be very careful with Expires headers to get anything cached at all. I think you might be mis-diagnosing the

Re: MP1, Redhat 7.3: Transmission size limited after some time

2003-07-28 Thread Ged Haywood
Hi there, On Thu, 3 Jul 2003, Gerd Knops wrote: I got a really odd problem: I have identical mod_perl/apache installs on FreeBSD 3.x systems and a few Redhat 7.3 systems. After some time running OK, the Redhat systems start acting up. Transmissions are suddenly cut of after somewhere

Can't locate object method cgi_env

2003-07-28 Thread ColinB
I'm trying to get some perl scripts that work OK under mod_perl 1 working in mod_perl 2. I'm therefore using the mod_perl 1 backward compatiblity, and also the Apache::Registry from mod_perl 1 (as described in the mod_perl 2 documentation to get around the chdir() problem). One of the scripts

Re: Can't locate object method cgi_env

2003-07-28 Thread Stas Bekman
ColinB wrote: I'm trying to get some perl scripts that work OK under mod_perl 1 working in mod_perl 2. I'm therefore using the mod_perl 1 backward compatiblity, and also the Apache::Registry from mod_perl 1 (as described in the mod_perl 2 documentation to get around the chdir() problem). One of

Re: Can't locate object method cgi_env

2003-07-28 Thread Stas Bekman
Stas Bekman wrote: ColinB wrote: I'm trying to get some perl scripts that work OK under mod_perl 1 working in mod_perl 2. I'm therefore using the mod_perl 1 backward compatiblity, and also the Apache::Registry from mod_perl 1 (as described in the mod_perl 2 documentation to get around the chdir()

Re: Can't locate object method cgi_env

2003-07-28 Thread ColinB
--- Stas Bekman [EMAIL PROTECTED] wrote: Stas Bekman wrote: ColinB wrote: One of the scripts sets up a request handler, but when it tries to execute: $r-cgi_env(AB_AUTHHOST=$host); I have never used that API, but I believe you misuse it. I think it should be:

Re: Can't locate object method cgi_env

2003-07-28 Thread Stas Bekman
ColinB wrote: --- Stas Bekman [EMAIL PROTECTED] wrote: Stas Bekman wrote: ColinB wrote: One of the scripts sets up a request handler, but when it tries to execute: $r-cgi_env(AB_AUTHHOST=$host); I have never used that API, but I believe you misuse it. I think it should be:

mod perl , windows/apache problem

2003-07-28 Thread Erik Browaldh
Hello everyone! I have written a program that takes argument from html-formula and read and write it to a textfile. When I tried it with perl mod 2, under windows with apache it doesnt work anymore. No new entries are written to the log-file.txt Ive tried chmod, especially r/w accesses but that

[OT] About XML and Petal (was Re: templating system opinions (axkit?))

2003-07-28 Thread Jean-Michel Hiver
XML syntax is crufty at best. It requires you to be strict and tediously correct with every character. So what. It's not like you can afford to forget that many curly braces or semicolons (well, except those at the end of a block) with Perl. That doesn't make it useless does it? You have to

Re: templating system opinions (axkit?)

2003-07-28 Thread Matt Sergeant
On Mon, 28 Jul 2003, Andy Wardley wrote: Jean-Michel Hiver wrote: Because Petal templates have to be well-formed XML, XML syntax is crufty at best. There's a lot in XML that is needless, but like perl still has a dump() function, we just say don't use that then. At it's core, XML is a very

ANNOUNCE: Bricolage 1.6.2

2003-07-28 Thread David Wheeler
I'm pleased to announce announce the release of Bricolage-Devel 1.6.2. This maintenance release addresses numerous issues discovered since the release of version 1.6.1. Some of the more important changes since 1.6.1 include: * New help pages for the destination, server, and action profiles.

RE: Test unexpectedly succeeded during make test

2003-07-28 Thread Laus, Ryan J.
Stas, Successfully installed LWP. I am receiving the following error when running make test cgiok 1/2# Failed test 2 in cgi.t at line 19 cgiFAILED test 2 Failed 1/2 tests, 50.00% okay Running the TEST -v command on ../ModPerl-Registry/t/cgi.t gives me

Re: templating system opinions (axkit?)

2003-07-28 Thread Andy Wardley
Matt Sergeant wrote: At it's core, XML is a very elegant syntax for defining a rich dataset of nodes It's a syntax for defining a dataset of nodes that all conform to XML's ideas about what a dataset of nodes looks like. I'm not convinced about rich or elegant. :-) and you find

Re: [OT] About XML and Petal (was Re: templating system opinions (axkit?))

2003-07-28 Thread Andy Wardley
Jean-Michel Hiver wrote: something like: div dir=!--VAR language_dir -- !--VAR some_content-- /div Which is completely impossible to validate and IMHO very hard to read. Agreed. The following is easier to read, IMHO, and is also valid XML markup. div dir=[% language_dir %] [%

[ANNOUNCE] Apache::SessionManager 0.06

2003-07-28 Thread Enrico Sorcinelli
The uploaded file Apache-SessionManager-0.06.tar.gz has entered CPAN as file: $CPAN/authors/id/E/EN/ENRYS/Apache-SessionManager-0.06.tar.gz size: 20944 bytes md5: 8e5332438deedd67ca71d5c3536ebb98 Changes from previous version - ! Removed an exit()

[MP1 and MP2] Apache-AuthenSmb ported

2003-07-28 Thread Shannon Eric Peevey
Hi! The uploaded file Apache-AuthenSmb-0.70.tar.gz has entered CPAN as file: $CPAN/authors/id/S/SP/SPEEVES/Apache-AuthenSmb-0.70.tar.gz size: 4004 bytes md5: ac1b1a29f5070f81efb9f1362b5815dc Apache::AuthenSMB - mod_perl NT Authentication module has now been ported to work with both

Re: [OT] About XML and Petal (was Re: templating system opinions(axkit?))

2003-07-28 Thread Jean-Michel Hiver
If you like a more straightforward approach, TT also lets you write: div dir=$language_dir $some_content /div See, I knew there would be something that we would agree on! :-) :) But at the risk of breaking compatibility with some validators / XML tools / etc. It

Re: [OT] About XML and Petal (was Re: templating system opinions (axkit?))

2003-07-28 Thread Kyle Dawkins
I suggest y'all check out Tapestry http://jakarta.apache.org/tapestry to see a really nice happy medium. It uses a templating language similar to TAL but much more flexible (and useful, in my mind) than rigid XML. All its templates can be used in things like Dreamweaver and GoLive with

Re: [OT] About XML and Petal (was Re: templating system opinions(axkit?))

2003-07-28 Thread Aleksandr Guidrevitch
Hi, All May be I'm a bit late here... But is there any sence in artifical XML templating languages since there is XSLT ? Just wonder whether there are cons other than long learning curve and performance issues ? Alex Gidrevich

[DIGEST] mod_perl digest 2003/07/14

2003-07-28 Thread jgsmith
-- mod_perl digest July 14, 2003 - July 27, 2003 -- Recent happenings in the mod_perl world... Features o

Re: [MP1 and MP2] Apache-AuthenSmb ported

2003-07-28 Thread Stas Bekman
Shannon Eric Peevey wrote: Hi! The uploaded file Apache-AuthenSmb-0.70.tar.gz has entered CPAN as file: $CPAN/authors/id/S/SP/SPEEVES/Apache-AuthenSmb-0.70.tar.gz size: 4004 bytes md5: ac1b1a29f5070f81efb9f1362b5815dc Apache::AuthenSMB - mod_perl NT Authentication module has now been

Re: Looking for Apache::Dispatch PPD

2003-07-28 Thread Randy Kobes
On Sun, 27 Jul 2003, Russell Lundberg wrote: Does anyone know where I might find a PPD file for Apache::Dispatch? I'm using Perl 5.6.1, Apache 1.3.27, mod_perl 1.27_01 (From Randy Kobes' perl-win32-bin-0.10.exe binary) on Win98. I'm not able to find it on either Active State or Mr. Kobes'

Re: [OT] About XML and Petal (was Re: templating system opinions(axkit?))

2003-07-28 Thread Chris Devers
On Mon, 28 Jul 2003, Aleksandr Guidrevitch wrote: May be I'm a bit late here... But is there any sence in artifical XML templating languages since there is XSLT ? Just wonder whether there are cons other than long learning curve and performance issues ? Well, in the case of just TAL/Petal,