[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

IAre there some subtle bugs in ERB parsing?

voipfc

7/22/2007 4:13:00 AM

Is there any code in this ERB snippet that causes text after the EOF
to be included in the template.

Unless my understanding of ERB is inadequate there has to be some bug in it.
It has me at my wit's end.

=============

template = ERB.new <<-EOF

# rsync push mode

#rsync_push_command check

# <%= rsync_push_command %>

# rsync_forced_command
# <%= rsync_forced_command %>
#

EOF

some program code here

=====
After execution the text "some program code here" appears in the
template's output

Are there some circumstances under which ERB goes haywire?

Is there an alternate syntax to the ERB.NEW <<-EOF ... EOF syntax for
when the text is on multiple lines.

- Frank

4 Answers

David and Sharon Phillips

7/22/2007 5:27:00 AM

0


On 22/07/2007, at 2:13 PM, Frank Church wrote:

> Is there any code in this ERB snippet that causes text after the EOF
> to be included in the template.
>
> Unless my understanding of ERB is inadequate there has to be some
> bug in it.
> It has me at my wit's end.
>
> =============
>
> template = ERB.new <<-EOF
>
> # rsync push mode
>
> #rsync_push_command check
>
> # <%= rsync_push_command %>
>
> # rsync_forced_command
> # <%= rsync_forced_command %>
> #
>
> EOF
>
> some program code here
>
> =====
> After execution the text "some program code here" appears in the
> template's output
>
> Are there some circumstances under which ERB goes haywire?
>
> Is there an alternate syntax to the ERB.NEW <<-EOF ... EOF syntax for
> when the text is on multiple lines.
>
> - Frank

Hi Frank,

I'm not that familiar with erb, but from what you've described I'm
pretty sure the error's with the text block not ending where you want
it to.
Are you using an editor with syntax highlighting? If so, this will
show where the text block stops. The last EOF must have no whitespace
before it, and a carriage return immediately after. It's easy to get
caught out with a stray space on the end of the line.

Cheers,
Dave


Bil Kleb

7/22/2007 7:43:00 AM

0

Sharon Phillips (aka Dave) wrote:
> On 22/07/2007, at 2:13 PM, Frank Church wrote:
>> Is there an alternate syntax to the ERB.NEW <<-EOF ... EOF syntax for
>> when the text is on multiple lines.
>
> The last EOF must have no whitespace before it [..]

It can have white space before the token if you use the opening
'-' option as Frank has, but I think you've identified the culprit
here: white space /after/ the closing token.

Regards,
--
Bil Kleb
http://fun3d.lar...

David and Sharon Phillips

7/22/2007 7:57:00 AM

0

On 22/07/2007, at 5:44 PM, Bil Kleb wrote:

> Sharon Phillips (aka Dave) wrote:
>> On 22/07/2007, at 2:13 PM, Frank Church wrote:
>>> Is there an alternate syntax to the ERB.NEW <<-EOF ... EOF syntax
>>> for
>>> when the text is on multiple lines.
>>
>> The last EOF must have no whitespace before it [..]
>
> It can have white space before the token if you use the opening
> '-' option as Frank has, but I think you've identified the culprit
> here: white space /after/ the closing token.

I've always used <<EOF and had no idea that <<- existed. Thanks.

Cheers,
Dave


voipfc

7/22/2007 10:11:00 AM

0

On 22/07/07, Frank Church <voipfc@googlemail.com> wrote:
> Is there any code in this ERB snippet that causes text after the EOF
> to be included in the template.
>
> Unless my understanding of ERB is inadequate there has to be some bug in it.
> It has me at my wit's end.
>
> =============
>
> template = ERB.new <<-EOF
>
> # rsync push mode
>
> #rsync_push_command check
>
> # <%= rsync_push_command %>
>
> # rsync_forced_command
> # <%= rsync_forced_command %>
> #
>
> EOF
>
> some program code here
>
> =====
> After execution the text "some program code here" appears in the
> template's output
>
> Are there some circumstances under which ERB goes haywire?
>
> Is there an alternate syntax to the ERB.NEW <<-EOF ... EOF syntax for
> when the text is on multiple lines.
>
> - Frank
>

Thanks for the advice it was whitespace after the token