aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
Commit message (Collapse)AuthorAgeFilesLines
* Add missing changelog entries for actionpackGuillermo Iguaran2011-09-131-0/+4
|
* Set relative url root in assets when controller isn't available for ↵Guillermo Iguaran2011-09-131-0/+2
| | | | | | Sprockets. Fix #2435 See https://github.com/rails/sass-rails/issues/42 for details
* Fix changelog entryMike Dillon2011-09-101-1/+1
|
* Add test for warning and CHANGELOG entryMike Dillon2011-09-101-0/+2
|
* Add entry about Asset behaviour fix to ActionPack ChangeLogGuillermo Iguaran2011-09-041-0/+3
|
* Merge pull request #2816 from sikachu/content_tag_forJosé Valim2011-09-041-0/+16
|\ | | | | Make `content_tag_for` and `div_for` accepts the array of records
| * Make `content_tag_for` and `div_for` accepts the array of recordsPrem Sichanugrist2011-09-041-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge pull request #2835 from guilleiguaran/actionpack-changelogSantiago Pastorino2011-09-031-2/+2
|/ | | | Include ticket numbers in AP CHANGELOG
* CookieJar is enumerable. fixes #2795Aaron Patterson2011-09-011-0/+2
|
* Add missing changelog entries for 3.1.1Guillermo Iguaran2011-09-011-1/+10
|
* Merge pull request #2723 from guilleiguaran/3-1-0-changelogsSantiago Pastorino2011-08-281-0/+2
| | | | Update changelogs for Rails 3.1.0
* edit changelog to mention about x_sendfile_header default changeVijay Dev2011-08-291-0/+2
|
* contrib app minor tweakXavier Noria2011-07-271-2/+2
|
* add entry for submit helper change removing object_name_idVijay Dev2011-07-201-0/+2
|
* Fix wildcard route code example in changelog.Hendy Tanata2011-07-161-2/+2
|
* Revert "Add method fields_for_with_index to FormHelper"José Valim2011-07-011-2/+0
| | | | | | | | This reverts commit 7c562d5e460d97b18e4f3367b3cfb13401732920. Conflicts: actionpack/lib/action_view/helpers/form_helper.rb
* Make sure respond_with with :js tries to render a template in all casesJosé Valim2011-06-301-0/+2
|
* Edited actionpack/CHANGELOG via GitHubJosé Valim2011-06-281-0/+4
|
* Update changelog with #1552 feature: add hidden field before ↵Piotr Sarnacki2011-06-111-0/+5
| | | | select[multiple=true]
* Update CHANGELOG to mention the json_escape change, and rearrange stuff a bit.Prem Sichanugrist2011-06-101-21/+23
|
* Make sure `escape_javascript` return `SafeBuffer` if the incoming argument ↵Prem Sichanugrist2011-06-091-0/+2
| | | | is already html_safe
* Update CHANGELOG to mention the new SafeBuffer changePrem Sichanugrist2011-06-081-0/+29
|
* Move CHANGELOG entry to future versionAndrew White2011-06-051-1/+4
|
* Refactor ActionController::TestCase cookiesAndrew White2011-06-041-0/+18
| | | | | | | | | | | | | | | | | | Assigning cookies for test cases should now use cookies[], e.g: cookies[:email] = 'user@example.com' get :index assert_equal 'user@example.com', cookies[:email] To clear the cookies, use clear, e.g: cookies.clear get :index assert_nil cookies[:email] We now no longer write out HTTP_COOKIE and the cookie jar is persistent between requests so if you need to manipulate the environment for your test you need to do it before the cookie jar is created.
* Add entry to AP changelogSebastian Martinez2011-05-231-0/+2
|
* Make ParamsWrapper calling newly introduced `Model.attribute_names` instead ↵Prem Sichanugrist2011-05-151-1/+1
| | | | of `.column_names`
* Merging 3.0.x CHANGELOGsGuillermo Iguaran2011-05-101-1/+52
|
* Warn if we cannot verify CSRF token authenticityJosé Valim2011-05-091-0/+2
|
* Update CHANGELOG.José Valim2011-05-071-0/+2
|
* Update CHANGELOGs.José Valim2011-05-061-2/+0
|
* Only show dump of regular env methods on exception screen (not all the rack ↵David Heinemeier Hansson2011-05-041-0/+2
| | | | crap) [DHH]
* Update CHANGELOG.José Valim2011-05-031-4/+16
|
* removing auto_link and moving it to the rails_autolink gem. :bomb:Aaron Patterson2011-05-021-0/+6
|
* Merge pull request #359 from sikachu/params_wrapper.David Heinemeier Hansson2011-05-021-0/+4
|\ | | | | Add `ActionController::ParamsWrapper` to wrap JSON parameters into a nested parameters.
| * Add `ActionController::ParamsWrapper` to wrap parameters into a nested hashPrem Sichanugrist2011-05-031-0/+4
| | | | | | This will allow us to do a rootless JSON/XML request to server.
* | Update CHANGELOG file to mention my namePrem Sichanugrist2011-05-031-1/+3
|/ | | | | | On the commit for updating :format parameters, seems like I've left out the credit name after the CHANGELOG entry. This should fix it, and in case someone has a problem they could seek assistance easier.
* updates AP CHANGELOGXavier Noria2011-04-131-0/+2
|
* Implicit actions named not_implemented can be renderedSantiago Pastorino2011-04-021-0/+2
|
* Update the wildcard route to be non-greedy by default, therefore be able to ↵Prem Sichanugrist2011-03-291-0/+8
| | | | | | | | match the (.:format) segment [#6605 state:resolved] After some discussion with Andrew White, it seems like this is a better approach for handling a wildcard route. However, user can still bring back the old behavior by supplying `:format => false` to the route. Signed-off-by: Andrew White <andyw@pixeltrix.co.uk>
* Fix examplesDavid Heinemeier Hansson2011-03-281-1/+1
|
* Added Base.http_basic_authenticate_with to do simple http basic ↵David Heinemeier Hansson2011-03-281-0/+37
| | | | authentication with a single class method call [DHH]
* Add controller-specific `force_ssl` method to force web browser to use HTTPS ↵Prem Sichanugrist2011-03-281-0/+2
| | | | | | | | protocol This would become useful for site which sometime transferring sensitive information such as account information on particular controller or action. This featured was requested by DHH.
* Allow FormHelper#form_for to specify the :method as a direct option instead ↵David Heinemeier Hansson2011-03-261-0/+4
| | | | of through the :html hash [DHH]
* Make JavaScriptHelper#j() an alias for JavaScriptHelper#escape_javascript() ↵David Heinemeier Hansson2011-03-261-0/+2
| | | | -- note this then supersedes the Object#j() method that the JSON gem adds within templates using the JavaScriptHelper [DHH]
* Filter sensitive query string parameters in the log [#6244 state:committed]Prem Sichanugrist & Xavier Noria2011-03-111-0/+2
| | | | | | This provides more safety to applications that put secret information in the query string, such as API keys or SSO tokens. Signed-off-by: Xavier Noria <fxn@hashref.com>
* Filter params that return nil for to_param and allow through false valuesAndrew White2011-03-091-0/+4
|
* prefer composition over inheritance with AD::MSAaron Patterson2011-03-011-0/+4
|
* authenticity_token option for form_tag [#2988 state:resolved]Jakub Kuźma2011-01-091-0/+2
|
* HTML5 button_tag helperRizwan Reza2011-01-091-0/+5
| | | | | | | | 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
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2010-12-291-3/+1
|\