Problem with login example in Agile Web Development with Rub

Hi all, this is the first time I’m posting to this list or all Ruby on
Rails lists, at all. If I’m wrong here please let me know where the
best place is to put my question.

I’m doing the authentication example in the new Agile Development with
Rails book. For whatever reason the user login page doesn’t work. The
login.rhtml looks like this:

Please Log In
<% form_tag do %>
  <p>
    <label for="name">Name:</label>
    <%= text_field_tag :name, params[:name] %>
  </p>

  <p>
    <label for="password">Password:</label>
    <%= password_field_tag :password, params[:password] %>
  </p>

  <p>
    <%= submit_tag "Login" %>
  </p>
<% end %>

But when trying to display this site there aren’t any input fields.
Seems to me the “form_tag do” does produce any html code. My Firefox
browser simply shows the following page source.

Admin: login
Please Log In

Does anybody know what might be wrong with my application? Any hint is
very welcome. I’m in my first steps of using Ruby on Rails.

Thanks ahead,
Christian

On 1/16/07, chhenning [email protected] wrote:

Hi all, this is the first time I’m posting to this list or all Ruby on
Rails lists, at all. If I’m wrong here please let me know where the
best place is to put my question.

There is a google group specifically for Rails, so you might get
better help there.

Password: But when trying to display this site there aren't any input fields. Seems to me the "form_tag do" does produce any html code. My Firefox browser simply shows the following page source.

There is a new way to do this s seen here:
http://www.loudthinking.com/arc/000601.html

and old way seen here:
http://api.rubyonrails.com/classes/ActionView/Helpers/FormTagHelper.html#M000497

My action pack 1.12.5 seems to support just the old one.
api.rubyonrails.com knows nothing about the new one. Maybe this works
in development version (would be 1.2) only

So either change your script to use the old form, or install egderails
(I won’t help you with this, I guess it involves getting rails
directly from SVN)

J.

On Jan 16, 2007, at 1:05 PM, chhenning wrote:

Does anybody know what might be wrong with my application? Any hint is
very welcome. I’m in my first steps of using Ruby on Rails.

Did you install the version of Rails cited inside the book’s front
cover, and run rake rails:update?

Dave

chhenning wrote:

<% form_tag do %>

Does anybody know what might be wrong with my application? Any hint is
very welcome. I’m in my first steps of using Ruby on Rails.
Didn’t you forget = in the construction above? So it should look
like:
<%= form_tag do %>

On Jan 17, 2007, at 3:35 AM, gmarik wrote:

chhenning wrote:

<% form_tag do %>

Does anybody know what might be wrong with my application? Any
hint is
very welcome. I’m in my first steps of using Ruby on Rails.
Didn’t you forget = in the construction above? So it should look
like:
<%= form_tag do %>

No, that form is what should be used in 1.2. It works as long as
you’re running a 1.2 RC, or the code .zip file provided with the book.

Dave

On 1/17/07, gmarik [email protected] wrote:

chhenning wrote:

<% form_tag do %>

Does anybody know what might be wrong with my application? Any hint is
very welcome. I’m in my first steps of using Ruby on Rails.
Didn’t you forget = in the construction above? So it should look
like:
<%= form_tag do %>

No. See DHH’s blog. You either use = or do…end (if you have 1.2) and
= without block in 1.0. See
lib/actionpack/actionview/tag_form_helper.rb