I'm using a relatively simple erb to generate output. However, though  
it works, it also produces a lot of 'false' words in the output. This  
is easier shown than described. Here is the erb:

<h1>Image Search page</h1>
You can use this page to search for particular images in the GRECC  
collection of images, by specifying particular
properties you are interested in.
<% form_tag '/test' do -%>
<hr/>
<h2>Select Series of Interest:</h2>
<table>
<% counter = 0 %>
<% @series.each do |k|  %>
        <%= counter%4==0 ? "<tr>" : "" %>
                <td><small><%= k+":" %><%=  check_box_tag @seriesmap[k] 
%></small></ 
td>
        <%= counter%4==3 and counter > 1 ? "</tr>" : "" %>
        <% counter += 1 %>
<% end %>
</table>
<br />
<hr/>
<h2>Select Years of Interest:</h2>
<% @years.each do |y| %>
        <%= y.to_s + ":" %>
        <%= check_box_tag y.to_s %>
        <% end %>
<hr/>
<div><%= submit_tag 'Search' %></div>

   <% end -%>
-------------------------
And here is the first part of the generated output:

h1>Image Search page</h1>
You can use this page to search for particular images in the GRECC  
collection of images, by specifying particular
properties you are interested in.
<form action="/test" method="post"><div style="margin:0;padding: 
0"><input name="authenticity_token" type="hidden"  
value="9d151f1fc0d7db4d2797c4b49517ab0def669cfa" /></div><hr/>
<h2>Select Series of Interest:</h2>
<table>


        <tr>
                <td><small>(7313/102/1)+(7313/6/76):<input id="seriesB"  
name="seriesB" type="checkbox" value="1" /></small></td>
        false
        

        
                <td><small>(7313/7/40)+(7313/103/1):<input id="seriesB"  
name="seriesB" type="checkbox" value="1" /></small></td>

        false
        

        
                <td><small>+C 1.5mmAxT13dspgr:<input id="seriesB" 
name="seriesB"  
type="checkbox" value="1" /></small></td>
        false
        

-----------------------

Anyone know where those 'false's are coming from? It's got me stumped.

Thanks,
Ken

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to