aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/html/form_helpers.html
diff options
context:
space:
mode:
authorCassioMarques <cassiommc@gmail.com>2009-01-18 21:56:10 -0200
committerCassioMarques <cassiommc@gmail.com>2009-01-18 21:56:10 -0200
commit72d2a64f63b2325e46318d2d9096954c6f391861 (patch)
tree4781af68d239a102b3ef4c0fc9136e9b4a8fff8c /railties/doc/guides/html/form_helpers.html
parent986a7c620c8e1e2839fbc8f5727470aa23c195c4 (diff)
downloadrails-72d2a64f63b2325e46318d2d9096954c6f391861.tar.gz
rails-72d2a64f63b2325e46318d2d9096954c6f391861.tar.bz2
rails-72d2a64f63b2325e46318d2d9096954c6f391861.zip
Changed the 'guides' Rake task to ignore Vim swap files during the HTML generation, removed active_record_basics.txt from the ignore list and generated initial HTML of it with previous contents.
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 a43cbe584f..1054aa8ff5 100644
--- a/railties/doc/guides/html/form_helpers.html
+++ b/railties/doc/guides/html/form_helpers.html
@@ -196,7 +196,7 @@ Learn what makes a file upload form different;
</div>
<h3 id="_generic_search_form">1.1. 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,
@@ -433,7 +433,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 record.
@@ -633,7 +633,7 @@ output:
<h2 id="_date_and_time_select_boxes">5. Date and time select boxes</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>
Unlike other attributes you might typically have, dates and times are not representable by a single input element. Instead you have several, one for each component (year, month, day etc...). So in particular, there is no single value in your params hash with your date or time.