Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Ensure ActionView::TemplateFinder view cache is rebuilt on initialize. | Joshua Peek | 2008-06-08 | 1 | -0/+2 |
| | |||||
* | Drop ActionController::Base.allow_concurrency flag | Joshua Peek | 2008-06-08 | 1 | -0/+2 |
| | |||||
* | Changelog: More efficient concat and capture helpers. Remove ↵ | Jeremy Kemper | 2008-06-07 | 1 | -0/+2 |
| | | | | ActionView::Base.erb_variable. | ||||
* | Add RJS#page.reload. [#277 state:resolved] | Sean Huber | 2008-06-04 | 1 | -0/+2 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Fixed Request#remote_ip to only raise hell if the HTTP_CLIENT_IP and ↵ | David Heinemeier Hansson | 2008-06-03 | 1 | -0/+4 |
| | | | | HTTP_X_FORWARDED_FOR doesnt match (not just if theyre both present) [Mark Imbriaco, Bradford Folkens] | ||||
* | Allow caches_action to accept a layout option [#198 state:resolved] | josevalim | 2008-06-03 | 1 | -0/+2 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Added Rack processor | Ezra Zygmuntowicz | 2008-06-01 | 1 | -0/+3 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Making ready for release of 2.1 | David Heinemeier Hansson | 2008-05-31 | 1 | -2/+2 |
| | |||||
* | InstanceTag#default_time_from_options overflows to DateTime | gbuesing | 2008-05-18 | 1 | -0/+2 |
| | |||||
* | Merge branch 'master' of git@github.com:rails/rails | rick | 2008-05-13 | 1 | -1/+5 |
|\ | |||||
| * | Making ready for RC1 release | David Heinemeier Hansson | 2008-05-11 | 1 | -1/+1 |
| | | |||||
| * | Fixed that forgery protection can be used without session tracking (Peter ↵ | David Heinemeier Hansson | 2008-05-11 | 1 | -0/+2 |
| | | | | | | | | Jones) [#139 state:resolved] | ||||
| * | Added session(:on) to turn session management back on in a controller ↵ | David Heinemeier Hansson | 2008-05-11 | 1 | -0/+2 |
| | | | | | | | | subclass if the superclass turned it off (Peter Jones) [#136 state:resolved] | ||||
* | | fix merge conflict with actionpack changelog | rick | 2008-05-10 | 1 | -0/+3 |
|\| | |||||
| * | ActionView::InstanceTag#default_time_from_options with hash args uses ↵ | gbuesing | 2008-05-08 | 1 | -0/+2 |
| | | | | | | | | Time.current as default; respects hash settings when time falls in system local spring DST gap | ||||
| * | Adding Date.current, which returns Time.zone.today if config.time_zone is ↵ | gbuesing | 2008-05-08 | 1 | -0/+2 |
| | | | | | | | | set; otherwise returns Date.today. ActionView date_helper uses Date.current to determine locale-appropriate default | ||||
* | | Change the request forgery protection to go by Content-Type instead of ↵ | rick | 2008-05-06 | 1 | -0/+2 |
|/ | | | | request.format so that you can't bypass it by POSTing to "#{request.uri}.xml" [#73 state:resolved] | ||||
* | Fixed that TextHelper#text_field would corrypt when raw HTML was used as the ↵ | David Heinemeier Hansson | 2008-05-01 | 1 | -0/+2 |
| | | | | value (mchenryc, Kevin Glowacz) [#80 state:resolved] | ||||
* | Added ActionController::TestCase#rescue_action_in_public! to control whether ↵ | David Heinemeier Hansson | 2008-04-27 | 1 | -0/+2 |
| | | | | the action under test should use the regular rescue_action path instead of simply raising the exception inline (great for error testing) [DHH] | ||||
* | Delegate ivars to controller instead of copying | Pratik Naik | 2008-04-21 | 1 | -0/+2 |
| | | | | | Reduce number of instance variables being copied from controller to view. Instead, delegate them to controller instance. | ||||
* | select_datetime and select_time default to Time.zone.now when ↵ | gbuesing | 2008-04-21 | 1 | -0/+2 |
| | | | | config.time_zone is set | ||||
* | datetime_select defaults to Time.zone.now when config.time_zone is set | gbuesing | 2008-04-21 | 1 | -0/+2 |
| | |||||
* | Remove ActionController::Base#view_controller_internals | Pratik Naik | 2008-04-21 | 1 | -0/+2 |
| | | | | | | Get rid of ActionController::Base#view_controller_internals flag and use @@protected_view_variables for storing the list of controller specific instance variables which should be inaccessible inside views. | ||||
* | Add conditional options to caches_page method [#25 state:resolved] | Paul Horsfall | 2008-04-19 | 1 | -0/+2 |
| | | | | Signed-off-by: Joshua Peek <josh@joshpeek.com> | ||||
* | Move missing template logic to ActionView | Pratik Naik | 2008-04-19 | 1 | -0/+2 |
| | |||||
* | Introduce ActionView::InlineTemplate class | Pratik Naik | 2008-04-19 | 1 | -0/+2 |
| | |||||
* | Automatically parse posted JSON content for Mime::JSON requests. [rick] | Rick Olson | 2008-04-08 | 1 | -0/+10 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9242 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | add json_escape ERB util to escape html entities in json strings that are ↵ | Rick Olson | 2008-04-08 | 1 | -0/+2 |
| | | | | | | output in HTML pages. [rick] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9241 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Provide a helper proxy to access helper methods from outside views. Closes ↵ | Josh Peek | 2008-04-06 | 1 | -0/+3 |
| | | | | | | #10839 [Josh Peek] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9234 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Improve documentation. | Pratik Naik | 2008-04-05 | 1 | -0/+2 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9226 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Ensure RJS redirect_to doesn't html-escapes string argument. Closes #8546 | Pratik Naik | 2008-04-02 | 1 | -0/+2 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9212 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Support render :partial => collection of heterogeneous elements. Closes #11491. | Jeremy Kemper | 2008-04-01 | 1 | -0/+2 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9177 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Avoid remote_ip spoofing | Jeremy Kemper | 2008-03-28 | 1 | -0/+2 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9124 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Added support for regexp flags like ignoring case in the :requirements part ↵ | David Heinemeier Hansson | 2008-03-28 | 1 | -0/+2 |
| | | | | | | of routes declarations (closes #11421) [NeilW] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9115 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Fixed that ActionController::Base#read_multipart would fail if boundary was ↵ | David Heinemeier Hansson | 2008-03-28 | 1 | -0/+2 |
| | | | | | | exactly 10240 bytes (closes #10886) [ariejan] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9113 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Fixed HTML::Tokenizer (used in sanitize helper) didnt handle unclosed CDATA ↵ | David Heinemeier Hansson | 2008-03-28 | 1 | -0/+2 |
| | | | | | | tags (closes #10071) [esad, packagethief] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9111 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Improve documentation. | Pratik Naik | 2008-03-26 | 1 | -0/+2 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9093 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Fixed that FormHelper#radio_button would produce invalid ids (closes #11298) ↵ | David Heinemeier Hansson | 2008-03-24 | 1 | -0/+2 |
| | | | | | | [harlancrystal] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9088 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Added :confirm option to submit_tag (closes #11415) [miloops] | David Heinemeier Hansson | 2008-03-24 | 1 | -0/+2 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9087 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Fixed NumberHelper#number_with_precision to properly round in a way that ↵ | David Heinemeier Hansson | 2008-03-24 | 1 | -1/+3 |
| | | | | | | works equally on Mac, Windows, Linux (closes #11409, #8275, #10090, #8027) [zhangyuanyi] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9086 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Allow the #simple_format text_helper to take an html_options hash for each ↵ | Rick Olson | 2008-03-24 | 1 | -0/+2 |
| | | | | | | paragraph. Closes #2448 [Francois Beausoleil, thechrisoshow] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9083 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Fix regression from filter refactoring where re-adding a skipped filter ↵ | Rick Olson | 2008-03-23 | 1 | -0/+2 |
| | | | | | | resulted in it being called twice. [rick] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9080 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Re-added ActionView::Helpers::register_javascript/stylesheet_expansion to ↵ | Jeremy Kemper | 2008-03-20 | 1 | -0/+2 |
| | | | | | | make it easier for plugin developers to inject multiple assets. Closes #10350. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9065 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Revert [9106]. References #10350. | Jeremy Kemper | 2008-03-19 | 1 | -2/+0 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9063 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Refactor filters to use Active Support callbacks. Closes #11235. | Jeremy Kemper | 2008-03-18 | 1 | -0/+2 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9055 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Fixed that polymorphic routes would modify the input array (closes #11363) ↵ | David Heinemeier Hansson | 2008-03-17 | 1 | -0/+2 |
| | | | | | | [thomas.lee] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9053 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Added :format option to NumberHelper#number_to_currency to enable better ↵ | David Heinemeier Hansson | 2008-03-17 | 1 | -0/+2 |
| | | | | | | localization support #11149 [lylo] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9052 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Fixed that TextHelper#excerpt would include one character too many (closes ↵ | David Heinemeier Hansson | 2008-03-15 | 1 | -0/+2 |
| | | | | | | #11268) [Irfy] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9030 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Fix more obscure nested parameter hash parsing bug. Closes #10797 [thomas.lee] | Rick Olson | 2008-03-13 | 1 | -0/+2 |
| | | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9020 5ecf4fe2-1ee6-0310-87b1-e25e094e27de | ||||
* | Added ActionView::Helpers::register_javascript/stylesheet_expansion to make ↵ | David Heinemeier Hansson | 2008-03-13 | 1 | -0/+2 |
| | | | | | | it easier for plugin developers to inject multiple assets (closes #10350) [lotswholetime] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9016 5ecf4fe2-1ee6-0310-87b1-e25e094e27de |