aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/action_view_overview.textile
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-02-091-2/+2
|\ | | | | | | | | Conflicts: activerecord/lib/active_record/relation/query_methods.rb
| * Stop referring to Atom as "ATOM"Tom Stuart2012-02-051-2/+2
| | | | | | | | | | | | $ curl -s http://www.ietf.org/rfc/rfc4287 | grep -io ATOM | sort | uniq -c 582 atom 175 Atom
* | Add *_url helpers to get the full assets URLPrem Sichanugrist2012-02-041-0/+24
| | | | | | | | | | | | | | Adds `image_url`, `javascript_url`, `stylesheet_url`, `audio_url`, `video_url`, and `font_url` to assets tag helper. These URL helpers will return the full path to your assets. This is useful when you are going to reference this asset from external host.
* | Remove default class to collection_check_boxes andRafael Mendonça França2012-02-021-6/+6
| | | | | | | | | | | | collection_radio_buttons [Carlos Antonio da Silva + Rafael Mendonça França]
* | Add changelog, docs and guides entriesCarlos Antonio da Silva2012-02-021-0/+73
|/ | | | [Carlos Antonio da Silva + Rafael Mendonça França]
* minor editVijay Dev2011-11-021-1/+1
|
* Fixing incorrect notextile tagsVijay Dev2011-09-161-1/+1
|
* No more changelogs inside guidesVijay Dev2011-09-151-7/+0
|
* Fix grammar for content_tag_for and div_for docs.Hendy Tanata2011-09-051-1/+1
|
* Make `content_tag_for` and `div_for` accepts the array of recordsPrem Sichanugrist2011-09-041-0/+77
| | | | | | | | | | | | | | | So instead of having to do this: @items.each do |item| content_tag_for(:li, item) do Title: <%= item.title %> end end You can now do this: content_tag_for(:li, @items) do |item| Title: <%= item.title %> end
* Updates to remove extra whitespaces and notably fix a whitespace issue with ↵Jeff Dutil2011-08-161-1/+0
| | | | ajax_on_rails causing a code block not to render the entire block properly.
* Replaced ‘ with ' in the guides.Evan Farrar2011-07-231-2/+2
|
* minor fixes in action view guideVijay Dev2011-06-111-3/+3
|
* s/an/a/Akira Matsuda2011-06-011-1/+1
|
* removed references to old remote_* helpers; add info about 3.1 adding ↵Vijay Dev2011-05-291-102/+5
| | | | multipart option to a form with file_field automatically
* Using each instead of for in actionview guideGuillermo Iguaran2011-05-191-1/+1
|
* restores the -j option, but now it accepts the name of any libraryXavier Noria2011-05-041-2/+0
| | | | | | If passed "foo", a gem "foo-rails" is added to the Gemfile and "foo" and "foo_ujs" are required in the application JavaScript manifest.
* Prototype and Scriptaculous are no longer vendored, but provided by ↵Xavier Noria2011-04-301-177/+2
| | | | prototype-rails from now on, also the -j option of the application generator is removed
* Revert "Better formatting"Xavier Noria2011-04-191-3/+3
| | | | | | No need to change this formatting. This reverts commit 9c861e8a0e2f21959ede5f71b56f8a50996d6416.
* Added CHANGELOG entry for new section additions on ActionView guideSebastian Martinez2011-04-161-0/+1
|
* Better formattingSebastian Martinez2011-04-161-3/+3
|
* Added Templates section on ActionView guide.Sebastian Martinez2011-04-161-0/+101
|
* Added Spacer Templates on Partials section of ActionView guide.Sebastian Martinez2011-04-161-0/+10
|
* Added Partials section to ActionView guide.Sebastian Martinez2011-04-161-2/+95
|
* Added Using Action View with Rails guide section.Sebastian Martinez2011-04-161-1/+22
|
* Remove extra whitespaces from guidesSebastian Martinez2011-04-141-3/+3
|
* s/ERb/ERB/g (part II)Akira Matsuda2011-04-031-1/+1
|
* revises links to the API websites of individual components (no longer ↵Xavier Noria2011-03-091-1/+1
| | | | maintained), and rewrites the section about after and around filters in the controller guide
* standardize all shell commands with the $ prefixVijay Dev2011-02-251-6/+6
|
* Fix Typos: remove several occurences of the theNicholas Rowe2011-02-171-1/+1
|
* fix formattingVijay Dev2010-12-261-1/+1
|
* use all and first instead of find(:all) and find(:first)Vijay Dev2010-12-251-4/+4
|
* It's JavaScript :)Vijay Dev2010-12-241-11/+11
|
* guides: gives clear instructions for feedback, removes links to the now ↵Xavier Noria2010-11-191-2/+0
| | | | archived LH project
* Reworded sentence using text from rails source code.Ugis Ozols2010-10-251-1/+1
|
* Remove mention to register_javascript_include_default in documentationRyan Bigg2010-10-111-3/+0
|
* Updated old fashion form_for samples.oamblet2010-09-151-1/+1
| | | | when 'form_for :resource, @resource ...' is found, remove the first argument (there is no need to use the :as option when the name is the same).
* Simplify render :partialJames Miller2010-08-261-1/+1
|
* Revert "to_json => as_json"Xavier Noria2010-08-261-1/+1
| | | | | | This reverts commit 7a6d8e4ad47d571541762a6c80cc3e1f6831bd40. Reason: The method that gives you a Ruby string with JSON source code is #to_json
* to_json => as_jsonJames Miller2010-08-251-1/+1
|
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-44/+44
| | | | 's/[ \t]*$//' -i {} \;)
* add <%= to fields_for exampleseparreno2010-05-281-1/+1
|
* More on the new ERB syntax in the guidesJames Miller2010-04-091-11/+11
|
* guides: adds support in the indexer for custom header IDs, and some refactorsXavier Noria2010-04-061-2/+2
|
* fixes duplicate element IDs in some guidesXavier Noria2010-04-041-1/+1
|
* Fix unescaped <% and %> on action_view_overview guideJaime Iniesta2010-04-011-1/+1
|
* AV guide: titleize is defined by Active SupportXavier Noria2010-03-011-2/+2
|
* AV overview guide: progress on helpersTrevor Turk2009-09-111-11/+513
|
* AV overview guide: helper docs progressTrevor Turk2009-09-091-24/+486
|
* Commit progress on Action View OverviewTrevor Turk2009-09-031-2/+317
|