mirror of https://github.com/rails/rails
Merge branch 'master' of github.com:rails/docrails
This commit is contained in:
commit
423f14183f
|
@ -258,7 +258,7 @@ module ActionController #:nodoc:
|
|||
|
||||
# Returns true or false if a request is verified. Checks:
|
||||
#
|
||||
# * is it a GET or HEAD request? Gets should be safe and idempotent
|
||||
# * Is it a GET or HEAD request? Gets should be safe and idempotent
|
||||
# * Does the form_authenticity_token match the given token value from the params?
|
||||
# * Does the X-CSRF-Token header match the form_authenticity_token
|
||||
def verified_request?
|
||||
|
|
|
@ -279,7 +279,7 @@ module ActionView
|
|||
# See <tt>number_to_human_size</tt> if you want to print a file
|
||||
# size.
|
||||
#
|
||||
# You can also define you own unit-quantifier names if you want
|
||||
# You can also define your own unit-quantifier names if you want
|
||||
# to use other decimal units (eg.: 1500 becomes "1.5
|
||||
# kilometers", 0.150 becomes "150 milliliters", etc). You may
|
||||
# define a wide range of unit quantifiers, even fractional ones
|
||||
|
|
|
@ -198,7 +198,7 @@ module ActiveRecord
|
|||
# Model.connection.transaction do # BEGIN
|
||||
# Model.connection.transaction(requires_new: true) do # CREATE SAVEPOINT active_record_1
|
||||
# Model.connection.create_table(...) # active_record_1 now automatically released
|
||||
# end # RELEASE savepoint active_record_1
|
||||
# end # RELEASE SAVEPOINT active_record_1
|
||||
# # ^^^^ BOOM! database error!
|
||||
# end
|
||||
#
|
||||
|
|
|
@ -28,7 +28,7 @@ In case you can't use the Rails development box, see section below, these are th
|
|||
Ruby on Rails uses Git for source code control. The [Git homepage](http://git-scm.com/) has installation instructions. There are a variety of resources on the net that will help you get familiar with Git:
|
||||
|
||||
* [Try Git course](http://try.github.io/) is an interactive course that will teach you the basics.
|
||||
* The [official Documentation](http://git-scm.com/documentation) is pretty comprehensive and also contains some videos with the basics of Git
|
||||
* The [official Documentation](http://git-scm.com/documentation) is pretty comprehensive and also contains some videos with the basics of Git.
|
||||
* [Everyday Git](http://schacon.github.io/git/everyday.html) will teach you just enough about Git to get by.
|
||||
* The [PeepCode screencast](https://peepcode.com/products/git) on Git is easier to follow.
|
||||
* [GitHub](http://help.github.com) offers links to a variety of Git resources.
|
||||
|
|
|
@ -291,8 +291,8 @@ You can create a similar binding without actually creating `<form>` tags with th
|
|||
```erb
|
||||
<%= form_for @person, url: {action: "create"} do |person_form| %>
|
||||
<%= person_form.text_field :name %>
|
||||
<%= fields_for @person.contact_detail do |contact_details_form| %>
|
||||
<%= contact_details_form.text_field :phone_number %>
|
||||
<%= fields_for @person.contact_detail do |contact_detail_form| %>
|
||||
<%= contact_detail_form.text_field :phone_number %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
```
|
||||
|
@ -441,7 +441,7 @@ Whenever Rails sees that the internal value of an option being generated matches
|
|||
|
||||
TIP: The second argument to `options_for_select` must be exactly equal to the desired internal value. In particular if the value is the integer `2` you cannot pass `"2"` to `options_for_select` - you must pass `2`. Be aware of values extracted from the `params` hash as they are all strings.
|
||||
|
||||
WARNING: when `:include_blank` or `:prompt` are not present, `:include_blank` is forced true if the select attribute `required` is true, display `size` is one and `multiple` is not true.
|
||||
WARNING: When `:include_blank` or `:prompt` are not present, `:include_blank` is forced true if the select attribute `required` is true, display `size` is one and `multiple` is not true.
|
||||
|
||||
You can add arbitrary attributes to the options using hashes:
|
||||
|
||||
|
|
Loading…
Reference in New Issue