Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | minor edit | Vijay Dev | 2011-11-02 | 1 | -1/+1 |
| | |||||
* | Fixing incorrect notextile tags | Vijay Dev | 2011-09-16 | 1 | -1/+1 |
| | |||||
* | No more changelogs inside guides | Vijay Dev | 2011-09-15 | 1 | -7/+0 |
| | |||||
* | Fix grammar for content_tag_for and div_for docs. | Hendy Tanata | 2011-09-05 | 1 | -1/+1 |
| | |||||
* | Make `content_tag_for` and `div_for` accepts the array of records | Prem Sichanugrist | 2011-09-04 | 1 | -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 Dutil | 2011-08-16 | 1 | -1/+0 |
| | | | | ajax_on_rails causing a code block not to render the entire block properly. | ||||
* | Replaced ‘ with ' in the guides. | Evan Farrar | 2011-07-23 | 1 | -2/+2 |
| | |||||
* | minor fixes in action view guide | Vijay Dev | 2011-06-11 | 1 | -3/+3 |
| | |||||
* | s/an/a/ | Akira Matsuda | 2011-06-01 | 1 | -1/+1 |
| | |||||
* | removed references to old remote_* helpers; add info about 3.1 adding ↵ | Vijay Dev | 2011-05-29 | 1 | -102/+5 |
| | | | | multipart option to a form with file_field automatically | ||||
* | Using each instead of for in actionview guide | Guillermo Iguaran | 2011-05-19 | 1 | -1/+1 |
| | |||||
* | restores the -j option, but now it accepts the name of any library | Xavier Noria | 2011-05-04 | 1 | -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 Noria | 2011-04-30 | 1 | -177/+2 |
| | | | | prototype-rails from now on, also the -j option of the application generator is removed | ||||
* | Revert "Better formatting" | Xavier Noria | 2011-04-19 | 1 | -3/+3 |
| | | | | | | No need to change this formatting. This reverts commit 9c861e8a0e2f21959ede5f71b56f8a50996d6416. | ||||
* | Added CHANGELOG entry for new section additions on ActionView guide | Sebastian Martinez | 2011-04-16 | 1 | -0/+1 |
| | |||||
* | Better formatting | Sebastian Martinez | 2011-04-16 | 1 | -3/+3 |
| | |||||
* | Added Templates section on ActionView guide. | Sebastian Martinez | 2011-04-16 | 1 | -0/+101 |
| | |||||
* | Added Spacer Templates on Partials section of ActionView guide. | Sebastian Martinez | 2011-04-16 | 1 | -0/+10 |
| | |||||
* | Added Partials section to ActionView guide. | Sebastian Martinez | 2011-04-16 | 1 | -2/+95 |
| | |||||
* | Added Using Action View with Rails guide section. | Sebastian Martinez | 2011-04-16 | 1 | -1/+22 |
| | |||||
* | Remove extra whitespaces from guides | Sebastian Martinez | 2011-04-14 | 1 | -3/+3 |
| | |||||
* | s/ERb/ERB/g (part II) | Akira Matsuda | 2011-04-03 | 1 | -1/+1 |
| | |||||
* | revises links to the API websites of individual components (no longer ↵ | Xavier Noria | 2011-03-09 | 1 | -1/+1 |
| | | | | maintained), and rewrites the section about after and around filters in the controller guide | ||||
* | standardize all shell commands with the $ prefix | Vijay Dev | 2011-02-25 | 1 | -6/+6 |
| | |||||
* | Fix Typos: remove several occurences of the the | Nicholas Rowe | 2011-02-17 | 1 | -1/+1 |
| | |||||
* | fix formatting | Vijay Dev | 2010-12-26 | 1 | -1/+1 |
| | |||||
* | use all and first instead of find(:all) and find(:first) | Vijay Dev | 2010-12-25 | 1 | -4/+4 |
| | |||||
* | It's JavaScript :) | Vijay Dev | 2010-12-24 | 1 | -11/+11 |
| | |||||
* | guides: gives clear instructions for feedback, removes links to the now ↵ | Xavier Noria | 2010-11-19 | 1 | -2/+0 |
| | | | | archived LH project | ||||
* | Reworded sentence using text from rails source code. | Ugis Ozols | 2010-10-25 | 1 | -1/+1 |
| | |||||
* | Remove mention to register_javascript_include_default in documentation | Ryan Bigg | 2010-10-11 | 1 | -3/+0 |
| | |||||
* | Updated old fashion form_for samples. | oamblet | 2010-09-15 | 1 | -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 :partial | James Miller | 2010-08-26 | 1 | -1/+1 |
| | |||||
* | Revert "to_json => as_json" | Xavier Noria | 2010-08-26 | 1 | -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_json | James Miller | 2010-08-25 | 1 | -1/+1 |
| | |||||
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵ | Santiago Pastorino | 2010-08-14 | 1 | -44/+44 |
| | | | | 's/[ \t]*$//' -i {} \;) | ||||
* | add <%= to fields_for examples | eparreno | 2010-05-28 | 1 | -1/+1 |
| | |||||
* | More on the new ERB syntax in the guides | James Miller | 2010-04-09 | 1 | -11/+11 |
| | |||||
* | guides: adds support in the indexer for custom header IDs, and some refactors | Xavier Noria | 2010-04-06 | 1 | -2/+2 |
| | |||||
* | fixes duplicate element IDs in some guides | Xavier Noria | 2010-04-04 | 1 | -1/+1 |
| | |||||
* | Fix unescaped <% and %> on action_view_overview guide | Jaime Iniesta | 2010-04-01 | 1 | -1/+1 |
| | |||||
* | AV guide: titleize is defined by Active Support | Xavier Noria | 2010-03-01 | 1 | -2/+2 |
| | |||||
* | AV overview guide: progress on helpers | Trevor Turk | 2009-09-11 | 1 | -11/+513 |
| | |||||
* | AV overview guide: helper docs progress | Trevor Turk | 2009-09-09 | 1 | -24/+486 |
| | |||||
* | Commit progress on Action View Overview | Trevor Turk | 2009-09-03 | 1 | -2/+317 |
| | |||||
* | Commit progress on Action View Overview | Trevor Turk | 2009-09-03 | 1 | -5/+69 |
| | |||||
* | Commit progress on Action View Overview guide | Trevor Turk | 2009-09-03 | 1 | -6/+75 |
| | |||||
* | Starting work on Action View Overview guide | Trevor Turk | 2009-04-05 | 1 | -0/+69 |