aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* | If I want to set respond_body to nil then itNeeraj Singh2011-01-251-1/+1
| | | | | | | | | | | | | | should be nil and not [nil]. If anything other than nil then wrap it in array Signed-off-by: José Valim <jose.valim@gmail.com>
* | A patch so that http status codes are still included in logs even during an ↵Doug Fales2011-01-251-1/+5
| | | | | | | | | | | | exception [#6333 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* | Add tld_length option when using domain :all in cookiesbrainopia2011-01-211-9/+9
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* | Support list of possible domains for cookiesbrainopia2011-01-211-0/+3
|/ | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Solve SystemStackError when changing locale inside ActionMailer [#5329 ↵José Valim2011-01-192-6/+7
| | | | state:resolved]
* Merge branch 'template_error' into mergeAaron Patterson2011-01-181-4/+1
|\ | | | | | | | | | | * template_error: Ensure original exception message is present in both Template::Error#message and Template::Error#inspect. ActiveSupport::Deprecation.silence no longer needed.
| * Ensure original exception message is present in both Template::Error#message ↵John Firebaugh2010-10-291-4/+1
| | | | | | | | | | | | and Template::Error#inspect. Previously, #inspect would produce #<ActionView::Template::Error: ActionView::Template::Error>, which is not very useful.
| * ActiveSupport::Deprecation.silence no longer needed.John Firebaugh2010-10-291-1/+1
| |
* | Issue one Cache#read command instead of two in the case of a fragment cache hitChristos Trochalakis2011-01-181-2/+2
| |
* | minitest added @__io__, so we should ignore it tooAaron Patterson2011-01-171-0/+1
| |
* | removing more unused variablesAaron Patterson2011-01-171-1/+1
| |
* | button_tag should escape it contentSantiago Pastorino2011-01-121-1/+1
| |
* | use raise to create exceptions and to set the backtraceAaron Patterson2011-01-122-2/+2
| |
* | reraising should be in the rescue blockAaron Patterson2011-01-121-1/+1
| |
* | Reuse the view_context from the controller, this make the test environment ↵Santiago Pastorino2011-01-121-4/+1
| | | | | | | | more similar to the code applications uses
* | Allow view in AV::TestCase to access it's controller helpers methodsSantiago Pastorino2011-01-121-0/+1
| |
* | html_safe.to_str makes no senseSantiago Pastorino2011-01-111-1/+1
| |
* | Refactor to handle the X-Cascade without having to raise an exceptionKrekoten' Marjan2011-01-091-12/+12
| |
* | authenticity_token option for form_tag [#2988 state:resolved]Jakub Kuźma2011-01-091-5/+17
| |
* | Improve select helpers by allowing a selected value of false. This is ↵John Allison2011-01-091-1/+1
| | | | | | | | useful when using a select helper with a boolean attribute, and the attribute is false. (e.g. f.select :allow_comments)
* | HTML5 button_tag helperRizwan Reza2011-01-091-0/+50
| | | | | | | | | | | | | | | | This tag is similar in nature to submit_tag, but allows more control. It also doesn't submit if submit type isn't used, allowing JavaScript to control the flow where required. For more information: http://www.whatwg.org/specs/web-apps/current-work/multipage/the-button-element.html#the-button-element
* | Remove InstanceTagMethods module and define the methods inside the ↵Santiago Pastorino2011-01-091-7/+2
| | | | | | | | InstanceTag class
* | render :template is faster than render :fileSantiago Pastorino2011-01-012-5/+4
| |
* | This is not needed anymoreSantiago Pastorino2011-01-011-3/+0
| |
* | ActionController::Base.helpers.sanitize ignores case in protocolTimothy N. Tsvetkov2010-12-301-1/+1
| | | | | | | | | | | | [#6044 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* | process_action accepts multiple args, even with Callbacks.Nick Sutterer2010-12-291-1/+1
| |
* | Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2010-12-293-12/+12
|\ \
| * | .erb => .html.erbAkira Matsuda2010-12-252-6/+6
| | |
| * | for ... in => each ... doAkira Matsuda2010-12-252-6/+6
| | |
* | | Clean up PathSet.José Valim2010-12-271-19/+4
| | |
* | | No need to symbolize these.José Valim2010-12-271-2/+2
| | |
* | | Final tidy up on templates inheritance.José Valim2010-12-274-15/+11
| | |
* | | Speed up template inheritance and remove template inheritance optionwycats2010-12-261-16/+17
| | |
* | | A bunch of cleanup on the inherited template patchwycats2010-12-263-10/+32
| | |
* | | all tests passartemave2010-12-265-7/+7
| | |
* | | #948 make template inheritance optionalartemave2010-12-261-4/+12
| | |
* | | #948 template_inheritanceartemave2010-12-268-31/+54
|/ /
* | Merge branch 'master' of github.com:rails/railsXavier Noria2010-12-244-8/+17
|\ \
| * | Don't deprecate to_prepare.José Valim2010-12-231-4/+4
| | |
| * | Clean up callbacks should also be called on exceptions.José Valim2010-12-231-0/+3
| | |
| * | Allow registering javascript/stylesheet_expansions to existing symbolsSantiago Pastorino2010-12-222-4/+10
| | |
* | | Edits to caching/fragments.Rizwan Reza2010-12-231-17/+39
| | |
* | | More minor edits.Rizwan Reza2010-12-231-5/+5
| | |
* | | Revised documentation for cache_helper.Rizwan Reza2010-12-231-12/+10
|/ /
* | Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2010-12-231-7/+15
|\ \
| * | Typo (request -> response)John Firebaugh2010-12-211-1/+1
| | |
| * | Expand ActionDispatch::Reloader docsJohn Firebaugh2010-12-211-6/+14
| | |
* | | Do not use the same hash instance for expansions [#6114 state:resolved]Piotr Sarnacki2010-12-221-1/+3
|/ / | | | | | | | | Using the same hash instance makes using the same expansions for both javascripts and stylesheets.
* | Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2010-12-201-6/+6
|\ \
| * | Fix respond_with example code so it makes senseWill2010-12-191-2/+2
| | |