aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
Commit message (Collapse)AuthorAgeFilesLines
* Update CHANGELOG.José Valim2010-06-231-0/+6
|
* Deprecate :name_prefix in the new router DSL.José Valim2010-06-221-0/+2
|
* Credit for the heavy lifting!Jeremy Kemper2010-06-171-1/+1
|
* Add shallow routing option to new router [#3765 status:committed]Andrew White2010-06-171-0/+10
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Add support for multi-subdomain session by setting cookie host in session ↵Rizwan Reza2010-06-111-1/+4
| | | | | | cookie so you can share session between www.example.com, example.com and user.example.com. [#4818 state:resolved] This reverts commit 330a89072a493aafef1e07c3558964477f85adf0.
* Revert "Add support for multi-subdomain session by setting cookie host in ↵José Valim2010-06-101-4/+1
| | | | | | | | session cookie so you can share session between www.example.com, example.com and user.example.com. [#4818 state:resolved]" It does not work for domains like co.uk and com.br. This reverts commit c4d6245e875bbb276c122a5a401422d341dac4df.
* Add support for multi-subdomain session by setting cookie host in session ↵Guillermo Álvarez2010-06-101-0/+5
| | | | | | cookie so you can share session between www.example.com, example.com and user.example.com. [#4818 state:resolved] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Removed textilize, textilize_without_paragraph and markdown helpersSantiago Pastorino2010-06-091-0/+2
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Revert "Add shallow routes to the new router" for now. Needs more work.David Heinemeier Hansson2010-06-081-10/+0
| | | | This reverts commit 67a60ee314f53abcde78f8ecd2a1f7c9ef8264e1.
* Get ready for beta 4David Heinemeier Hansson2010-06-081-1/+1
|
* Add shallow routes to the new router [Closes #3765]Diego Carrion2010-06-071-0/+10
|
* Update CHANGELOGwycats2010-05-301-0/+2
|
* Cut the fat and make session stores rely on request.cookie_jar and change ↵José Valim2010-05-181-0/+2
| | | | set_session semantics to return the cookie value instead of a boolean.
* Merge remote branch 'technoweenie/http_token_authentication'Jeremy Kemper2010-04-301-0/+2
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Fix form builder and form helpers inconsistencies [#4432 state:resolved]Neeraj Singh2010-04-291-0/+2
| | | | | | | | * datetime_select and select_datetime should be consistent as much as possible * date_select and select_date should be consistent as much as possible * time_select and select_time should be consistent as much as possible Signed-off-by: José Valim <jose.valim@gmail.com>
* Move several configuration values from Hash to ActiveSupport::XmlMini, which ↵José Valim2010-04-291-0/+2
| | | | | | both Hash and Array depends on. Also, refactored ActiveModel serializers to just use ActiveSupport::XmlMini.to_tag. As consequence, if a serialized attribute is an array or a hash, it's not encoded as yaml, but as a hash or array.
* Rename fieldWithErrors style to field_with_errors. Remove unused alert style.Jeremy Kemper2010-04-241-0/+2
|
* added shorthand support for routes like /projects/status(.:format)Diego Carrion2010-04-171-0/+2
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Changed translate helper so that it doesn’t mark every translation as safe ↵Craig Davey2010-04-131-0/+5
| | | | | | HTML. Only keys with a "_html" suffix and keys named "html" are considered to be safe HTML. All other translations are left untouched. Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Update changelogs for releaseDavid Heinemeier Hansson2010-04-131-1/+1
|
* form_for :as rubydoc and tidy up a bit the form_for docSantiago Pastorino2010-04-101-0/+2
|
* Update versions (otherwise you install a gem from source as beta3 but ↵José Valim2010-04-101-0/+6
| | | | internally it's beta2) and update CHANGELOG.
* Dial back from 'namespace :controller => ...' to 'scope :module => ...'Jeremy Kemper2010-04-091-14/+4
|
* Routes can be selectively namespaced by path or controller moduleJeremy Kemper2010-04-091-1/+18
|
* adds an entry for #favicon_link_tag in AP's CHANGELOGXavier Noria2010-04-091-0/+2
|
* Fixed that default locale templates should be used if the current locale ↵Carl Lerche2010-04-081-0/+2
| | | | template is missing [DHH]
* Revert "adds #favicon_link_tag and #apple_touch_icon_link_tag" -- these tags ↵David Heinemeier Hansson2010-04-081-2/+0
| | | | | | are too specific. This reverts commit 6891f46d10957f21f200fc4dc2b6076ff411b1da, ec8610cfdc32d0fe816fb22405e00ef1b6c90d73, and d18ff1b7efd96e7c08bc1a15137735be45f87e07.
* adds #favicon_link_tag and #apple_touch_icon_link_tag to AP's CHANGELOGXavier Noria2010-04-071-0/+2
|
* Merge branch 'master' of github.com:rails/railsDavid Heinemeier Hansson2010-04-051-3/+3
|\
| * Include author in changelogwycats2010-04-051-3/+3
| |
* | Added all the new HTML5 form types as individual form tag methods (search, ↵David Heinemeier Hansson2010-04-051-0/+3
|/ | | | url, number, etc) (Closes #3646) [Stephen Celis]
* * Change the object used in routing constraints to be an instance ofwycats2010-04-031-0/+15
| | | | | | | | | | | ActionDispatch::Request rather than Rack::Request. * Changed ActionDispatch::Request#method to return a String, to be compatible with the Rack::Request superclass. * Changed ActionDispatch::Request#method to return the original method in the case of methodoverride and #request_method not to, to be compatible with Rack::Request
* Release is today, yoDavid Heinemeier Hansson2010-04-011-1/+2
|
* Updated changelogs to differentiate beta1 and beta2wycats2010-04-011-1/+3
|
* Updated changelogswycats2010-04-011-259/+287
|
* Fixed that PrototypeHelper#update_page should return html_safe [DHH]David Heinemeier Hansson2010-01-081-0/+2
|
* Fixed that much of DateHelper wouldn't return html_safe? strings [DHH]David Heinemeier Hansson2010-01-081-0/+2
|
* Fixed that fragment caching should return a cache hit as html_safe (or it ↵David Heinemeier Hansson2010-01-071-0/+2
| | | | would all just get escaped) [DHH]
* Added that ActionController::Base now does helper :all instead of relying on ↵David Heinemeier Hansson2010-01-031-0/+2
| | | | the default ApplicationController in Rails to do it [DHH]
* Added ActionDispatch::Request#authorization to access the http ↵David Heinemeier Hansson2009-12-201-0/+2
| | | | authentication header regardless of its proxy hiding [DHH]
* Added alert/notice from 2-3-stable and refactored redirect_to into just ↵David Heinemeier Hansson2009-12-171-0/+12
| | | | living in Redirector [DHH]
* Introduce grouped_collection_select helper.codeape2009-08-091-0/+2
| | | | | | [#1249 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Make sure javascript_include_tag/stylesheet_link_tag does not append ".js" ↵Matthew Rudy Jacobs2009-08-051-0/+2
| | | | | | or ".css" onto external urls [#1664 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Ruby 1.9: fix Content-Length for multibyte send_data streamingSava Chankov2009-08-011-0/+2
| | | | | | [#2661 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Ruby 1.9: ERB template encoding using a magic comment at the top of the fileJeremy Kemper2009-05-281-0/+3
|
* Missing CHANGELOG entry for 4a6f4b92ad2fPratik Naik2009-05-191-0/+5
|
* ChangelogBryan Helmkamp2009-05-161-0/+2
|
* Don't check authenticity tokens for any AJAX requestsRoss Kaffenburger and Bryan Helmkamp2009-04-151-0/+2
|
* Fix for TestResponse.cookies returning cookies unescaped [#1867 state:resolved]Doug McInnes2009-04-071-0/+5
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Prepare for final 2.3 releaseDavid Heinemeier Hansson2009-03-151-4/+1
|