3 questions: start/stop/restart ; db ; startup.pl

2006-02-24 Thread Jonathan Vanasco
question 1- i seem too often to be unable to do a restart of apache. instead of a restart, I need to stop, then start, otherwise my startup.pl file yells at me. on a hunch, i tried using apache::reload, and that alleviated the issue. thats fine for my dev box, but i don't want to run it

Re: [OT] modperl vs. Ruby

2006-02-24 Thread Randal L. Schwartz
> "Ryan" == Ryan Perry <[EMAIL PROTECTED]> writes: Ryan> Ruby is cool because of it integration with javascript. But Ruby Ryan> developers have told me that it doesn't scale well and you're better off Ryan> with a different framework like HTML::Mason if you need something Ryan> serious. Cata

Re: [OT] modperl vs. Ruby

2006-02-24 Thread Ryan Perry
Ruby is cool because of it integration with javascript. But Ruby developers have told me that it doesn't scale well and you're better off with a different framework like HTML::Mason if you need something serious. I use Mason, if you're looking for JS integration you can either make compon

Re: [OT] modperl vs. Ruby

2006-02-24 Thread Danny Brian
On Feb 24, 2006, at 4:00 PM, Alan Bailward wrote: It probably really comes down to personal preference and familiarity FWIW. And marketing.

Re: [OT] modperl vs. Ruby

2006-02-24 Thread Alan Bailward
Well, I only recently saw the top screencast on http://rubyonrails.org/screencasts (the blog in 58 lines of code thing) and was pretty impressed. The built in console, what appears to be really easy to use stuff (I'm a perl guy not a ruby guy so the ruby code looks pretty complex to me... ). Thou

Re: what is the best way to do ...

2006-02-24 Thread Torsten Foertsch
On Friday 24 February 2006 21:06, Philippe M. Chiasson wrote: > Yeah, I noticed, as it doesn't apply cleanly against svn HEAD. Could you > checkout http://svn.apache.org/repos/asf/perl/modperl/trunk/ and generate > your patch against it instead ? It'll make it much easier to > apply/test/review, th

Re: what is the best way to do ...

2006-02-24 Thread Philippe M. Chiasson
Torsten Foertsch wrote: > On Friday 24 February 2006 20:56, Torsten Foertsch wrote: > >>Here it is. > > I forgot, it is against 2.0.2. Yeah, I noticed, as it doesn't apply cleanly against svn HEAD. Could you checkout http://svn.apache.org/repos/asf/perl/modperl/trunk/ and generate your patch a

Re: what is the best way to do ...

2006-02-24 Thread Torsten Foertsch
On Friday 24 February 2006 20:56, Torsten Foertsch wrote: > Here it is. I forgot, it is against 2.0.2. pgp19SmkUsmLi.pgp Description: PGP signature

Re: what is the best way to do ...

2006-02-24 Thread Torsten Foertsch
On Friday 24 February 2006 12:50, Torsten Foertsch wrote: > I think I'll submit the patch later today. Here it is. The code runs for Apache 2.0 and 2.2. For Apache 2.0 when reading override options it returns simply a bitmask with all options allowed. That makes Apache 2.0 and 2.2 compatible in

Re: [OT] modperl vs. Ruby

2006-02-24 Thread Mark Galbreath
Better yet, ask your boss why s/he wants to use RoR.  If it is more than "because it's cool," enlighten us as well.   mark>>> "Harry Zhu" <[EMAIL PROTECTED]> 24-Feb-06 13:15:43 PM >>> Can some body worked/studied on both world tell me the pros and cons about these two?   Our system was built on

Re: [OT] modperl vs. Ruby

2006-02-24 Thread Jonathan Vanasco
Ruby on Rails is a MVC framework that runs on apache / its own server / lighty + fcgi ModPerl is perl embedded in an apache process They're not comparable. You want to comapre ruby with a (mvc) framework like Cataylst Mason Template Toolkit Embperl that runs

Re: [OT] modperl vs. Ruby

2006-02-24 Thread Frank Wiles
On Fri, 24 Feb 2006 12:15:43 -0600 "Harry Zhu" <[EMAIL PROTECTED]> wrote: > Can some body worked/studied on both world tell me the pros and cons > about these two? > > Our system was built on modperl, but the new boss intended to rebuilt > it on Ruby on Rail. How do we argue about it that perl/mo

Re: Segmentation fault in Text::ParseWords

2006-02-24 Thread Philippe M. Chiasson
Peter Mogensen wrote: > Hi, > > When parsing long lines to Text::ParseWords under mod_perl I get a > segmentation fault from Apache. (but not when I do the same from the > command line). > > The segmentation fault appears with a line lenght above 17460; > > This is the code: > ==

[OT] modperl vs. Ruby

2006-02-24 Thread Harry Zhu
Can some body worked/studied on both world tell me the pros and cons about these two?   Our system was built on modperl, but the new boss intended to rebuilt it on Ruby on Rail. How do we argue about it that perl/modperl have almost all the features that Ruby has and more?     Harry Zhu 

Segmentation fault in Text::ParseWords

2006-02-24 Thread Peter Mogensen
Hi, When parsing long lines to Text::ParseWords under mod_perl I get a segmentation fault from Apache. (but not when I do the same from the command line). The segmentation fault appears with a line lenght above 17460; This is the code: == use Text::ParseWords;

Re: what is the best way to do ...

2006-02-24 Thread Torsten Foertsch
On Thursday 23 February 2006 23:41, Philippe M. Chiasson wrote: > It used to pass in NULL all the time, until someone pointed out that it was > causing a bug with certain directives. So the fix was adding the $path > argument to add_config(). That someone was me. And it used to pass "/" as path. I

Re: find all uninitialized variables?

2006-02-24 Thread Konstantin Khomoutov
On Wed, Feb 22, 2006 at 06:10:59PM -0800, [EMAIL PROTECTED] wrote: > Looks like what I needed (if works) but with a lot of editting: use Module1, > use Module2, ..., use ModuleN. Why not just $ find . -type f -name '*.pl' -print \ -exec perl -Mstrict -Mwarnings -c '{}' \; 2>&1 >error.log?