Re: [OT] ApacheCon BOF

2001-03-23 Thread Tim Sweetman
Jonathan Gardner wrote: > > On Thu, 22 Mar 2001, Gunther Birznieks wrote: > > So apart from the Native American thread which I believe everyone has > > worked out... > > > > what do you want to do about T-Shirts? > > > > For me, three ideas stand out... > > 1) I did like the ModDonalds idea... >

Re: [OT] ApacheCon BOF

2001-03-23 Thread Randal L. Schwartz
> "Tim" == Tim Sweetman <[EMAIL PROTECTED]> writes: Tim> (But Trademark Difficulties(tm) probably take out this idea; there are Tim> better legal fights to be had). But in the US, we have safe harbor because of the 2 live crew supreme court case. This is a parody, remember!? Of course, you

RE: dbm locking info in the guide

2001-03-23 Thread David Harris
Stas, Sounds like you agree with me that downgrading locks from exclusive to shared is not a problem with the method I described in the last e-mail. Now you have a concern with upgrading locks from shared to exclusive: > David, please consider this scenario: > > ... At some point in time, proce

[ANNOUNCE] Cache-Cache 0.06

2001-03-23 Thread DeWitt Clinton
Summary: The Perl Cache package provides Cache::Cache, a generic interface for creating persistent data stores. This interface is implemented by the Cache::MemoryCache, Cache::SharedMemoryCache, Cache::FileCache, Cache::SizeAwareFileCache, Cache::SizeAwareMemoryCache, and Cache::Size

RE: dbm locking info in the guide

2001-03-23 Thread Stas Bekman
On Fri, 23 Mar 2001, David Harris wrote: > Stas, > > Sounds like you agree with me that downgrading locks from exclusive to > shared is not a problem with the method I described in the last e-mail. That's correct. > Now you have a concern with upgrading locks from shared to exclusive: > > > Dav

(new idea) RE: [OT] ApacheCon BOF

2001-03-23 Thread dave . clarke
How about a picture of a card game; on the table are a 9 of diamonds, Jack of Clubs, and King of spades. The dealer is about to play the Ace of perl. The caption reads, "mod_perl does the trick". Also in the dealer's hand are cards that say, IIS iPlanet Servertec

Charset?

2001-03-23 Thread Dave Rolsky
Is there a mod_perl way to set the character set besides doing: $r->content_type('text/html; charset=foo'); ??? That'd be handy for a future version. I can't find anything in the Apache.pm docs (1.24) or the guide for this. -dave /*== www.urth.org We await the New Sun ==

RE: dbm locking info in the guide

2001-03-23 Thread David Harris
(I apologize in advance for the horrible line wrapping my mailer will do.) Stas Bekman [mailto:[EMAIL PROTECTED]] wrote: > > Now you have a concern with upgrading locks from shared to exclusive: > > > > > David, please consider this scenario: > > > > > > ... At some point in time, processes A an

Re: Getting MAC address

2001-03-23 Thread Franck PORCHER
On Wed, 21 Mar 2001, John Whitnack wrote: > Is there a way to get a person MAC address using apache, mod_perl or > javascript. I have yet to find a way to do this? I need a way to > uniquely identify the computer a person is using (i.e. not ip address). > > John Whitnack > If I'm correct, MAC

compile problems with mod_perl 1.25, apache 1.3.19 and embperl 1.3.1 on AIX 4.3.3

2001-03-23 Thread Aivo Kalu
Hello, I'm trying to get running Apache, mod_perl and embperl, but no success. It seems like a problem of building a shared mod_perl module on AIX and exporting apache symbols as well, to enable to build shared emb-perl module. My steps so far: gcc 2.95.2. Built myself and installed. perl 5.

Problem with mod_perl 1.25 as a DSO with Apache 1.3.19 on Digital Unix 4.0F

2001-03-23 Thread Chris Adams
I am trying to use mod_perl 1.25 with Apache 1.3.19 on Digital Unix version 4.0F. When I build the DSO and try to load it into Apache, I get: Syntax error on line 486 of /usr/local/www/apache/1.3.19/conf/httpd.conf: Cannot load /usr/local/www/apache/1.3.19/libexec/libperl.so into server: Unresol

using Apache:DBI

2001-03-23 Thread C Smith
Hello everyone, I'm new to Apache mod_perl and this list. Please forgive me if the answer to this question has already been discussed. Using "PerlRequire startup.pl" to preload Apache::DBI, I get the following error from Apache: Had to create DBD::mysql::dr::imp_data_size unexpectedly at /usr/

Apache::ASP - Server->CreateObject

2001-03-23 Thread Jakob Adeltoft
I have a problem - I'm trying to convert my ASP code to Perl code for use with Apache::ASP on Win98. Currently I make Server.CreateObject calls fra within my asp page that generates an html page for me. The code is as below: <% Dim ASPLightningclogin Set ASPLightningclogin = Server.CreateObject("

Re: Charset?

2001-03-23 Thread Matt Sergeant
On Fri, 23 Mar 2001, Dave Rolsky wrote: > Is there a mod_perl way to set the character set besides doing: > > $r->content_type('text/html; charset=foo'); > > ??? No, that's the way you have to do it. -- /||** Founder and CTO ** ** http://axkit.com/ ** //||** AxKit.c

Re: Apache::ASP - Server->CreateObject

2001-03-23 Thread Joshua Chamas
Jakob Adeltoft wrote: > > I have a problem - I'm trying to convert my ASP code to Perl code for use > with Apache::ASP on Win98. Currently I make Server.CreateObject calls fra > within my asp page that generates an html page for me. > > The code is as below: > <% > Dim ASPLightningclogin > Set A

Chromium

2001-03-23 Thread Pierre Phaneuf
Did anyone try the Chromium Apache-based web server? More specifically (and topically), does it work with mod_perl? http://www.chromium.com/ -- "I've run DOOM more in the last few days than I have the last few months. I just love debugging ;-)" -- Linus Torvalds

RE: dbm locking info in the guide

2001-03-23 Thread Stas Bekman
> Perhaps we have a misunderstanding here. I would NEVER flock(UN) without > having just previously untie()d the database. And I would ALWAYS acquire a > lock immediately before tie()ing the database. That's the point. We have to write down all the assumptions or people will do the wrong thing. I