Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

PHP ERB

30 views
Skip to first unread message

Patrick May

unread,
Jan 17, 2005, 4:39:36 PM1/17/05
to
Hello,

One of the nice things about php is that the '<?>' keys are close to
each other. One of the annoying things about asp and jsp is that '<>'
use one hand, and '%' uses another.

Attached is a patch to erb.rb that allows ?'s as well as %'s in erb
templates:

<% puts "this works" %>
<? puts "as does this" ?>

Let me know if there is anything I can do to make this a better patch.
If you want to play with this, you can grab the patched version of erb
from narf:

http://svn.narf-lib.org/svn/narf/trunk/lib/web/phprb.rb

I renamed the constant to PHPRB, so as not to collide with the standard
lib.

Cheers,

Patrick

Aredridel

unread,
Jan 17, 2005, 4:42:32 PM1/17/05
to
On Tue, 2005-01-18 at 06:39 +0900, Patrick May wrote:
> Hello,
>
> One of the nice things about php is that the '<?>' keys are close to
> each other. One of the annoying things about asp and jsp is that '<>'
> use one hand, and '%' uses another.
>
> Attached is a patch to erb.rb that allows ?'s as well as %'s in erb
> templates:
>
> <% puts "this works" %>
> <? puts "as does this" ?>

+1 in concept, because XML standards suggest it this way, too. However,
<?ruby is better, following the XML processing-instructions spec.

Patrick May

unread,
Jan 17, 2005, 4:44:15 PM1/17/05
to
Hello,

I've had some trouble sending the patch over. It is available here:

http://www.narf-lib.org/php.erb.patch

Cheers,

Patrick

Douglas Livingstone

unread,
Jan 17, 2005, 4:52:16 PM1/17/05
to
> > <? puts "as does this" ?>
>
> +1 in concept, because XML standards suggest it this way, too. However,
> <?ruby is better, following the XML processing-instructions spec.

or just, <?r ?>

(The PHP people say not to use shorttags (<?= $var ?>) too, there was
a zend contest here the 2nd place guy got put down to 6th for that!
And the best prizes were in the top 5 :p )

Douglas


"Luis G. Gómez"

unread,
Jan 17, 2005, 5:02:20 PM1/17/05
to
<?rb ?> gets my vote

Stefan Scholl

unread,
Jan 17, 2005, 6:03:16 PM1/17/05
to
On 2005-01-17 22:42:32, Aredridel wrote:

> +1 in concept, because XML standards suggest it this way, too. However,
> <?ruby is better, following the XML processing-instructions spec.

Why bother? I don't think something like

<a href="foo/?baz=<?ruby print xyz.poo(42) ?>">

is valid XML either.

Eric Hodel

unread,
Jan 17, 2005, 7:15:29 PM1/17/05
to
On 17 Jan 2005, at 13:39, Patrick May wrote:

> Hello,
>
> One of the nice things about php is that the '<?>' keys are close to
> each other. One of the annoying things about asp and jsp is that '<>'
> use one hand, and '%' uses another.

That's because you're using the wrong keyboard. Switch to dvorak
layout. ;)

Its even easier than <?, because you're not using your pinky to hit one
of the keys.

(No, really this kinda stuff is useful. :)

--
Eric Hodel - drb...@segment7.net - http://segment7.net
FEC2 57F1 D465 EB15 5D6E 7C11 332A 551C 796C 9F04

PGP.sig

gabriele renzi

unread,
Jan 18, 2005, 12:59:28 AM1/18/05
to
Douglas Livingstone ha scritto:

>>> <? puts "as does this" ?>
>>
>>+1 in concept, because XML standards suggest it this way, too. However,
>><?ruby is better, following the XML processing-instructions spec.
>
>
> or just, <?r ?>

+1 for <?r (which IIRC is Nitro's way of doing things :)

George Moschovitis

unread,
Jan 18, 2005, 4:16:38 AM1/18/05
to
Btw, this is EXACTLY what Nitro uses:

<?r if user.role("admin") ?>
...
<?r end ?>

or even

<?ruby .... ?>

or even
<ruby>...</ruby>


check this out: www.rubyforge.com/projects/nitro

George Moschovitis

unread,
Jan 18, 2005, 4:21:14 AM1/18/05
to
> Why bother? I don't think something like
> <a href="foo/?baz=<?ruby print xyz.poo(42) ?>">
> is valid XML either.

but,

<a href="foo/?baz=#{xyz.poo(42)}">...</a>
as used in Nitro is valid xml :)

-G.

Stefan Scholl

unread,
Jan 18, 2005, 12:23:12 PM1/18/05
to

<a href="foo/?baz=23" <?ruby if xyz.poo(42) ?> target="moep"
<?ruby else ?> title="Example" <?ruby end ?>>

Christian Neukirchen

unread,
Jan 18, 2005, 2:28:50 PM1/18/05
to
gabriele renzi <rff...@remove-yahoo.it> writes:

Get pragmatic and allow both <?r and <?ruby. :-)

--
Christian Neukirchen <chneuk...@gmail.com> http://chneukirchen.org


0 new messages