Problem with login example in Agile Web Development with Ruby 2nd Edition

C

chhenning

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:

<!--
! Excerpted from "Agile Web Development with Rails, 2nd Ed."
! We make no guarantees that this code is fit for any purpose.
! Visit http://www.pragmaticprogrammer.com/titles/rails2 for more book
information.
-->
<div class="depot-form">
<fieldset>
<legend>Please Log In</legend>

<% 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 %>
</fieldset>
</div>

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.

<html>
<head>
<title>Admin: login</title>
<link href="/stylesheets/scaffold.css?1168898602" media="screen"
rel="Stylesheet" type="text/css" />
</head>
<body>

<p style="color: green"></p>

<!--
! Excerpted from "Agile Web Development with Rails, 2nd Ed."
! We make no guarantees that this code is fit for any purpose.
! Visit http://www.pragmaticprogrammer.com/titles/rails2 for more book
information.
-->
<div class="depot-form">
<fieldset>
<legend>Please Log In</legend>


</fieldset>
</div>

</body>
</html>

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
 
J

Jan Svitok

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.
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:

<!--
! Excerpted from "Agile Web Development with Rails, 2nd Ed."
! We make no guarantees that this code is fit for any purpose.
! Visit http://www.pragmaticprogrammer.com/titles/rails2 for more book
information.
-->
<div class="depot-form">
<fieldset>
<legend>Please Log In</legend>

<% 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 %>
</fieldset>
</div>

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.
 
D

Dave Thomas

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
 
G

gmarik

chhenning said:
<% 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 %>
....
 
J

Jan Svitok

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
 
D

Dave Thomas

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,480
Members
44,900
Latest member
Nell636132

Latest Threads

Top