Re: Problem With DB_File Installation On Red-Hat Linux 7.1 [OT]

2002-03-15 Thread Nicholas Studt
Joe Breeden wrote [ 2002/03/14 at 09:15:44 ] It has been a few weeks since I went through this and I have seen a squirrel or two since then and it was a bad experience so I have tried to block the memories of the awful awful day. I hope this helps, but I doubt it will. Good luck. A much

Re: Problem With DB_File Installation On Red-Hat Linux 7.1

2002-03-15 Thread Michael
I'm trying to install DB_File on our Red-Hat Linux. 7.1 box and am getting an error about having 2 versions of BerkeleyDB installed. The log of the installation follows. Any help would be appreciated. This problem is easy to fix. 1) get and install BerkeleyDB-4.0 2) Re-install your

Re: [WOT] emacs and WEBDAV

2002-03-15 Thread Michael Alan Dorman
Rob Bloodgood [EMAIL PROTECTED] writes: DW also speaks WEBDAV natively, but emacs does not. Not natively, but there is a DAV mode for emacs, apparently fairly new. From the Debian package: Package: eldav Priority: optional Section: net Installed-Size: 61 Maintainer: Fumitoshi UKAI [EMAIL

Re: problem in recompiling

2002-03-15 Thread Ged Haywood
Hi there, On Thu, 14 Mar 2002, Parag R Naik wrote: I am using ActivePerl 5.6 . I had executed the Makefile.PL with Active Perl hence the Makefile created contain the activeperl entry .. I don't know anything about ActivePerl. I think that its use might be the cause of your problem. Can

problem in recompiling

2002-03-15 Thread Parag R Naik
I get the following problem while recompiling mod-perl can any body help ?? cc -c -I.. -I/usr/local/lib/perl5/5.6.1/i686-linux/CORE -I../os/unix -I../include -DLINUX=22 -DMOD_PERL -DUSE_PERL_SSI -DUSE_REENTRANT_API -D_POSIX_C_SOURCE=199506L -D_REENTRANT -fno-strict-aliasing

[ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Jonathan M. Hollin
Fellow mod_perl hackers... It is with great pleasure that I am able to introduce you to the new mod_perl logo. So, without further ado, point your web-browsers at: http://beverley2.digital-word.com/mod_perl/winner/ The winning logo, designed by Michael Demers (mike [at] inteo.com), won by a

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Mark Fowler
On Fri, 15 Mar 2002, Jonathan M. Hollin wrote: However, I request your comments on this idea: should we have just one button (helping to develop a distinct identity for mod_perl) or should we have several (for choice)? It's up to you... I think that we need one theme of buttons, to ensure

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Andrew Green
In article 001401c1cc08$bab4f2b0$b1a1a8c2@orpheus, Jonathan M. Hollin [EMAIL PROTECTED] wrote: However, I request your comments on this idea... Was there a button in the same style as the winning logo? Could Michael be persuaded to create one if not? I'm inclined to think a new logo is

RE: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Jonathan M. Hollin
:: I think that we need one theme of buttons, to ensure :: consistent branding. As per my comments when I voted :: stated, I'd love to see some buttons/logos based on the :: winning logo. In particular: :: :: - A square button that's just made up of the square cog logo :: - A square

RE: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Jonathan M. Hollin
:: Was there a button in the same style as the winning logo? :: Could Michael be persuaded to create one if not? :: :: I'm inclined to think a new logo is little use if you're not :: consistent with the imagery it uses. Tying a button design :: into that imagery is, IMO, essential. I will

RE: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Matt Sergeant
On Fri, 15 Mar 2002, Jonathan M. Hollin wrote: :: Is the logo available in a vector file format so that we can :: easily make :: scaled copies of it? Or are we restricted to the pixel banners that :: currently exist? All I have is non-vector JPEG. Again, I'll ask Michael. If we can find

Creating a proxy using mod_perl

2002-03-15 Thread Marius Kjeldahl
I have a site that does secure credit card transactions on behalf of merchants. As soon as a cardholder on the merchant site is ready to pay, the merchant redirects the cardholder to my site, and I pick up payment details from the cardholder directly over SSL. When the cardholder is accessing

Re: Creating a proxy using mod_perl

2002-03-15 Thread Nico Erfurth
Marius Kjeldahl wrote: Any other ways of accomplishing the same without the added overhead of my perl module? There was an example in the eagle-book, AFAIR, you need to build a custom PerlTranslateHandler and rewrite the filename to the url of your customer and use $r-handler(mod-proxy),

Re: Creating a proxy using mod_perl

2002-03-15 Thread Igor Sysoev
On Fri, 15 Mar 2002, Marius Kjeldahl wrote: Any other ways of accomplishing the same without the added overhead of my perl module? You can use 1. mod_proxy: ProxyPass /images/http://image.site/image/ 2. mod_accel: AccelPass /images/http://image.site/image/ 3. default-handler -

Re: Creating a proxy using mod_perl

2002-03-15 Thread Marius Kjeldahl
I guess these all suffer from the fact that the parameters have to be specified in httpd.conf, which makes it impossible to pass a url to fetch from in a parameter, right? Marius K. Igor Sysoev wrote: On Fri, 15 Mar 2002, Marius Kjeldahl wrote: Any other ways of accomplishing the same

Re: Creating a proxy using mod_perl

2002-03-15 Thread Steven Cotton
On Fri, 15 Mar 2002, Igor Sysoev wrote: On Fri, 15 Mar 2002, Marius Kjeldahl wrote: Any other ways of accomplishing the same without the added overhead of my perl module? You can use 1. mod_proxy: ProxyPass /images/http://image.site/image/ I'd go for this, perhaps with

Re: Creating a proxy using mod_perl

2002-03-15 Thread Igor Sysoev
On Fri, 15 Mar 2002, Marius Kjeldahl wrote: I guess these all suffer from the fact that the parameters have to be specified in httpd.conf, which makes it impossible to pass a url to fetch from in a parameter, right? So mod_rewite with mod_proxy or mod_accel: RewriteRule

Re: Creating a proxy using mod_perl

2002-03-15 Thread Bill Moseley
At 05:11 PM 3/15/2002 +0300, Igor Sysoev wrote: On Fri, 15 Mar 2002, Marius Kjeldahl wrote: I guess these all suffer from the fact that the parameters have to be specified in httpd.conf, which makes it impossible to pass a url to fetch from in a parameter, right? So mod_rewite with

Re: Creating a proxy using mod_perl

2002-03-15 Thread Igor Sysoev
On Fri, 15 Mar 2002, Bill Moseley wrote: At 05:11 PM 3/15/2002 +0300, Igor Sysoev wrote: On Fri, 15 Mar 2002, Marius Kjeldahl wrote: I guess these all suffer from the fact that the parameters have to be specified in httpd.conf, which makes it impossible to pass a url to fetch from in

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread John Saylor
Hi ( 02.03.15 10:03 - ) Jonathan M. Hollin: However, I request your comments on this idea: should we have just one button (helping to develop a distinct identity for mod_perl) or should we have several (for choice)? It's up to you... TMTOWTDI, of course- multiple buttons! -- \js

Re: problem in recompiling

2002-03-15 Thread Randy Kobes
On Fri, 15 Mar 2002, Parag R Naik wrote: I get the following problem while recompiling mod-perl can any body help ?? cc -c -I.. -I/usr/local/lib/perl5/5.6.1/i686-linux/CORE -I../os/unix -I../includ e -DLINUX=22 -DMOD_PERL -DUSE_PERL_SSI -DUSE_REENTRANT_API -D_POSIX_C_SOURCE=1 99506L

RE: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Jonathan M. Hollin
:: Was there a button in the same style as the winning logo? :: Could Michael be persuaded to create one if not? :: :: I'm inclined to think a new logo is little use if you're not :: consistent with the imagery it uses. Tying a button design :: into that imagery is, IMO, essential. Michael

RE: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Joe Breeden
I think buttons based on the new logo are the way to go. -Original Message- From: Jonathan M. Hollin [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 9:17 AM To: 'Andrew Green'; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [ANNOUNCE] The New mod_perl logo - results now

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread David Ranney
All, I really like the new logo, and in fact I voted for it. However, I just realized that the logo uses modperl, whereas mod_perl's name is mod_perl, with the underscore. Does anyone else see this as a problem? I've always been annoyed at how often the spelling gets modified, and it seems that

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Geoffrey Young
David Ranney wrote: All, I really like the new logo, and in fact I voted for it. However, I just realized that the logo uses modperl, whereas mod_perl's name is mod_perl, with the underscore. Does anyone else see this as a problem? I've always been annoyed at how often the spelling gets

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Ged Haywood
Hi there, On Fri, 15 Mar 2002, David Ranney wrote: I really like the new logo, and in fact I voted for it. However, I just realized that the logo uses modperl, whereas mod_perl's name is mod_perl, with the underscore. Does anyone else see this as a problem? I've always been annoyed at how

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Gunther Birznieks
At 10:46 PM 3/15/2002, John Saylor wrote: Hi ( 02.03.15 10:03 - ) Jonathan M. Hollin: However, I request your comments on this idea: should we have just one button (helping to develop a distinct identity for mod_perl) or should we have several (for choice)? It's up to you...

RE: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Jonathan M. Hollin
:: I really like the new logo, and in fact I voted for it. :: However, I just realized that the logo uses modperl, :: whereas mod_perl's name is mod_perl, with the underscore. :: Does anyone else see this as a problem? I've always been :: annoyed at how often the spelling gets modified, and

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Wim Kerkhoff
Jonathan M. Hollin wrote: Fellow mod_perl hackers... It is with great pleasure that I am able to introduce you to the new mod_perl logo. So, without further ado, point your web-browsers at: http://beverley2.digital-word.com/mod_perl/winner/ The winning logo, designed by Michael

Re: [WOT] emacs and WEBDAV

2002-03-15 Thread Keith G. Murphy
Kee Hinckley wrote: Emacs over WebDAV should work fine if you run something that supports WebDAV as a filesystem (e.g. OSX), but that's not going to help you much. If you're running Linux, this looks like fun: http://sourceforge.net/projects/dav There's also kiwifs:

ANNOUNCE: Bricolage 1.2.2

2002-03-15 Thread David Wheeler
The Bricolage development team is proud to announce the release of Bricolage version 1.2.2. This is a maintenance release with many bug fixes. All Bricolage 1.1 and 1.2 users are strongly encouraged to upgrade to this version in order to take advantage of its greater stability and reliability.

[OT] underscores vs. init caps

2002-03-15 Thread Perrin Harkins
Georgy Vladimirov wrote: The Java people escaped from the underscore and started capitalization. underscores_are_much_easier_to_read ThanSomeSillyCapitalizationScheme. Underscores are the standard for Perl variable names, and for good reason. Anyway, it's a moot point because the name isn't

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Ade Olonoh
The underscore really belongs to the C/C++ language and isn't really so much of a standard in Perl. Not true. From perlstyle: While short identifiers like $gotit are probably ok, use underscores to separate words. It is generally easier to read $var_names_like_this than

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Bill Moseley
At 04:33 PM 03/15/02 -0500, Georgy Vladimirov wrote: I actually like the logo without the underscore. I don't think an underscore is very collaborative with art. The _ has always been irritating me a little. I know that there is history and nostalgia involved here but dropping an underscore at

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-15 Thread Andrew Ho
Hello, WKA single button that matches the logo will be simplier, and more WKdistinct. Too many choices is making it harder for the newcomers. I agree here. But then, TMTOWTDI is a big part of Perl culture. I suggest a democratic solution: present the logo and the favorite logo-based button as

What's in a name? (was: Re: [ANNOUNCE] The New mod_perl logo - results now in...)

2002-03-15 Thread David Kaufman
Georgy Vladimirov [EMAIL PROTECTED] wrote: I actually like the logo without the underscore. I don't think an underscore is very collaborative with art. The _ has always been irritating me a little. I know that there is history and nostalgia involved here but dropping an underscore at least