Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add benchmark helper that works in erb | Sergey Nartimov | 2012-01-07 | 1 | -3/+2 |
| | |||||
* | Move the last pockets of Sprockets stuff into the Sprockets directory | wycats | 2011-05-23 | 1 | -2/+0 |
| | |||||
* | More AV::Base cleanup. | José Valim | 2011-05-04 | 1 | -0/+2 |
| | |||||
* | Tidy up pending TODOs after discussion with Mr. Gatoz (@wycats). | José Valim | 2011-05-01 | 1 | -0/+2 |
| | |||||
* | removes ActionView::Helpers::PrototypeHelper | Xavier Noria | 2011-04-13 | 1 | -2/+0 |
| | |||||
* | removes ActionView::Helpers::ScriptaculousHelper | Xavier Noria | 2011-04-13 | 1 | -2/+0 |
| | |||||
* | Add SprocketsHelper | Joshua Peek | 2011-03-28 | 1 | -0/+2 |
| | |||||
* | Removed Array#safe_join in AS core_ext and moved it to a view helper with ↵ | Josh Kalderimis | 2011-02-10 | 1 | -2/+2 |
| | | | | | | the same same. This also changes how safe_join works, if items or the separator are not html_safe they are html_escape'd, a html_safe string is always returned. Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Revert "Removed Array#safe_join in AS core_ext and moved it to a view helper ↵ | José Valim | 2011-02-10 | 1 | -2/+2 |
| | | | | | | | | with the same same." Applied the wrong version. This reverts commit 98c0c5db50a7679b3d58769ac22cb0a27a62c930. | ||||
* | Removed Array#safe_join in AS core_ext and moved it to a view helper with ↵ | Josh Kalderimis | 2011-02-10 | 1 | -2/+2 |
| | | | | the same same. | ||||
* | There is no DeprecatedBlockHelpers in AV, so remove it | Carlos Antonio da Silva | 2010-09-26 | 1 | -1/+0 |
| | |||||
* | No need to delegate. Simply include the whole RecordIdentifier module. | José Valim | 2010-07-21 | 1 | -2/+0 |
| | |||||
* | Refactored url_for in AV to have its own instances of the helpers instead of ↵ | wycats | 2010-04-03 | 1 | -6/+3 |
| | | | | proxying back to the controller. This potentially allows for more standalone usage of AV. It also kicked up a lot of dust in the tests, which were mocking out controllers to get this behavior. By moving it to the view, it made a lot of the tests more standalone (a win) | ||||
* | Use ActiveSupport::Autoload for view helpers. [#4237 state:resolved] | Sam Elliott and Ryan Bigg | 2010-03-27 | 1 | -24/+26 |
| | | | Signed-off-by: wycats <wycats@gmail.com> | ||||
* | Deprecate block_called_from_erb? pending a solution for getting it into apps | Carlhuda | 2010-03-09 | 1 | -0/+1 |
| | |||||
* | Expose CSRF tag for UJS adapters | Jeremy Kemper | 2010-02-04 | 1 | -0/+2 |
| | |||||
* | Drop AjaxHelper | Joshua Peek | 2010-01-30 | 1 | -1/+0 |
| | |||||
* | Revert "Merge branch 'rails/master' into ujs" | Joshua Peek | 2010-01-30 | 1 | -3/+5 |
| | | | | | | | | | | | This reverts commit 3aa1ea1ae4baa4a03d03644e798eeb98a4745785, reversing changes made to 2c12a71378d2146c822acb389b00b866f6420ff5. Conflicts: actionpack/lib/action_view/helpers/javascript_helper.rb actionpack/lib/action_view/helpers/url_helper.rb actionpack/test/template/url_helper_test.rb | ||||
* | moving include of ScriptaculousHelper into PrototypeHelper, ActionView ↵ | Erik St. Martin | 2010-01-27 | 1 | -2/+0 |
| | | | | should know as little as possible about individual frameworks | ||||
* | restructure compatibility module so it is no longer a child | Stephen St. Martin | 2010-01-27 | 1 | -2/+2 |
| | |||||
* | Removed all helpers from PrototypeHelper that are implemented in AjaxHelper. ↵ | Erik St. Martin | 2010-01-27 | 1 | -2/+2 |
| | | | | Modified tests that extended with PrototypeHelper to now extend using AjaxHelper. AjaxHelper is now included by default in view helper | ||||
* | Unify benchmark APIs. | José Valim | 2009-10-15 | 1 | -2/+4 |
| | |||||
* | Switch to on-by-default XSS escaping for rails. | Michael Koziarski | 2009-10-08 | 1 | -0/+2 |
| | | | | | | | | | | | | This consists of: * String#html_safe! a method to mark a string as 'safe' * ActionView::SafeBuffer a string subclass which escapes anything unsafe which is concatenated to it * Calls to String#html_safe! throughout the rails helpers * a 'raw' helper which lets you concatenate trusted HTML from non-safety-aware sources (e.g. presantized strings in the DB) * New ERB implementation based on erubis which uses a SafeBuffer instead of a String Hat tip to Django for the inspiration. | ||||
* | First effort at new Ajax helpers | Yehuda Katz | 2009-07-20 | 1 | -0/+1 |
| | |||||
* | Rename ActiveRecordHelper to ActiveModelHelper | Yehuda Katz | 2009-07-20 | 1 | -2/+2 |
| | |||||
* | Pull autoload fix from 2-3-stable | Michael Koziarski | 2009-06-09 | 1 | -1/+1 |
| | |||||
* | simplify console with helpers | Joshua Peek | 2008-11-23 | 1 | -0/+1 |
| | |||||
* | use autoload instead of explicit requires for ActionView | Joshua Peek | 2008-11-23 | 1 | -5/+23 |
| | |||||
* | Remove the country_select helper. | Michael Koziarski | 2008-09-18 | 1 | -1/+0 |
| | | | | | | | | We're in no position to mediate disputes on this matter, and the previous change to use ISO 3166 has offended just as many people as the ad-hoc list did. If you want the old list back you can install the plugin: ruby script/plugin install git://github.com/rails/country_select.git | ||||
* | Include all helpers into ActionView::Helper | Joshua Peek | 2008-08-25 | 1 | -0/+39 |