[PHP] php/ruby drb adapter

2010-01-14 Thread Pete Yadlowsky
Hi, I'll be honest: php is not my favorite programming language. That honor goes to ruby. And I don't mean ruby-on-rails; just straight, pure unfettered ruby. I use ruby to write web applications and just about everything else. However, there are obviously very many web applications and web

RE: [PHP] PHP & RUBY

2001-05-22 Thread John Monfort
CTED] > www.phpbeginner.com > > > > > -Original Message- > From: John Monfort [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 22, 2001 2:42 PM > To: Maxim Maletsky > Cc: 'PHP General List. (E-mail)' > Subject: Re: [PHP] PHP & RUBY > > >

RE: [PHP] PHP & RUBY

2001-05-22 Thread scott [gts]
27; files could be confusing to others, so you might want to stick to the conventional naming system for simplicity's sake.... PHP=>".php", Ruby=>".rhtml" > -Original Message- > > Hello gurus, > > > > does anyone know a way to

RE: [PHP] PHP & RUBY

2001-05-21 Thread Maxim Maletsky
To: Maxim Maletsky Cc: 'PHP General List. (E-mail)' Subject: Re: [PHP] PHP & RUBY What is RUBY? -John On Tue, 22 May 2001, Maxim Maletsky wrote: > Hello gurus, > > does anyone know a way to make PHP and RUBY running together (parsing both > the same file) ? > >

Re: [PHP] PHP & RUBY

2001-05-21 Thread John Monfort
What is RUBY? -John On Tue, 22 May 2001, Maxim Maletsky wrote: > Hello gurus, > > does anyone know a way to make PHP and RUBY running together (parsing both > the same file) ? > > This is what I tried to do: > > httpd.conf: > > AddType application/x-httpd-php-source .phps >

RE: [PHP] PHP & RUBY

2001-05-21 Thread Maxim Maletsky
Cc: 'PHP General List. (E-mail)' Subject: Re: [PHP] PHP & RUBY Well, sort of by definition you can't do this. You can't have multiple mime types mapping to the same extension. And even if you could, Apache can only have one content-generating phase. Anything that genera

Re: [PHP] PHP & RUBY

2001-05-21 Thread Rasmus Lerdorf
Well, sort of by definition you can't do this. You can't have multiple mime types mapping to the same extension. And even if you could, Apache can only have one content-generating phase. Anything that generates content will send it back to the client. With Apache2 it will be possible to layer

[PHP] PHP & RUBY

2001-05-21 Thread Maxim Maletsky
Hello gurus, does anyone know a way to make PHP and RUBY running together (parsing both the same file) ? This is what I tried to do: httpd.conf: AddType application/x-httpd-php-source .phps AddType application/x-httpd-php .html #Action application/x-httpd-php "/php/php