aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/html/form_helpers.html
diff options
context:
space:
mode:
authorCassioMarques <cassiommc@gmail.com>2009-01-31 14:45:35 -0200
committerCassioMarques <cassiommc@gmail.com>2009-01-31 15:12:49 -0200
commit8e98b43db0d8defdb01ff5fef4f34846d1cdb50b (patch)
tree1b12848bdab051df197a5cf7f0eb4a6918a2f5f5 /railties/doc/guides/html/form_helpers.html
parentcbf4bef492eb9e65e51019924e19346b1aba07ad (diff)
downloadrails-8e98b43db0d8defdb01ff5fef4f34846d1cdb50b.tar.gz
rails-8e98b43db0d8defdb01ff5fef4f34846d1cdb50b.tar.bz2
rails-8e98b43db0d8defdb01ff5fef4f34846d1cdb50b.zip
Getting rid of some of the pre-existent content in the AR basics guide, adding new stuff to it.
Diffstat (limited to 'railties/doc/guides/html/form_helpers.html')
-rw-r--r--railties/doc/guides/html/form_helpers.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/doc/guides/html/form_helpers.html b/railties/doc/guides/html/form_helpers.html
index 2693f29a9a..d5e571ae31 100644
--- a/railties/doc/guides/html/form_helpers.html
+++ b/railties/doc/guides/html/form_helpers.html
@@ -197,7 +197,7 @@ Find out where to look for complex forms
</div>
<h3 id="_a_generic_search_form">1.1. A Generic search form</h3>
<div class="paragraph"><p>Probably the most minimal form often seen on the web is a search form with a single text input for search terms. This form consists of:</p></div>
-<div class="olist arabic"><ol class="arabic">
+<div class="olist"><ol>
<li>
<p>
a form element with "GET" method,
@@ -420,7 +420,7 @@ end</tt></pre>
&lt;% end %&gt;</tt></pre>
</div></div>
<div class="paragraph"><p>There are a few things to note here:</p></div>
-<div class="olist arabic"><ol class="arabic">
+<div class="olist"><ol>
<li>
<p>
<tt>:article</tt> is the name of the model and <tt>@article</tt> is the actual object being edited.
@@ -662,7 +662,7 @@ output:
<h2 id="_using_date_and_time_form_helpers">4. Using Date and Time Form Helpers</h2>
<div class="sectionbody">
<div class="paragraph"><p>The date and time helpers differ from all the other form helpers in two important respects:</p></div>
-<div class="olist arabic"><ol class="arabic">
+<div class="olist"><ol>
<li>
<p>
Dates and times are not representable by a single input element. Instead you have several, one for each component (year, month, day etc.) and so there is no single value in your <tt>params</tt> hash with your date or time.