0
* Deprecated formatted_polymorphic_url. [Jeremy Kemper]
0
-* Added the option to declare an asset_host as an object that responds to call (see http://github.com/dhh/asset-hosting-with-minimum-ssl for an example) [D
HH]
0
+* Added the option to declare an asset_host as an object that responds to call (see http://github.com/dhh/asset-hosting-with-minimum-ssl for an example) [D
avid Heinemeier Hansson]
0
-* Added support for multiple routes.rb files (useful for plugin engines). This also means that draw will no longer clear the route set, you have to do that by hand (shouldn't make a difference to you unless you're doing some funky stuff) [D
HH]
0
+* Added support for multiple routes.rb files (useful for plugin engines). This also means that draw will no longer clear the route set, you have to do that by hand (shouldn't make a difference to you unless you're doing some funky stuff) [D
avid Heinemeier Hansson]
0
* Dropped formatted_* routes in favor of just passing in :format as an option. This cuts resource routes generation in half #1359 [aaronbatalion]
0
-* Remove support for old double-encoded cookies from the cookie store. These values haven't been generated since before 2.1.0, and any users who have visited the app in the intervening 6 months will have had their cookie upgraded. [
Koz]
0
+* Remove support for old double-encoded cookies from the cookie store. These values haven't been generated since before 2.1.0, and any users who have visited the app in the intervening 6 months will have had their cookie upgraded. [
Michael Koziarski]
0
* Allow helpers directory to be overridden via ActionController::Base.helpers_dir #1424 [Sam Pohlenz]
0
* Remove deprecated ActionController::Base#assign_default_content_type_and_charset
0
-* Changed the default of ActionView#render to assume partials instead of files when not given an options hash [D
HH]. Examples:
0
+* Changed the default of ActionView#render to assume partials instead of files when not given an options hash [D
avid Heinemeier Hansson]. Examples:
0
# Instead of <%= render :partial => "account" %>
0
<%= render "account" %>
0
# <%= render :partial => "posts/post", :collection => @posts %>
0
-* Remove deprecated render_component. Please use the plugin from http://github.com/rails/render_component/tree/master [Pratik
]
0
+* Remove deprecated render_component. Please use the plugin from http://github.com/rails/render_component/tree/master [Pratik
Naik]
0
-* Fixed RedCloth and BlueCloth shouldn't preload. Instead just assume that they're available if you want to use textilize and markdown and let autoload require them [D
HH]
0
+* Fixed RedCloth and BlueCloth shouldn't preload. Instead just assume that they're available if you want to use textilize and markdown and let autoload require them [D
avid Heinemeier Hansson]
0
*2.2.2 (November 21st, 2008)*
0
product.resources :images, :except => :destroy
0
-* Added render :js for people who want to render inline JavaScript replies without using RJS [D
HH]
0
+* Added render :js for people who want to render inline JavaScript replies without using RJS [D
avid Heinemeier Hansson]
0
* Fixed that polymorphic_url should compact given array #1317 [hiroshi]
0
* Fix regression bug that made date_select and datetime_select raise a Null Pointer Exception when a nil date/datetime was passed and only month and year were displayed #1289 [Bernardo Padua/Tor Erik]
0
-* Simplified the logging format for parameters (don't include controller, action, and format as duplicates) [D
HH]
0
+* Simplified the logging format for parameters (don't include controller, action, and format as duplicates) [D
avid Heinemeier Hansson]
0
-* Remove the logging of the Session ID when the session store is CookieStore [D
HH]
0
+* Remove the logging of the Session ID when the session store is CookieStore [D
avid Heinemeier Hansson]
0
* Fixed regex in redirect_to to fully support URI schemes #1247 [Seth Fitzsimmons]
0
* Fix incorrect closing CDATA delimiter and that HTML::Node.parse would blow up on unclosed CDATA sections [packagethief]
0
-* Added stale? and fresh_when methods to provide a layer of abstraction above request.fresh? and friends [D
HH]. Example:
0
+* Added stale? and fresh_when methods to provide a layer of abstraction above request.fresh? and friends [D
avid Heinemeier Hansson]. Example:
0
class ArticlesController < ApplicationController
0
def show_with_respond_to_block
0
* Fixed FormTagHelper#submit_tag with :disable_with option wouldn't submit the button's value when was clicked #633 [Jose Fernandez]
0
-* Stopped logging template compiles as it only clogs up the log [D
HH]
0
+* Stopped logging template compiles as it only clogs up the log [D
avid Heinemeier Hansson]
0
-* Changed the X-Runtime header to report in milliseconds [D
HH]
0
+* Changed the X-Runtime header to report in milliseconds [D
avid Heinemeier Hansson]
0
-* Changed BenchmarkHelper#benchmark to report in milliseconds [D
HH]
0
+* Changed BenchmarkHelper#benchmark to report in milliseconds [D
avid Heinemeier Hansson]
0
-* Changed logging format to be millisecond based and skip misleading stats [D
HH]. Went from:
0
+* Changed logging format to be millisecond based and skip misleading stats [D
avid Heinemeier Hansson]. Went from:
0
Completed in 0.10000 (4 reqs/sec) | Rendering: 0.04000 (40%) | DB: 0.00400 (4%) | 200 OK [http://example.com]
0
* Added button_to_remote helper. #3641 [Donald Piret, Tarmo Tänav]
0
-* Deprecate render_component. Please use render_component plugin from http://github.com/rails/render_component/tree/master [Pratik
]
0
+* Deprecate render_component. Please use render_component plugin from http://github.com/rails/render_component/tree/master [Pratik
Naik]
0
* Routes may be restricted to lists of HTTP methods instead of a single method or :any. #407 [Brennan Dunn, Gaius Centus Novus]
0
map.resource :posts, :collection => { :search => [:get, :post] }
0
* All 2xx requests are considered successful [Josh Peek]
0
-* Fixed that AssetTagHelper#compute_public_path shouldn't cache the asset_host along with the source or per-request proc's won't run [D
HH]
0
+* Fixed that AssetTagHelper#compute_public_path shouldn't cache the asset_host along with the source or per-request proc's won't run [D
avid Heinemeier Hansson]
0
* Removed config.action_view.cache_template_loading, use config.cache_classes instead [Josh Peek]
0
* Replaced TemplateFinder abstraction with ViewLoadPaths [Josh Peek]
0
-* Added block-call style to link_to [Sam Stephenson/D
HH]. Example:
0
+* Added block-call style to link_to [Sam Stephenson/D
avid Heinemeier Hansson]. Example:
0
<% link_to(@profile) do %>
0
<strong><%= @profile.name %></strong> -- <span>Check it out!!</span>
0
* Added session(:on) to turn session management back on in a controller subclass if the superclass turned it off (Peter Jones) [#136]
0
-* Change the request forgery protection to go by Content-Type instead of request.format so that you can't bypass it by POSTing to "#{request.uri}.xml" [
rick]
0
+* Change the request forgery protection to go by Content-Type instead of request.format so that you can't bypass it by POSTing to "#{request.uri}.xml" [
Rick Olson]
0
* InstanceTag#default_time_from_options with hash args uses Time.current as default; respects hash settings when time falls in system local spring DST gap [Geoff Buesing]
0
* select_date defaults to Time.zone.today when config.time_zone is set [Geoff Buesing]
0
* Fixed that TextHelper#text_field would corrypt when raw HTML was used as the value (mchenryc, Kevin Glowacz) [#80]
0
-* Added ActionController::TestCase#rescue_action_in_public! to control whether the action under test should use the regular rescue_action path instead of simply raising the exception inline (great for error testing) [D
HH]
0
+* Added ActionController::TestCase#rescue_action_in_public! to control whether the action under test should use the regular rescue_action path instead of simply raising the exception inline (great for error testing) [D
avid Heinemeier Hansson]
0
-* Reduce number of instance variables being copied from controller to view. [Pratik
]
0
+* Reduce number of instance variables being copied from controller to view. [Pratik
Naik]
0
* select_datetime and select_time default to Time.zone.now when config.time_zone is set [Geoff Buesing]
0
* datetime_select defaults to Time.zone.now when config.time_zone is set [Geoff Buesing]
0
-* Remove ActionController::Base#view_controller_internals flag. [Pratik
]
0
+* Remove ActionController::Base#view_controller_internals flag. [Pratik
Naik]
0
* Add conditional options to caches_page method. [Paul Horsfall]
0
-* Move missing template logic to ActionView. [Pratik
]
0
+* Move missing template logic to ActionView. [Pratik
Naik]
0
-* Introduce ActionView::InlineTemplate class. [Pratik
]
0
+* Introduce ActionView::InlineTemplate class. [Pratik
Naik]
0
-* Automatically parse posted JSON content for Mime::JSON requests. [
rick]
0
+* Automatically parse posted JSON content for Mime::JSON requests. [
Rick Olson]
0
{"post": {"title": "Breaking News"}}
0
-* add json_escape ERB util to escape html entities in json strings that are output in HTML pages. [
rick]
0
+* add json_escape ERB util to escape html entities in json strings that are output in HTML pages. [
Rick Olson]
0
* Provide a helper proxy to access helper methods from outside views. Closes #10839 [Josh Peek]
0
e.g. ApplicationController.helpers.simple_format(text)
0
* Improve documentation. [Xavier Noria, leethal, jerome]
0
-* Ensure RJS redirect_to doesn't html-escapes string argument. Closes #8546 [
josh, eventualbuddha, Pratik]
0
+* Ensure RJS redirect_to doesn't html-escapes string argument. Closes #8546 [
Josh Peek, eventualbuddha, Pratik Naik]
0
* Support render :partial => collection of heterogeneous elements. #11491 [Zach Dennis]
0
* Fixed HTML::Tokenizer (used in sanitize helper) didn't handle unclosed CDATA tags #10071 [esad, packagethief]
0
-* Improve documentation. [R
adar, Jan De Poorter, chuyeow, xaviershay, danger, miloops, Xavier Noria, Sunny Ripert]
0
+* Improve documentation. [R
yan Bigg, Jan De Poorter, Cheah Chu Yeow, Xavier Shay, Jack Danger Canty, Emilio Tagua, Xavier Noria, Sunny Ripert]
0
* Fixed that FormHelper#radio_button would produce invalid ids #11298 [harlancrystal]
0
-* Added :confirm option to submit_tag #11415 [
miloops]
0
+* Added :confirm option to submit_tag #11415 [
Emilio Tagua]
0
* Fixed NumberHelper#number_with_precision to properly round in a way that works equally on Mac, Windows, Linux (closes #11409, #8275, #10090, #8027) [zhangyuanyi]
0
-* Allow the #simple_format text_helper to take an html_options hash for each paragraph. #2448 [Fran
cois Beausoleil, thechrisoshow]
0
+* Allow the #simple_format text_helper to take an html_options hash for each paragraph. #2448 [Fran
çois Beausoleil, Chris O'Sullivan]
0
-* Fix regression from filter refactoring where re-adding a skipped filter resulted in it being called twice. [
rick]
0
+* Fix regression from filter refactoring where re-adding a skipped filter resulted in it being called twice. [
Rick Olson]
0
* Refactor filters to use Active Support callbacks. #11235 [Josh Peek]
0
* Fix nested parameter hash parsing bug. #10797 [thomas.lee]
0
-* Allow using named routes in ActionController::TestCase before any request has been made. Closes #11273 [
alloy]
0
+* Allow using named routes in ActionController::TestCase before any request has been made. Closes #11273 [
Eloy Duran]
0
-* Fixed that sweepers defined by cache_sweeper will be added regardless of the perform_caching setting. Instead, control whether the sweeper should be run with the perform_caching setting. This makes testing easier when you want to turn perform_caching on/off [D
HH]
0
+* Fixed that sweepers defined by cache_sweeper will be added regardless of the perform_caching setting. Instead, control whether the sweeper should be run with the perform_caching setting. This makes testing easier when you want to turn perform_caching on/off [D
avid Heinemeier Hansson]
0
* Make MimeResponds::Responder#any work without explicit types. Closes #11140 [jaw6]
0
* Better error message for type conflicts when parsing params. Closes #7962 [spicycode, matt]
0
-* Remove unused ActionController::Base.template_class. Closes #10787 [Pratik
]
0
+* Remove unused ActionController::Base.template_class. Closes #10787 [Pratik
Naik]
0
-* Moved template handlers related code from ActionView::Base to ActionView::Template. [Pratik
]
0
+* Moved template handlers related code from ActionView::Base to ActionView::Template. [Pratik
Naik]
0
-* Tests for div_for and content_tag_for helpers. Closes #11223 [
thechrisoshow]
0
+* Tests for div_for and content_tag_for helpers. Closes #11223 [
Chris O'Sullivan]
0
* Allow file uploads in Integration Tests. Closes #11091 [RubyRedRick]
0
-* Refactor partial rendering into a PartialTemplate class. [Pratik
]
0
+* Refactor partial rendering into a PartialTemplate class. [Pratik
Naik]
0
-* Added that requests with JavaScript as the priority mime type in the accept header and no format extension in the parameters will be treated as though their format was :js when it comes to determining which template to render. This makes it possible for JS requests to automatically render action.js.rjs files without an explicit respond_to block [D
HH]
0
+* Added that requests with JavaScript as the priority mime type in the accept header and no format extension in the parameters will be treated as though their format was :js when it comes to determining which template to render. This makes it possible for JS requests to automatically render action.js.rjs files without an explicit respond_to block [D
avid Heinemeier Hansson]
0
-* Tests for distance_of_time_in_words with TimeWithZone instances. Closes #10914 [
ernesto.jimenez]
0
+* Tests for distance_of_time_in_words with TimeWithZone instances. Closes #10914 [
Ernesto Jimenez]
0
* Remove support for multivalued (e.g., '&'-delimited) cookies. [Jamis Buck]
0
* Fix problem with render :partial collections, records, and locals. #11057 [lotswholetime]
0
-* Added support for naming concrete classes in sweeper declarations [D
HH]
0
+* Added support for naming concrete classes in sweeper declarations [D
avid Heinemeier Hansson]
0
-* Remove ERB trim variables from trace template in case ActionView::Base.erb_trim_mode is changed in the application. #10098 [
tpope, kampers]
0
+* Remove ERB trim variables from trace template in case ActionView::Base.erb_trim_mode is changed in the application. #10098 [
Tim Pope, Chris Kampmeier]
0
-* Fix typo in form_helper documentation. #10650 [
xaviershay, kampers]
0
+* Fix typo in form_helper documentation. #10650 [
Xavier Shay, Chris Kampmeier]
0
* Fix bug with setting Request#format= after the getter has cached the value. #10889 [cch1]
0
-* Correct inconsistencies in RequestForgeryProtection docs. #11032 [
mislav]
0
+* Correct inconsistencies in RequestForgeryProtection docs. #11032 [
Mislav Marohnić]
0
-* Introduce a Template class to ActionView. #11024 [
lifofifo]
0
+* Introduce a Template class to ActionView. #11024 [
Pratik Naik]
0
* Introduce the :index option for form_for and fields_for to simplify multi-model forms (see http://railscasts.com/episodes/75). #9883 [rmm5t]
0
e.g. map.dashboard '/dashboard', :controller=>'dashboard'
0
-* Handle corner case with image_tag when passed 'messed up' image names. #9018 [
duncanbeevers, mpalmer]
0
+* Handle corner case with image_tag when passed 'messed up' image names. #9018 [
Duncan Beevers, mpalmer]
0
* Add label_tag helper for generating elements. #10802 [DefV]
0
* Performance: optimize route recognition. Large speedup for apps with many resource routes. #10835 [oleganza]
0
-* Make render :partial recognise form builders and use the _form partial. #10814 [
djanowski]
0
+* Make render :partial recognise form builders and use the _form partial. #10814 [
Damian Janowski]
0
* Allow users to declare other namespaces when using the atom feed helpers. #10304 [david.calavera]
0
* Introduce send_file :x_sendfile => true to send an X-Sendfile response header. [Jeremy Kemper]
0
-* Fixed ActionView::Helpers::ActiveRecordHelper::form for when protect_from_forgery is used #10739 [
jeremyevans]
0
+* Fixed ActionView::Helpers::ActiveRecordHelper::form for when protect_from_forgery is used #10739 [
Jeremy Evans]
0
-* Provide nicer access to HTTP Headers. Instead of request.env["HTTP_REFERRER"] you can now use request.headers["Referrer"]. [
Koz]
0
+* Provide nicer access to HTTP Headers. Instead of request.env["HTTP_REFERRER"] you can now use request.headers["Referrer"]. [
Michael Koziarski]
0
* UrlWriter respects relative_url_root. #10748 [Cheah Chu Yeow]
0
* assert_response failures include the exception message. #10688 [Seth Rasmussen]
0
-* All fragment cache keys are now by default prefixed with the "views/" namespace [D
HH]
0
+* All fragment cache keys are now by default prefixed with the "views/" namespace [D
avid Heinemeier Hansson]
0
-* Moved the caching stores from ActionController::Caching::Fragments::* to ActiveSupport::Cache::*. If you're explicitly referring to a store, like ActionController::Caching::Fragments::MemoryStore, you need to update that reference with ActiveSupport::Cache::MemoryStore [D
HH]
0
+* Moved the caching stores from ActionController::Caching::Fragments::* to ActiveSupport::Cache::*. If you're explicitly referring to a store, like ActionController::Caching::Fragments::MemoryStore, you need to update that reference with ActiveSupport::Cache::MemoryStore [D
avid Heinemeier Hansson]
0
-* Deprecated ActionController::Base.fragment_cache_store for ActionController::Base.cache_store [D
HH]
0
+* Deprecated ActionController::Base.fragment_cache_store for ActionController::Base.cache_store [D
avid Heinemeier Hansson]
0
-* Made fragment caching in views work for rjs and builder as well #6642 [
zsombor]
0
+* Made fragment caching in views work for rjs and builder as well #6642 [
Dee Zsombor]
0
* Fixed rendering of partials with layout when done from site layout #9209 [antramm]
0
-* Fix atom_feed_helper to comply with the atom spec. Closes #10672 [
xaviershay]
0
+* Fix atom_feed_helper to comply with the atom spec. Closes #10672 [
Xavier Shay]
0
* The tags created do not contain a date (http://feedvalidator.org/docs/error/InvalidTAG.html)
0
* IDs are not guaranteed unique
0
* A default self link was not provided, contrary to the documentation
0
* NOTE: This changes tags for existing atom entries, but at least they validate now.
0
-* Correct indentation in tests. Closes #10671 [
l.guidi]
0
+* Correct indentation in tests. Closes #10671 [
Luca Guidi]
0
-* Fix that auto_link looks for ='s in url paths (Amazon urls have them). Closes #10640 [
bgreenlee]
0
+* Fix that auto_link looks for ='s in url paths (Amazon urls have them). Closes #10640 [
Brad Greenlee]
0
* Ensure that test case setup is run even if overridden. #10382 [Josh Peek]
0
* Added OPTIONS to list of default accepted HTTP methods #10449 [holoway]
0
-* Added option to pass proc to ActionController::Base.asset_host for maximum configurability #10521 [
chuyeow]. Example:
0
+* Added option to pass proc to ActionController::Base.asset_host for maximum configurability #10521 [
Cheah Chu Yeow]. Example:
0
ActionController::Base.asset_host = Proc.new { |source|
0
if source.starts_with?('/images')
0
* Fixed send_file/binary_content for testing #8044 [tolsen]
0
-* When a NonInferrableControllerError is raised, make the proposed fix clearer in the error message. Closes #10199 [
danger]
0
+* When a NonInferrableControllerError is raised, make the proposed fix clearer in the error message. Closes #10199 [
Jack Danger Canty]
0
* Update Prototype to 1.6.0.1. [sam]
0
* Update script.aculo.us to 1.8.0.1. [madrobby]
0
-* Add 'disabled' attribute to <OPTION> separators used in time zone and country selects. Closes #10354 [
hasmanyjosh]
0
+* Add 'disabled' attribute to <OPTION> separators used in time zone and country selects. Closes #10354 [
Josh Susser]
0
-* Added the same record identification guessing rules to fields_for as form_for has [D
HH]
0
+* Added the same record identification guessing rules to fields_for as form_for has [D
avid Heinemeier Hansson]
0
-* Fixed that verification violations with no specified action didn't halt the chain (now they do with a 400 Bad Request) [D
HH]
0
+* Fixed that verification violations with no specified action didn't halt the chain (now they do with a 400 Bad Request) [D
avid Heinemeier Hansson]
0
* Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [Tarmo Tänav]
0
* Update to Prototype -r8232. [sam]
0
-* Make sure the optimisation code for routes doesn't get used if :host, :anchor or :port are provided in the hash arguments. [pager,
Koz] #10292
0
+* Make sure the optimisation code for routes doesn't get used if :host, :anchor or :port are provided in the hash arguments. [pager,
Michael Koziarski] #10292
0
* Added protection from trailing slashes on page caching #10229 [devrieda]
0
-* Asset timestamps are appended, not prepended. Closes #10276 [
mnaberez]
0
+* Asset timestamps are appended, not prepended. Closes #10276 [
Mike Naberezny]
0
* Minor inconsistency in description of render example. Closes #10029 [ScottSchram]
0
-* Add #prepend_view_path and #append_view_path instance methods on ActionController::Base for consistency with the class methods. [
rick]
0
+* Add #prepend_view_path and #append_view_path instance methods on ActionController::Base for consistency with the class methods. [
Rick Olson]
0
-* Refactor sanitizer helpers into HTML classes and make it easy to swap them out with custom implementations. Closes #10129. [
rick]
0
+* Refactor sanitizer helpers into HTML classes and make it easy to swap them out with custom implementations. Closes #10129. [
Rick Olson]
0
-* Add deprecation for old subtemplate syntax for ActionMailer templates, use render :partial [
rick]
0
+* Add deprecation for old subtemplate syntax for ActionMailer templates, use render :partial [
Rick Olson]
0
-* Fix TemplateError so it doesn't bomb on exceptions while running tests [
rick]
0
+* Fix TemplateError so it doesn't bomb on exceptions while running tests [
Rick Olson]
0
-* Fixed that named routes living under resources shouldn't have double slashes #10198 [
isaacfeliu]
0
+* Fixed that named routes living under resources shouldn't have double slashes #10198 [
Isaac Feliu]
0
-* Make sure that cookie sessions use a secret that is at least 30 chars in length. [
Koz]
0
+* Make sure that cookie sessions use a secret that is at least 30 chars in length. [
Michael Koziarski]
0
* Fixed that partial rendering should look at the type of the first render to determine its own type if no other clues are available (like when using text.plain.erb as the extension in AM) #10130 [java]
0
-* Fixed that has_many :through associations should render as collections too #9051 [mathie/
danger]
0
+* Fixed that has_many :through associations should render as collections too #9051 [mathie/
Jack Danger Canty]
0
* Added :mouseover short-cut to AssetTagHelper#image_tag for doing easy image swaps #6893 [joost]
0
* Fix syntax error in documentation example for cycle method. Closes #8735 [foca]
0
-* Document :with option for link_to_remote. Closes #8765 [
ryanb]
0
+* Document :with option for link_to_remote. Closes #8765 [
Ryan Bates]
0
* Document :minute_step option for time_select. Closes #8814 [brupm]
0
* Fix broken tag in assert_tag documentation. Closes #9037 [mfazekas]
0
-* Add documentation for route conditions. Closes #9041 [innu,
manfred]
0
+* Add documentation for route conditions. Closes #9041 [innu,
Manfred Stienstra]
0
* Fix typo left over from previous typo fix in url helper. Closes #9414 [Henrik N]
0
* Update Prototype to 1.6.0 and script.aculo.us to 1.8.0. [sam, madrobby]
0
-* Expose the cookie jar as a helper method (before the view would just get the raw cookie hash) [D
HH]
0
+* Expose the cookie jar as a helper method (before the view would just get the raw cookie hash) [D
avid Heinemeier Hansson]
0
* Integration tests: get_ and post_via_redirect take a headers hash. #9130 [simonjefford]
0
-* Simplfy #view_paths implementation. ActionView templates get the exact object, not a dup. [Rick
]
0
+* Simplfy #view_paths implementation. ActionView templates get the exact object, not a dup. [Rick
Olson]
0
-* Update tests for ActiveSupport's JSON escaping change. [
rick]
0
+* Update tests for ActiveSupport's JSON escaping change. [
Rick Olson]
0
* FormHelper's auto_index should use #to_param instead of #id_before_type_cast. Closes #9994 [mattly]
0
* Doc typo fixes for ActiveRecordHelper. Closes #9973 [mikong]
0
-* Make example parameters in restful routing docs idiomatic. Closes #9993 [
danger]
0
+* Make example parameters in restful routing docs idiomatic. Closes #9993 [
Jack Danger Canty]
0
* Make documentation comment for mime responders match documentation example. Closes #9357 [yon]
0
-* Introduce a new test case class for functional tests. ActionController::TestCase. [
Koz]
0
+* Introduce a new test case class for functional tests. ActionController::TestCase. [
Michael Koziarski]
0
* Fix incorrect path in helper rdoc. Closes #9926 [viktor tron]
0
* Disabled checkboxes don't submit a form value. #9301 [vladr, robinjfisher]
0
-* Added tests for options to ActiveRecordHelper#form. Closes #7213 [richcollins, mikong,
mislav]
0
+* Added tests for options to ActiveRecordHelper#form. Closes #7213 [richcollins, mikong,
Mislav Marohnić]
0
-* Changed before_filter halting to happen automatically on render or redirect but no longer on simply returning false [D
HH]
0
+* Changed before_filter halting to happen automatically on render or redirect but no longer on simply returning false [D
avid Heinemeier Hansson]
0
* Ensure that cookies handle array values correctly. Closes #9937 [queso]
0
-* Make sure resource routes don't clash with internal helpers like javascript_path, image_path etc. #9928 [
gbuesing]
0
+* Make sure resource routes don't clash with internal helpers like javascript_path, image_path etc. #9928 [
Geoff Buesing]
0
* caches_page uses a single after_filter instead of one per action. #9891 [Pratik Naik]
0
* error_messages_for also takes :message and :header_message options which defaults to the old "There were problems with the following fields:" and "<count> errors prohibited this <object_name> from being saved". #8270 [rmm5t, zach-inglis-lt3]
0
-* Make sure that custom inflections are picked up by map.resources. #9815 [
mislav]
0
+* Make sure that custom inflections are picked up by map.resources. #9815 [
Mislav Marohnić]
0
-* Changed SanitizeHelper#sanitize to only allow the custom attributes and tags when specified in the call [D
HH]
0
+* Changed SanitizeHelper#sanitize to only allow the custom attributes and tags when specified in the call [D
avid Heinemeier Hansson]
0
-* Extracted sanitization methods from TextHelper to SanitizeHelper [D
HH]
0
+* Extracted sanitization methods from TextHelper to SanitizeHelper [D
avid Heinemeier Hansson]
0
* rescue_from accepts :with => lambda { |exception| ... } or a normal block. #9827 [Pratik Naik]
0
-* Add :status to redirect_to allowing users to choose their own response code without manually setting headers. #8297 [
codahale, chasgrundy]
0
+* Add :status to redirect_to allowing users to choose their own response code without manually setting headers. #8297 [
Coda Hale, chasgrundy]
0
* Add link_to :back which uses your referrer with a fallback to a javascript link. #7366 [eventualbuddha, Tarmo Tänav]
0
* Fix url_for, redirect_to, etc. with :controller => :symbol instead of 'string'. #8562, #9525 [Justin Lynn, Tarmo Tänav, shoe]
0
-* Use #require_library_or_gem to load the memcache library for the MemCache session and fragment cache stores. Closes #8662. [Rick
]
0
+* Use #require_library_or_gem to load the memcache library for the MemCache session and fragment cache stores. Closes #8662. [Rick
Olson]
0
-* Move ActionController::Routing.optimise_named_routes to ActionController::Base.optimise_named_routes. Now you can set it in the config. [Rick
]
0
+* Move ActionController::Routing.optimise_named_routes to ActionController::Base.optimise_named_routes. Now you can set it in the config. [Rick
Olson]
0
config.action_controller.optimise_named_routes = false
0
-* ActionController::Routing::DynamicSegment#interpolation_chunk should call #to_s on all values before calling URI.escape. [Rick
]
0
+* ActionController::Routing::DynamicSegment#interpolation_chunk should call #to_s on all values before calling URI.escape. [Rick
Olson]
0
* Only accept session ids from cookies, prevents session fixation attacks. [bradediger]
0
* Fixed that render template did not honor exempt_from_layout #9698 [pezra]
0
-* Better error messages if you leave out the :secret option for request forgery protection. Closes #9670 [
rick]
0
+* Better error messages if you leave out the :secret option for request forgery protection. Closes #9670 [
Rick Olson]
0
* Allow ability to disable request forgery protection, disable it in test mode by default. Closes #9693 [Pratik Naik]
0
* Cache asset ids. [Jeremy Kemper]
0
-* Optimized named routes respect AbstractRequest.relative_url_root. #9612 [
danielmorrison, Jeremy Kemper]
0
+* Optimized named routes respect AbstractRequest.relative_url_root. #9612 [
Daniel Morrison, Jeremy Kemper]
0
* Introduce ActionController::Base.rescue_from to declare exception-handling methods. Cleaner style than the case-heavy rescue_action_in_public. #9449 [Norbert Crombach]
0
-* Rename some RequestForgeryProtection methods. The class method is now #protect_from_forgery, and the default parameter is now 'authenticity_token'. [Rick
]
0
+* Rename some RequestForgeryProtection methods. The class method is now #protect_from_forgery, and the default parameter is now 'authenticity_token'. [Rick
Olson]
0
-* Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model that verifies session-specific _tokens for non-GET requests. [Rick
]
0
+* Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model that verifies session-specific _tokens for non-GET requests. [Rick
Olson]
0
-* Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks. Closes #8877. [Rick
, Pratik Naik, Jacques Distler]
0
+* Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks. Closes #8877. [Rick
Olson, Pratik Naik, Jacques Distler]
0
This merges and renames the popular white_list helper (along with some css sanitizing from Jacques Distler version of the same plugin).
0
Also applied updated versions of #strip_tags and #strip_links from #8877.
0
* Remove use of & logic operator. Closes #8114. [watson]
0
-* Fixed JavaScriptHelper#escape_javascript to also escape closing tags #8023 [
rubyruy]
0
+* Fixed JavaScriptHelper#escape_javascript to also escape closing tags #8023 [
Ruy Asan]
0
* Fixed TextHelper#word_wrap for multiline strings with extra carrier returns #8663 [seth]
0
* Fixed that setting the :host option in url_for would automatically turn off :only_path (since :host would otherwise not be shown) #9586 [Bounga]
0
-* Added FormHelper#label. #8641, #9850 [jcoglan,
jarkko]
0
+* Added FormHelper#label. #8641, #9850 [jcoglan,
Jarkko Laine]
0
-* Added AtomFeedHelper (slightly improved from the atom_feed_helper plugin) [D
HH]
0
+* Added AtomFeedHelper (slightly improved from the atom_feed_helper plugin) [D
avid Heinemeier Hansson]
0
-* Prevent errors when generating routes for uncountable resources, (i.e. sheep where plural == singluar). map.resources :sheep now creates sheep_index_url for the collection and sheep_url for the specific item. [
Koz]
0
+* Prevent errors when generating routes for uncountable resources, (i.e. sheep where plural == singluar). map.resources :sheep now creates sheep_index_url for the collection and sheep_url for the specific item. [
Michael Koziarski]
0
-* Added support for HTTP Only cookies (works in IE6+ and FF 2.0.5+) as an improvement for XSS attacks #8895 [Pratik Naik,
Spakman]
0
+* Added support for HTTP Only cookies (works in IE6+ and FF 2.0.5+) as an improvement for XSS attacks #8895 [Pratik Naik,
Mark Somerville]
0
* Don't warn when a path segment precedes a required segment. Closes #9615. [Nicholas Seckar]
0
* Fixed CaptureHelper#content_for to work with the optional content parameter instead of just the block #9434 [sandofsky/wildchild].
0
-* Added Mime::Type.register_alias for dealing with different formats using the same mime type [D
HH]. Example:
0
+* Added Mime::Type.register_alias for dealing with different formats using the same mime type [D
avid Heinemeier Hansson]. Example:
0
class PostsController < ApplicationController
0
before_filter :adjust_format_for_iphone
0
-* Added that render :json will automatically call .to_json unless it's being passed a string [D
HH].
0
+* Added that render :json will automatically call .to_json unless it's being passed a string [D
avid Heinemeier Hansson].
0
* Autolink behaves well with emails embedded in URLs. #7313 [Jeremy McAnally, Tarmo Tänav]
0
* root_path returns '/' not ''. #9563 [Pratik Naik]
0
-* Fixed that setting request.format should also affect respond_to blocks [D
HH]
0
+* Fixed that setting request.format should also affect respond_to blocks [D
avid Heinemeier Hansson]
0
* Add option to force binary mode on tempfile used for fixture_file_upload. #6380 [Jonathan Viney]
0
* Moved ActionController::Macros::InPlaceEditing into the in_place_editor plugin on the official Rails svn. #9513 [Pratik Naik]
0
-* Removed deprecated form of calling xml_http_request/xhr without the first argument being the http verb [D
HH]
0
+* Removed deprecated form of calling xml_http_request/xhr without the first argument being the http verb [D
avid Heinemeier Hansson]
0
-* Removed deprecated methods [D
HH]:
0
+* Removed deprecated methods [D
avid Heinemeier Hansson]:
0
- ActionController::Base#keep_flash (use flash.keep instead)
0
- ActionController::Base#expire_matched_fragments (just call expire_fragment with a regular expression)
0
- ActionController::Base.template_root/= methods (use ActionController#Base.view_paths/= instead)
0
- ActionController::Base.cookie (use ActionController#Base.cookies[]= instead)
0
-* Removed the deprecated behavior of appending ".png" to image_tag/image_path calls without an existing extension [D
HH]
0
+* Removed the deprecated behavior of appending ".png" to image_tag/image_path calls without an existing extension [D
avid Heinemeier Hansson]
0
-* Removed ActionController::Base.scaffold -- it went through the whole idea of scaffolding (card board walls you remove and tweak one by one). Use the scaffold generator instead (it does resources too now!) [D
HH]
0
+* Removed ActionController::Base.scaffold -- it went through the whole idea of scaffolding (card board walls you remove and tweak one by one). Use the scaffold generator instead (it does resources too now!) [D
avid Heinemeier Hansson]
0
-* Optimise named route generation when using positional arguments. [
Koz]
0
+* Optimise named route generation when using positional arguments. [
Michael Koziarski]
0
This change delivers significant performance benefits for the most
0
common usage scenarios for modern rails applications by avoiding the
0
* Fix layout overriding response status. #9476 [lotswholetime]
0
-* Add field_set_tag for generating field_sets, closes #9477. [
djanowski]
0
+* Add field_set_tag for generating field_sets, closes #9477. [
Damian Janowski]
0
-* Allow additional parameters to be passed to named route helpers when using positional arguments. Closes #8930 [
ian.w.white@gmail.com]
0
+* Allow additional parameters to be passed to named route helpers when using positional arguments. Closes #8930 [
Ian White]
0
* Make render :partial work with a :collection of Hashes, previously this wasn't possible due to backwards compatibility restrictions. [Pratik Naik]
0
* Find layouts even if they're not in the first view_paths directory. Closes #9258 [caio]
0
-* Major improvement to the documentation for the options / select form helpers. Closes #9038 [
kampers, jardeon, wesg]
0
+* Major improvement to the documentation for the options / select form helpers. Closes #9038 [
Chris Kampmeier, jardeon, wesg]
0
* Fix number_to_human_size when using different precisions. Closes #7536. [RichardStrand, mpalmer]
0
-* Added partial layouts (see example in action_view/lib/partials.rb) [D
HH]
0
+* Added partial layouts (see example in action_view/lib/partials.rb) [D
avid Heinemeier Hansson]
0
-* Allow you to set custom :conditions on resource routes. [Rick
]
0
+* Allow you to set custom :conditions on resource routes. [Rick
Olson]
0
-* Fixed that file.content_type for uploaded files would include a trailing \r #9053 [
bgreenlee]
0
+* Fixed that file.content_type for uploaded files would include a trailing \r #9053 [
Brad Greenlee]
0
* url_for now accepts a series of symbols representing the namespace of the record [Josh Knowles]
0
* Make sure missing template exceptions actually say which template they were looking for. Closes #8683 [dasil003]
0
-* Fix errors with around_filters which do not yield, restore 1.1 behaviour with after filters. Closes #8891 [
skaes]
0
+* Fix errors with around_filters which do not yield, restore 1.1 behaviour with after filters. Closes #8891 [
Stefan Kaes]
0
After filters will *no longer* be run if an around_filter fails to yield, users relying on
0
this behaviour are advised to put the code in question after a yield statement in an around filter.
0
render :partial => 'show.html.erb'
0
-* Improve capture helper documentation. #8796 [
kampers]
0
+* Improve capture helper documentation. #8796 [
Chris Kampmeier]
0
* Prefix nested resource named routes with their action name, e.g. new_group_user_path(@group) instead of group_new_user_path(@group). The old nested action named route is deprecated in Rails 1.2.4. #8558 [David Chelimsky]
0
-* Allow sweepers to be created solely for expiring after controller actions, not model changes [D
HH]
0
+* Allow sweepers to be created solely for expiring after controller actions, not model changes [D
avid Heinemeier Hansson]
0
-* Added assigns method to ActionController::Caching::Sweeper to easily access instance variables on the controller [D
HH]
0
+* Added assigns method to ActionController::Caching::Sweeper to easily access instance variables on the controller [D
avid Heinemeier Hansson]
0
* Give the legacy X-POST_DATA_FORMAT header greater precedence during params parsing for backward compatibility. [Jeremy Kemper]
0
* Fixed that radio_button_tag should generate unique ids #3353 [Bob Silva, Rebecca, Josh Peek]
0
-* Fixed that HTTP authentication should work if the header is called REDIRECT_X_HTTP_AUTHORIZATION as well #6754 [
mislaw]
0
+* Fixed that HTTP authentication should work if the header is called REDIRECT_X_HTTP_AUTHORIZATION as well #6754 [
Mislav Marohnić]
0
* Don't mistakenly interpret the request uri as the query string. #8731 [Pratik Naik, Jeremy Kemper]
0
-* Make ActionView#view_paths an attr_accessor for real this time. Also, don't perform an unnecessary #compact on the @view_paths array in #initialize. Closes #8582 [dasil003, julik,
rick]
0
+* Make ActionView#view_paths an attr_accessor for real this time. Also, don't perform an unnecessary #compact on the @view_paths array in #initialize. Closes #8582 [dasil003, julik,
Rick Olson]
0
* Tolerate missing content type on multipart file uploads. Fix for Safari 3. [Jeremy Kemper]
0
* Resources: url_for([parent, child]) generates /parents/1/children/2 for the nested resource. Likewise with the other simply helpful methods like form_for and link_to. #6432 [mhw, Jonathan Vaught, lotswholetime]
0
-* Assume html format when rendering partials in RJS. #8076 [Rick
]
0
+* Assume html format when rendering partials in RJS. #8076 [Rick
Olson]
0
* Don't double-escape url_for in views. #8144 [Rich Collins, Josh Peek]
0
* Reduce file stat calls when checking for template changes. #7736 [alex]
0
-* Added custom path cache_page/expire_page parameters in addition to the options hashes [D
HH]. Example:
0
+* Added custom path cache_page/expire_page parameters in addition to the options hashes [D
avid Heinemeier Hansson]. Example:
0
caches_page(response.body, "/index.html")
0
-* Action Caching speedup. #8231 [
skaes]
0
+* Action Caching speedup. #8231 [
Stefan Kaes]
0
* Wordsmith resources documentation. #8484 [marclove]
0
* Added option to suppress :size when using :maxlength for FormTagHelper#text_field #3112 [Tim Pope]
0
-* catch possible WSOD when trying to render a missing partial. Closes #8454 [
Catfish]
0
+* catch possible WSOD when trying to render a missing partial. Closes #8454 [
Jonathan del Strother]
0
* Rewind request body after reading it, if possible. #8438 [s450r1]
0
-* Resource namespaces are inherited by their has_many subresources. #8280 [marclove,
ggarside]
0
+* Resource namespaces are inherited by their has_many subresources. #8280 [marclove,
Geoff Garside]
0
* Fix filtered parameter logging with nil parameter values. #8422 [choonkeat]
0
-* Integration tests: alias xhr to xml_http_request and add a request_method argument instead of always using POST. #7124 [Nik Wakelin, Fran
cois Beausoleil, Wizard]
0
+* Integration tests: alias xhr to xml_http_request and add a request_method argument instead of always using POST. #7124 [Nik Wakelin, Fran
çois Beausoleil, Wizard]
0
* Document caches_action. #5419 [Jarkko Laine]
0
* Update to Prototype 1.5.1. [Sam Stephenson]
0
-* Allow routes to be decalred under namespaces [Tobias L
uetke]:
0
+* Allow routes to be decalred under namespaces [Tobias L
ütke]:
0
map.namespace :admin do |admin|
0
admin.root :controller => "products"
0
* Update to script.aculo.us 1.7.1_beta3. [Thomas Fuchs]
0
-* observe_form always sends the serialized form. #5271 [
manfred, normelton@gmail.com]
0
+* observe_form always sends the serialized form. #5271 [
Manfred Stienstra, normelton@gmail.com]
0
* Parse url-encoded and multipart requests ourselves instead of delegating to CGI. [Jeremy Kemper]
0
* select :include_blank option can be set to a string instead of true, which just uses an empty string. #7664 [Wizard]
0
-* Added url_for usage on render :location, which allows for record identification [D
HH]. Example:
0
+* Added url_for usage on render :location, which allows for record identification [D
avid Heinemeier Hansson]. Example:
0
render :xml => person, :status => :created, :location => person
0
-* Added record identifications to FormHelper#form_for and PrototypeHelper#remote_form_for [D
HH]. Examples:
0
+* Added record identifications to FormHelper#form_for and PrototypeHelper#remote_form_for [D
avid Heinemeier Hansson]. Examples:
0
<% form_for(@post) do |f| %>
0
-* Rationalize route path escaping according to RFC 2396 section 3.3. #7544, #8307. [Jeremy Kemper,
chrisroos, begemot, jugend]
0
+* Rationalize route path escaping according to RFC 2396 section 3.3. #7544, #8307. [Jeremy Kemper,
Chris Roos, begemot, jugend]
0
-* Added record identification with polymorphic routes for ActionController::Base#url_for and ActionView::Base#url_for [D
HH]. Examples:
0
+* Added record identification with polymorphic routes for ActionController::Base#url_for and ActionView::Base#url_for [D
avid Heinemeier Hansson]. Examples:
0
redirect_to(post) # => redirect_to(posts_url(post)) => Location: http://example.com/posts/1
0
link_to(post.title, post) # => link_to(post.title, posts_url(post)) => <a href="/posts/1">Hello world</a>
0
Any method that calls url_for on its parameters will automatically benefit from this.
0
-* Removed deprecated parameters_for_method_reference concept (legacy from before named routes) [D
HH]
0
+* Removed deprecated parameters_for_method_reference concept (legacy from before named routes) [D
avid Heinemeier Hansson]
0
* Add ActionController::Routing::Helpers, a module to contain common URL helpers such as polymorphic_url. [Nicholas Seckar]
0
-* Included the HttpAuthentication plugin as part of core (ActionController::HttpAuthentication::Basic) [D
HH]
0
+* Included the HttpAuthentication plugin as part of core (ActionController::HttpAuthentication::Basic) [D
avid Heinemeier Hansson]
0
-* Modernize documentation for form helpers. [
jeremymcanally]
0
+* Modernize documentation for form helpers. [
Jeremy McAnally]
0
* Add brief introduction to REST to the resources documentation. [fearoffish]
0
* Fix various documentation typos throughout ActionPack. [Henrik N]
0
-* Enhance documentation and add examples for url_for. [
jeremymcanally]
0
+* Enhance documentation and add examples for url_for. [
Jeremy McAnally]
0
* Fix documentation typo in routes. [Norbert Crombach, pam]
0
* Replace the current block/continuation filter chain handling by an implementation based on a simple loop. #8226 [Stefan Kaes]
0
-* Update UrlWriter to accept :anchor parameter. Closes #6771. [
octopod]
0
+* Update UrlWriter to accept :anchor parameter. Closes #6771. [
Chris McGrath]
0
-* Added RecordTagHelper for using RecordIdentifier conventions on divs and other container elements [D
HH]. Example:
0
+* Added RecordTagHelper for using RecordIdentifier conventions on divs and other container elements [D
avid Heinemeier Hansson]. Example:
0
<% div_for(post) do %> <div id="post_45" class="post">
0
<%= post.body %> What a wonderful world!
0
-* Added page[record] accessor to JavaScriptGenerator that relies on RecordIdentifier to find the right dom id [D
HH]. Example:
0
+* Added page[record] accessor to JavaScriptGenerator that relies on RecordIdentifier to find the right dom id [D
avid Heinemeier Hansson]. Example:
0
# Calls: new Effect.fade('post_45');
0
render(:update) { |page| page[post].visual_effect(:fade) }
0
-* Added RecordIdentifier to enforce view conventions on records for dom ids, classes, and partial paths [D
HH]
0
+* Added RecordIdentifier to enforce view conventions on records for dom ids, classes, and partial paths [D
avid Heinemeier Hansson]
0
-* Added map.namespace to deal with the common situation of admin sections and the like [D
HH]
0
+* Added map.namespace to deal with the common situation of admin sections and the like [D
avid Heinemeier Hansson]
0
:has_many => [ :tags, :images, :variants ]
0
-* Added :name_prefix as standard for nested resources [D
HH]. WARNING: May be backwards incompatible with your app
0
+* Added :name_prefix as standard for nested resources [D
avid Heinemeier Hansson]. WARNING: May be backwards incompatible with your app
0
This does mean that if you intended to have comments_url go to /emails/5/comments, then you'll have to set :name_prefix to nil explicitly.
0
-* Added :has_many and :has_one for declaring plural and singular resources beneath the current [D
HH]
0
+* Added :has_many and :has_one for declaring plural and singular resources beneath the current [D
avid Heinemeier Hansson]
0
map.resources :notes, :has_many => [ :comments, :attachments ], :has_one => :author
0
-* Added that render :xml will try to call to_xml if it can [D
HH]. Makes these work:
0
+* Added that render :xml will try to call to_xml if it can [D
avid Heinemeier Hansson]. Makes these work:
0
render :xml => comments
0
-* Added :location option to render so that the common pattern of rendering a response after creating a new resource is now a 1-liner [D
HH]
0
+* Added :location option to render so that the common pattern of rendering a response after creating a new resource is now a 1-liner [D
avid Heinemeier Hansson]
0
render :xml => post.to_xml, :status => :created, :location => post_url(post)
0
-* Ensure that render_text only adds string content to the body of the response [D
HH]
0
+* Ensure that render_text only adds string content to the body of the response [D
avid Heinemeier Hansson]
0
* Return the string representation from an Xml Builder when rendering a partial. Closes #5044 [Tim Pope]
0
-* Fixed that parameters from XML should also be presented in a hash with indifferent access [D
HH]
0
+* Fixed that parameters from XML should also be presented in a hash with indifferent access [D
avid Heinemeier Hansson]
0
-* Tweak template format rules so that the ACCEPT header is only used if it's text/javascript. This is so ajax actions without a :format param get recognized as Mime::JS. [Rick
]
0
+* Tweak template format rules so that the ACCEPT header is only used if it's text/javascript. This is so ajax actions without a :format param get recognized as Mime::JS. [Rick
Olson]
0
-* The default respond_to blocks don't set a specific extension anymore, so that both 'show.rjs' and 'show.js.rjs' will work. [Rick
]
0
+* The default respond_to blocks don't set a specific extension anymore, so that both 'show.rjs' and 'show.js.rjs' will work. [Rick
Olson]
0
* Allow layouts with extension of .html.erb. Closes #8032 [Josh Knowles]
0
-* Change default respond_to templates for xml and rjs formats. [Rick
]
0
+* Change default respond_to templates for xml and rjs formats. [Rick
Olson]
0
* Default xml template goes from #{action_name}.rxml => #{action_name}.xml.builder.
0
* Default rjs template goes from #{action_name}.rjs => #{action_name}.js.rjs.
0
-* Fix WSOD due to modification of a formatted template extension so that requests to templates like 'foo.html.erb' fail on the second hit. [Rick
]
0
+* Fix WSOD due to modification of a formatted template extension so that requests to templates like 'foo.html.erb' fail on the second hit. [Rick
Olson]
0
-* Fix WSOD when template compilation fails [Rick
]
0
+* Fix WSOD when template compilation fails [Rick
Olson]
0
-* Change ActionView template defaults. Look for templates using the request format first, such as "show.html.erb" or "show.xml.builder", before looking for the old defaults like "show.erb" or "show.builder" [Rick
]
0
+* Change ActionView template defaults. Look for templates using the request format first, such as "show.html.erb" or "show.xml.builder", before looking for the old defaults like "show.erb" or "show.builder" [Rick
Olson]
0
* Highlight helper highlights one or many terms in a single pass. [Jeremy Kemper]
0
-* Dropped the use of ; as a separator of non-crud actions on resources and went back to the vanilla slash. It was a neat idea, but lots of the non-crud actions turned out not to be RPC (as the ; was primarily intended to discourage), but legitimate sub-resources, like /parties/recent, which didn't deserve the uglification of /parties;recent. Further more, the semicolon caused issues with caching and HTTP authentication in Safari. Just Not Worth It [D
HH]
0
+* Dropped the use of ; as a separator of non-crud actions on resources and went back to the vanilla slash. It was a neat idea, but lots of the non-crud actions turned out not to be RPC (as the ; was primarily intended to discourage), but legitimate sub-resources, like /parties/recent, which didn't deserve the uglification of /parties;recent. Further more, the semicolon caused issues with caching and HTTP authentication in Safari. Just Not Worth It [D
avid Heinemeier Hansson]
0
-* Added that FormTagHelper#submit_tag will return to its original state if the submit fails and you're using :disable_with [D
HH]
0
+* Added that FormTagHelper#submit_tag will return to its original state if the submit fails and you're using :disable_with [D
avid Heinemeier Hansson]
0
-* Cleaned up, corrected, and mildly expanded ActionPack documentation. Closes #7190 [
jeremymcanally]
0
+* Cleaned up, corrected, and mildly expanded ActionPack documentation. Closes #7190 [
Jeremy McAnally]
0
-* Small collection of ActionController documentation cleanups. Closes #7319 [
jeremymcanally]
0
+* Small collection of ActionController documentation cleanups. Closes #7319 [
Jeremy McAnally]
0
* Make sure the route expiry hash is constructed by comparing the to_param-ized values of each hash. [Jamis Buck]
0
* Allow array and hash query parameters. Array route parameters are converted/to/a/path as before. #6765, #7047, #7462 [bgipsy, Jeremy McAnally, Dan Kubb, brendan]
0
# Add a #dbman attr_reader for CGI::Session and make CGI::Session::CookieStore#generate_digest public so it's easy to generate digests
0
-using the cookie store's secret. [Rick
]
0
+using the cookie store's secret. [Rick
Olson]
0
-* Added Request#url that returns the complete URL used for the request [D
HH]
0
+* Added Request#url that returns the complete URL used for the request [D
avid Heinemeier Hansson]
0
* Extract dynamic scaffolding into a plugin. #7700 [Josh Peek]
0
-* Added user/password options for url_for to add http authentication in a URL [D
HH]
0
+* Added user/password options for url_for to add http authentication in a URL [D
avid Heinemeier Hansson]
0
* Fixed that FormTagHelper#text_area_tag should disregard :size option if it's not a string [Brendon Davidson]
0
* Set the original button value in an attribute of the button when using the :disable_with key with submit_tag, so that the original can be restored later. [Jamis Buck]
0
-* session_enabled? works with session :off. #6680 [
Catfish]
0
+* session_enabled? works with session :off. #6680 [
Jonathan del Strother]
0
* Added :port and :host handling to UrlRewriter (which unified url_for usage, regardless of whether it's called in view or controller) #7616 [alancfrancis]
0
@@ -1161,7 +1161,7 @@ using the cookie store's secret. [Rick]
0
* Cookie session store: empty and unchanged sessions don't write a cookie. [Jeremy Kemper]
0
-* Added helper(:all) as a way to include all helpers from app/helpers/**/*.rb in ApplicationController [D
HH]
0
+* Added helper(:all) as a way to include all helpers from app/helpers/**/*.rb in ApplicationController [D
avid Heinemeier Hansson]
0
* Integration tests: introduce methods for other HTTP methods. #6353 [caboose]
0
@@ -1182,7 +1182,7 @@ Roos]
0
* Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though.
0
-* Added caching option to AssetTagHelper#stylesheet_link_tag and AssetTagHelper#javascript_include_tag [D
HH]. Examples:
0
+* Added caching option to AssetTagHelper#stylesheet_link_tag and AssetTagHelper#javascript_include_tag [D
avid Heinemeier Hansson]. Examples:
0
stylesheet_link_tag :all, :cache => true # when ActionController::Base.perform_caching is false =>
0
<link href="/stylesheets/style1.css" media="screen" rel="Stylesheet" type="text/css" />
0
@@ -1197,13 +1197,13 @@ Roos]
0
* Work around the two connection per host browser limit: use asset%d.myapp.com to distribute asset requests among asset[0123].myapp.com. Use a DNS wildcard or CNAMEs to map these hosts to your asset server. See http://www.die.net/musings/page_load_time/ for background. [Jeremy Kemper]
0
-* Added default mime type for CSS (Mime::CSS) [D
HH]
0
+* Added default mime type for CSS (Mime::CSS) [D
avid Heinemeier Hansson]
0
-* Added that rendering will automatically insert the etag header on 200 OK responses. The etag is calculated using MD5 of the response body. If a request comes in that has a matching etag, the response will be changed to a 304 Not Modified and the response body will be set to an empty string. [D
HH]
0
+* Added that rendering will automatically insert the etag header on 200 OK responses. The etag is calculated using MD5 of the response body. If a request comes in that has a matching etag, the response will be changed to a 304 Not Modified and the response body will be set to an empty string. [D
avid Heinemeier Hansson]
0
-* Added X-Runtime to all responses with the request run time [D
HH]
0
+* Added X-Runtime to all responses with the request run time [D
avid Heinemeier Hansson]
0
-* Add Mime::Type convenience methods to check the current mime type. [Rick
]
0
+* Add Mime::Type convenience methods to check the current mime type. [Rick
Olson]
0
request.format.html? # => true if Mime::HTML
0
request.format.jpg? # => true if Mime::JPG
0
@@ -1216,16 +1216,16 @@ Roos]
0
* Add a :url_based_filename => true option to ActionController::Streaming::send_file, which allows URL-based filenames. [Thomas Fuchs]
0
-* Fix that FormTagHelper#submit_tag using :disable_with should trigger the onsubmit handler of its form if available [D
HH]
0
+* Fix that FormTagHelper#submit_tag using :disable_with should trigger the onsubmit handler of its form if available [D
avid Heinemeier Hansson]
0
-* Fix #render_file so that TemplateError is called with the correct params and you don't get the WSOD. [Rick
]
0
+* Fix #render_file so that TemplateError is called with the correct params and you don't get the WSOD. [Rick
Olson]
0
* Fix issue with deprecation messing up #template_root= usage. Add #prepend_view_path and #append_view_path to allow modification of a copy of the
0
-superclass' view_paths. [Rick
]
0
+superclass' view_paths. [Rick
Olson]
0
* Allow Controllers to have multiple view_paths instead of a single template_root. Closes #2754 [John Long]
0
-* Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick
]
0
+* Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick
Olson]
0
* improve error message for Routing for named routes. Closes #7346 [Rob Sanheim]
0
@@ -1233,15 +1233,15 @@ superclass' view_paths. [Rick]
0
* fix form_for example in ActionController::Resources documentation. Closes #7362 [gnarg]
0
-* Make sure that the string returned by TextHelper#truncate is actually a string, not a char proxy -- that should only be used internally while working on a multibyte-safe way of truncating [D
HH]
0
+* Make sure that the string returned by TextHelper#truncate is actually a string, not a char proxy -- that should only be used internally while working on a multibyte-safe way of truncating [D
avid Heinemeier Hansson]
0
-* Added FormBuilder#submit as a delegate for FormTagHelper#submit_tag [D
HH]
0
+* Added FormBuilder#submit as a delegate for FormTagHelper#submit_tag [D
avid Heinemeier Hansson]
0
* Allow Routes to generate all urls for a set of options by specifying :generate_all => true. Allows caching to properly set or expire all paths for a resource. References #1739. [Nicholas Seckar]
0
* Change the query parser to map empty GET params to "" rather than nil. Closes #5694. [Nicholas Seckar]
0
-* date_select and datetime_select take a :default option. #7052 [
nik.wakelin]
0
+* date_select and datetime_select take a :default option. #7052 [
Nik Wakelin]
0
date_select "post", "written_on", :default => 3.days.from_now
0
date_select "credit_card", "bill_due", :default => { :day => 20 }
0
@@ -1257,7 +1257,7 @@ superclass' view_paths. [Rick]
0
* Change session restoration to allow namespaced models to be autoloaded. Closes #6348. [Nicholas Seckar]
0
-* Fix doubly appearing parameters due to string and symbol mixups. Closes #2551. [
aeden]
0
+* Fix doubly appearing parameters due to string and symbol mixups. Closes #2551. [
Anthony Eden]
0
* Fix overly greedy rescues when loading helpers. Fixes #6268. [Nicholas Seckar]
0
@@ -1277,7 +1277,7 @@ superclass' view_paths. [Rick]
0
* Fix #distance_of_time_in_words to report accurately against the Duration class. #7114 [eventualbuddha]
0
-* Refactor #form_tag to allow easy extending. [Rick
]
0
+* Refactor #form_tag to allow easy extending. [Rick
Olson]
0
* Update to Prototype 1.5.0. [Sam Stephenson]
0
@@ -1289,11 +1289,11 @@ superclass' view_paths. [Rick]
0
* Allow exempt_from_layout :rhtml. #6742, #7026 [Dan Manges, Squeegy]
0
-* Recognize the .txt extension as Mime::TEXT [Rick
]
0
+* Recognize the .txt extension as Mime::TEXT [Rick
Olson]
0
* Fix parsing of array[] CGI parameters so extra empty values aren't included. #6252 [Nicholas Seckar, aiwilliams, brentrowland]
0
-* link_to_unless_current works with full URLs as well as paths. #6891 [Jarkko Laine,
manfred, idrifter]
0
+* link_to_unless_current works with full URLs as well as paths. #6891 [Jarkko Laine,
Manfred Stienstra, idrifter]
0
* Lookup the mime type for #auto_discovery_link_tag in the Mime::Type class. Closes #6941 [Josh Peek]
0
@@ -1339,7 +1339,7 @@ superclass' view_paths. [Rick]
0
* Unrescued ActiveRecord::RecordNotFound responds with 404 instead of 500. [Jeremy Kemper]
0
-* Improved auto_link to match more valid urls correctly [Tobias L
uetke]
0
+* Improved auto_link to match more valid urls correctly [Tobias L
ütke]
0
* Add singleton resources. [Rick Olson]
0
@@ -1362,7 +1362,7 @@ superclass' view_paths. [Rick]
0
* Add :index and @auto_index capability to model driven date/time selects. #847, #2655 [moriq, Doug Fales, Bob Silva]
0
-* Add :order to datetime_select, select_datetime, and select_date. #1427 [Timothee Peignier,
patrick@lenz.sh, Bob Silva]
0
+* Add :order to datetime_select, select_datetime, and select_date. #1427 [Timothee Peignier,
Patrick Lenz, Bob Silva]
0
* Added time_select to work with time values in models. Update scaffolding. #2489, #2833 [Justin Palmer, Andre Caum, Bob Silva]
0
@@ -1372,15 +1372,15 @@ superclass' view_paths. [Rick]
0
* Adds :time_separator to select_time and :date_separator to select_datetime. Preserves BC. #3811 [Bob Silva]
0
-* Added map.root as an alias for map.connect '' [D
HH]
0
+* Added map.root as an alias for map.connect '' [D
avid Heinemeier Hansson]
0
-* Added Request#format to return the format used for the request as a mime type. If no format is specified, the first Request#accepts type is used. This means you can stop using respond_to for anything else than responses [D
HH]. Examples:
0
+* Added Request#format to return the format used for the request as a mime type. If no format is specified, the first Request#accepts type is used. This means you can stop using respond_to for anything else than responses [D
avid Heinemeier Hansson]. Examples:
0
GET /posts/5.xml | request.format => Mime::XML
0
GET /posts/5.xhtml | request.format => Mime::HTML
0
GET /posts/5 | request.format => request.accepts.first (usually Mime::HTML for browsers)
0
-* Added the option for extension aliases to mime type registration [D
HH]. Example (already in the default routes):
0
+* Added the option for extension aliases to mime type registration [D
avid Heinemeier Hansson]. Example (already in the default routes):
0
Mime::Type.register "text/html", :html, %w( application/xhtml+xml ), %w( xhtml )
0
@@ -1390,9 +1390,9 @@ superclass' view_paths. [Rick]
0
* Added CSV to Mime::SET so that respond_to csv will work [Cody Fauser]
0
-* Fixed that HEAD should return the proper Content-Length header (that is, actually use @body.size, not just 0) [D
HH]
0
+* Fixed that HEAD should return the proper Content-Length header (that is, actually use @body.size, not just 0) [D
avid Heinemeier Hansson]
0
-* Added GET-masquarading for HEAD, so request.method will return :get even for HEADs. This will help anyone relying on case request.method to automatically work with HEAD and map.resources will also allow HEADs to all GET actions. Rails automatically throws away the response content in a reply to HEAD, so you don't even need to worry about that. If you, for whatever reason, still need to distinguish between GET and HEAD in some edge case, you can use Request#head? and even Request.headers["REQUEST_METHOD"] for get the "real" answer. Closes #6694 [D
HH]
0
+* Added GET-masquarading for HEAD, so request.method will return :get even for HEADs. This will help anyone relying on case request.method to automatically work with HEAD and map.resources will also allow HEADs to all GET actions. Rails automatically throws away the response content in a reply to HEAD, so you don't even need to worry about that. If you, for whatever reason, still need to distinguish between GET and HEAD in some edge case, you can use Request#head? and even Request.headers["REQUEST_METHOD"] for get the "real" answer. Closes #6694 [D
avid Heinemeier Hansson]
0
* Update Routing to complain when :controller is not specified by a route. Closes #6669. [Nicholas Seckar]
0
@@ -1441,13 +1441,13 @@ superclass' view_paths. [Rick]
0
* Update to latest Prototype, which doesn't serialize disabled form elements, adds clone() to arrays, empty/non-string Element.update() and adds a fixes excessive error reporting in WebKit beta versions [Thomas Fuchs]
0
-* Deprecate start_form_tag and end_form_tag. Use form_tag / '</form>' from now on. [Rick
]
0
+* Deprecate start_form_tag and end_form_tag. Use form_tag / '</form>' from now on. [Rick
Olson]
0
-* Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of FormTagHelper#form_tag [Rick
]
0
+* Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of FormTagHelper#form_tag [Rick
Olson]
0
-* Add a 0 margin/padding div around the hidden _method input tag that form_tag outputs. [Rick
]
0
+* Add a 0 margin/padding div around the hidden _method input tag that form_tag outputs. [Rick
Olson]
0
-* Added block-usage to TagHelper#content_tag [D
HH]. Example:
0
+* Added block-usage to TagHelper#content_tag [D
avid Heinemeier Hansson]. Example:
0
<% content_tag :div, :class => "strong" %>
0
@@ -1456,13 +1456,13 @@ superclass' view_paths. [Rick]
0
<div class="strong">Hello world!</div>
0
-* Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true #6409 [Bob
Silva]
0
+* Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true #6409 [Bob
Silva]
0
-* Upgraded NumberHelper with number_to_phone support international formats to comply with ITU E.123 by supporting area codes with less than 3 digits, added precision argument to number_to_human_size (defaults to 1) #6421 [Bob
Silva]
0
+* Upgraded NumberHelper with number_to_phone support international formats to comply with ITU E.123 by supporting area codes with less than 3 digits, added precision argument to number_to_human_size (defaults to 1) #6421 [Bob
Silva]
0
-* Fixed that setting RAILS_ASSET_ID to "" should not add a trailing slash after assets #6454 [Bob
Silva/chrismear]
0
+* Fixed that setting RAILS_ASSET_ID to "" should not add a trailing slash after assets #6454 [Bob
Silva/chrismear]
0
-* Force *_url named routes to show the host in ActionView [Rick
]
0
+* Force *_url named routes to show the host in ActionView [Rick
Olson]
0
<%= url_for ... %> # no host
0
<%= foo_path %> # no host
0
@@ -1472,9 +1472,9 @@ superclass' view_paths. [Rick]
0
* Add JavaScriptGenerator#literal for wrapping a string in an object whose #to_json is the string itself. [Sam Stephenson]
0
-* Add <%= escape_once html %> to escape html while leaving any currently escaped entities alone. Fix button_to double-escaping issue. [Rick
]
0
+* Add <%= escape_once html %> to escape html while leaving any currently escaped entities alone. Fix button_to double-escaping issue. [Rick
Olson]
0
-* Fix double-escaped entities, such as &amp;, &#123;, etc. [Rick
]
0
+* Fix double-escaped entities, such as &amp;, &#123;, etc. [Rick
Olson]
0
* Fix deprecation warnings when rendering the template error template. [Nicholas Seckar]
0
@@ -1500,7 +1500,7 @@ superclass' view_paths. [Rick]
0
* Rename test assertion to prevent shadowing. Closes #6306. [psross]
0
-* Fixed that NumberHelper#number_to_delimiter should respect precision of higher than two digits #6231 [
phallstrom]
0
+* Fixed that NumberHelper#number_to_delimiter should respect precision of higher than two digits #6231 [
Philip Hallstrom]
0
* Fixed that FormHelper#radio_button didn't respect an :id being passed in #6266 [evansj]
0
@@ -1514,7 +1514,7 @@ superclass' view_paths. [Rick]
0
Which is needed for dealing with the IE6 DOM when it's not yet fully loaded.
0
-* Fixed that rescue template path shouldn't be hardcoded, then it's easier to hook in your own #6295 [
mnaberez]
0
+* Fixed that rescue template path shouldn't be hardcoded, then it's easier to hook in your own #6295 [
Mike Naberezny]
0
* Fixed escaping of backslashes in JavaScriptHelper#escape_javascript #6302 [sven@c3d2.de]
0
@@ -1555,7 +1555,7 @@ superclass' view_paths. [Rick]
0
* Rescue Errno::ECONNRESET to handle an unexpectedly closed socket connection. Improves SCGI reliability. #3368, #6226 [sdsykes, fhanshaw@vesaria.com]
0
-* Added that respond_to blocks will automatically set the content type to be the same as is requested [D
HH]. Examples:
0
+* Added that respond_to blocks will automatically set the content type to be the same as is requested [D
avid Heinemeier Hansson]. Examples:
0
format.html { render :text => "I'm being sent as text/html" }
0
@@ -1563,9 +1563,9 @@ superclass' view_paths. [Rick]
0
format.atom { render :text => "I'm being sent as application/xml", :content_type => Mime::XML }
0
-* Added utf-8 as the default charset for all renders. You can change this default using ActionController::Base.default_charset=(encoding) [D
HH]
0
+* Added utf-8 as the default charset for all renders. You can change this default using ActionController::Base.default_charset=(encoding) [D
avid Heinemeier Hansson]
0
-* Added proper getters and setters for content type and charset [D
HH]. Example of what we used to do:
0
+* Added proper getters and setters for content type and charset [D
avid Heinemeier Hansson]. Example of what we used to do:
0
response.headers["Content-Type"] = "application/atom+xml; charset=utf-8"
0
@@ -1600,7 +1600,7 @@ superclass' view_paths. [Rick]
0
* Load helpers in alphabetical order for consistency. Resolve cyclic javascript_helper dependency. #6132, #6178 [choonkeat@gmail.com]
0
-* Skip params with empty names, such as the &=Save query string from <input type="submit"/>. #2569 [
manfred, raphinou@yahoo.com]
0
+* Skip params with empty names, such as the &=Save query string from <input type="submit"/>. #2569 [
Manfred Stienstra, raphinou@yahoo.com]
0
* Fix assert_tag so that :content => "foo" does not match substrings, but only exact strings. Use :content => /foo/ to match substrings. #2799 [Eric Hodel]
0
@@ -1610,7 +1610,7 @@ superclass' view_paths. [Rick]
0
* Update UrlWriter to support :only_path. [Nicholas Seckar, Dave Thomas]
0
-* Fixed JavaScriptHelper#link_to_function and JavaScriptHelper#button_to_function to have the script argument be optional [D
HH]. So what used to require a nil, like this:
0
+* Fixed JavaScriptHelper#link_to_function and JavaScriptHelper#button_to_function to have the script argument be optional [D
avid Heinemeier Hansson]. So what used to require a nil, like this:
0
link_to("Hider", nil, :class => "hider_link") { |p| p[:something].hide }
0
@@ -1631,7 +1631,7 @@ superclass' view_paths. [Rick]
0
* Fixed that AssetTagHelper#image_tag and others using compute_public_path should not modify the incoming source argument (closes #5102) [eule@space.ch]
0
-* Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that doesn't have an extension [D
HH]
0
+* Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that doesn't have an extension [D
avid Heinemeier Hansson]
0
* Fixed FormOptionsHelper#select to respect :selected value #5813
0
@@ -1641,16 +1641,16 @@ superclass' view_paths. [Rick]
0
* Improved resolution of DateHelper#distance_of_time_in_words for better precision #5994 [Bob Silva]
0
-* Changed that uncaught exceptions raised any where in the application will cause RAILS_ROOT/public/500.html to be read and shown instead of just the static "Application error (Rails)" [D
HH]
0
+* Changed that uncaught exceptions raised any where in the application will cause RAILS_ROOT/public/500.html to be read and shown instead of just the static "Application error (Rails)" [D
avid Heinemeier Hansson]
0
* Integration tests: thoroughly test ActionController::Integration::Session. #6022 [Kevin Clark]
0
(tests skipped unless you `gem install mocha`)
0
-* Added deprecation language for pagination which will become a plugin by Rails 2.0 [D
HH]
0
+* Added deprecation language for pagination which will become a plugin by Rails 2.0 [D
avid Heinemeier Hansson]
0
-* Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [D
HH]
0
+* Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [D
avid Heinemeier Hansson]
0
-* Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [D
HH]
0
+* Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [D
avid Heinemeier Hansson]
0
* Added assert_select* for CSS selector-based testing (deprecates assert_tag) #5936 [assaf.arkin@gmail.com]
0
@@ -1668,7 +1668,7 @@ superclass' view_paths. [Rick]
0
* Add routing tests to assert that RoutingError is raised when conditions aren't met. Closes #6016 [Nathan Witmer]
0
-* Deprecation: update docs. #5998 [
jakob@mentalized.net, Kevin Clark]
0
+* Deprecation: update docs. #5998 [
Jakob Skjerning, Kevin Clark]
0
* Make auto_link parse a greater subset of valid url formats. [Jamis Buck]
0
@@ -1678,15 +1678,15 @@ superclass' view_paths. [Rick]
0
* Fix send_data documentation typo. #5982 [brad@madriska.com]
0
-* Switch to using FormEncodedPairParser for parsing request parameters. [Nicholas Seckar, D
HH]
0
+* Switch to using FormEncodedPairParser for parsing request parameters. [Nicholas Seckar, D
avid Heinemeier Hansson]
0
-* respond_to .html now always renders #{action_name}.rhtml so that registered custom template handlers do not override it in priority. Custom mime types require a block and throw proper error now. [Tobias L
uetke]
0
+* respond_to .html now always renders #{action_name}.rhtml so that registered custom template handlers do not override it in priority. Custom mime types require a block and throw proper error now. [Tobias L
ütke]
0
* Deprecation: test deprecated instance vars in partials. [Jeremy Kemper]
0
* Add UrlWriter to allow writing urls from Mailers and scripts. [Nicholas Seckar]
0
-* Clean up and run the Active Record integration tests by default. #5854 [
kevin.clark@gmail.com, Jeremy Kemper]
0
+* Clean up and run the Active Record integration tests by default. #5854 [
Kevin Clark, Jeremy Kemper]
0
* Correct example in cookies docs. #5832 [jessemerriman@warpmail.net]
0
@@ -1714,7 +1714,7 @@ superclass' view_paths. [Rick]
0
* Deprecation! @params, @session, @flash will be removed after 1.2. Use the corresponding instance methods instead. You'll get printed warnings during tests and logged warnings in dev mode when you access either instance variable directly. [Jeremy Kemper]
0
-* Make Routing noisy when an anchor regexp is assigned to a segment. #5674 [
francois.beausoleil@gmail.com]
0
+* Make Routing noisy when an anchor regexp is assigned to a segment. #5674 [
François Beausoleil]
0
* Added months and years to the resolution of DateHelper#distance_of_time_in_words, such that "60 days ago" becomes "2 months ago" #5611 [pjhyett@gmail.com]
0
@@ -1734,7 +1734,7 @@ superclass' view_paths. [Rick]
0
* Fixed the new_#{resource}_url route and added named route tests for Simply Restful. [Rick Olson]
0
-* Added map.resources from the Simply Restful plugin [D
HH]. Examples (the API has changed to use plurals!):
0
+* Added map.resources from the Simply Restful plugin [D
avid Heinemeier Hansson]. Examples (the API has changed to use plurals!):
0
map.resources :messages
0
map.resources :messages, :comments
0
@@ -1742,13 +1742,13 @@ superclass' view_paths. [Rick]
0
* Fixed that integration simulation of XHRs should set Accept header as well [Edward Frederick]
0
-* TestRequest#reset_session should restore a TestSession, not a hash [
Koz]
0
+* TestRequest#reset_session should restore a TestSession, not a hash [
Michael Koziarski]
0
* Don't search a load-path of '.' for controller files [Jamis Buck]
0
* Update integration.rb to require test_process explicitly instead of via Dependencies. [Nicholas Seckar]
0
-* Fixed that you can still access the flash after the flash has been reset in reset_session. Closes #5584 [lmarlow
@yahoo.com]
0
+* Fixed that you can still access the flash after the flash has been reset in reset_session. Closes #5584 [lmarlow
]
0
* Allow form_for and fields_for to work with indexed form inputs. [Jeremy Kemper, Matt Lyon]
0
@@ -1757,13 +1757,13 @@ superclass' view_paths. [Rick]
0
* Remove leak in development mode by replacing define_method with module_eval. [Nicholas Seckar]
0
-* Provide support for decimal columns to form helpers. Closes #5672. [
dave@pragprog.com]
0
+* Provide support for decimal columns to form helpers. Closes #5672. [
Dave Thomas]
0
* Update documentation for erb trim syntax. #5651 [matt@mattmargolis.net]
0
* Pass :id => nil or :class => nil to error_messages_for to supress that html attribute. #3586 [olivier_ansaldi@yahoo.com, sebastien@goetzilla.info]
0
-* Reset @html_document between requests so assert_tag works. #4810 [
jarkko@jlaine.net, easleydp@gmail.com]
0
+* Reset @html_document between requests so assert_tag works. #4810 [
Jarkko Laine, easleydp@gmail.com]
0
* Update render :partial documentation. #5646 [matt@mattmargolis.net]
0
@@ -1773,21 +1773,21 @@ superclass' view_paths. [Rick]
0
* Fixed that real files and symlinks should be treated the same when compiling templates #5438 [zachary@panandscan.com]
0
-* Fixed that the flash should be reset when reset_session is called #5584 [
shugo@ruby-lang.org]
0
+* Fixed that the flash should be reset when reset_session is called #5584 [
Shugo Maeda]
0
* Added special case for "1 Byte" in NumberHelper#number_to_human_size #5593 [murpyh@rubychan.de]
0
-* Fixed proper form-encoded parameter parsing for requests with "Content-Type: application/x-www-form-urlencoded; charset=utf-8" (note the presence of a charset directive) [D
HH]
0
+* Fixed proper form-encoded parameter parsing for requests with "Content-Type: application/x-www-form-urlencoded; charset=utf-8" (note the presence of a charset directive) [D
avid Heinemeier Hansson]
0
* Add route_name_path method to generate only the path for a named routes. For example, map.person will add person_path. [Nicholas Seckar]
0
* Avoid naming collision among compiled view methods. [Jeremy Kemper]
0
-* Fix CGI extensions when they expect string but get nil in Windows. Closes #5276 [
mislav@nippur.irb.hr]
0
+* Fix CGI extensions when they expect string but get nil in Windows. Closes #5276 [
Mislav Marohnić]
0
* Determine the correct template_root for deeply nested components. #2841 [s.brink@web.de]
0
-* Fix that routes with *path segments in the recall can generate URLs. [Rick
]
0
+* Fix that routes with *path segments in the recall can generate URLs. [Rick
Olson]
0
* Fix strip_links so that it doesn't hang on multiline <acronym> tags [Jamis Buck]
0
@@ -1805,11 +1805,11 @@ superclass' view_paths. [Rick]
0
* Rewind readable CGI params so others may reread them (such as CGI::Session when passing the session id in a multipart form). #210 [mklame@atxeu.com, matthew@walker.wattle.id.au]
0
-* Added Mime::TEXT (text/plain) and Mime::ICS (text/calendar) as new default types [D
HH]
0
+* Added Mime::TEXT (text/plain) and Mime::ICS (text/calendar) as new default types [D
avid Heinemeier Hansson]
0
-* Added Mime::Type.register(string, symbol, synonyms = []) for adding new custom mime types [D
HH]. Example: Mime::Type.register("image/gif", :gif)
0
+* Added Mime::Type.register(string, symbol, synonyms = []) for adding new custom mime types [D
avid Heinemeier Hansson]. Example: Mime::Type.register("image/gif", :gif)
0
-* Added support for Mime objects in render :content_type option [D
HH]. Example: render :text => some_atom, :content_type => Mime::ATOM
0
+* Added support for Mime objects in render :content_type option [D
avid Heinemeier Hansson]. Example: render :text => some_atom, :content_type => Mime::ATOM
0
* Add :status option to send_data and send_file. Defaults to '200 OK'. #5243 [Manfred Stienstra <m.stienstra@fngtps.com>]
0
@@ -1823,7 +1823,7 @@ superclass' view_paths. [Rick]
0
* Accept multipart PUT parameters. #5235 [guy.naor@famundo.com]
0
-* Added interrogation of params[:format] to determine Accept type. If :format is specified and matches a declared extension, like "rss" or "xml", that mime type will be put in front of the accept handler. This means you can link to the same action from different extensions and use that fact to determine output [D
HH]. Example:
0
+* Added interrogation of params[:format] to determine Accept type. If :format is specified and matches a declared extension, like "rss" or "xml", that mime type will be put in front of the accept handler. This means you can link to the same action from different extensions and use that fact to determine output [D
avid Heinemeier Hansson]. Example:
0
class WeblogController < ActionController::Base
0
@@ -1856,13 +1856,13 @@ superclass' view_paths. [Rick]
0
All this relies on the fact that you have a route that includes .:format.
0
-* Expanded :method option in FormTagHelper#form_tag, FormHelper#form_for, PrototypeHelper#remote_form_for, PrototypeHelper#remote_form_tag, and PrototypeHelper#link_to_remote to allow for verbs other than GET and POST by automatically creating a hidden form field named _method, which will simulate the other verbs over post [D
HH]
0
+* Expanded :method option in FormTagHelper#form_tag, FormHelper#form_for, PrototypeHelper#remote_form_for, PrototypeHelper#remote_form_tag, and PrototypeHelper#link_to_remote to allow for verbs other than GET and POST by automatically creating a hidden form field named _method, which will simulate the other verbs over post [D
avid Heinemeier Hansson]
0
-* Added :method option to UrlHelper#link_to, which allows for using other verbs than GET for the link. This replaces the :post option, which is now deprecated. Example: link_to "Destroy", person_url(:id => person), :method => :delete [D
HH]
0
+* Added :method option to UrlHelper#link_to, which allows for using other verbs than GET for the link. This replaces the :post option, which is now deprecated. Example: link_to "Destroy", person_url(:id => person), :method => :delete [D
avid Heinemeier Hansson]
0
* follow_redirect doesn't complain about being redirected to the same controller. #5153 [dymo@mk.ukrtelecom.ua]
0
-* Add layout attribute to response object with the name of the layout that was rendered, or nil if none rendered. [Kevin Clark
kevin.clark@gmail.com]
0
+* Add layout attribute to response object with the name of the layout that was rendered, or nil if none rendered. [Kevin Clark
]
0
* Fix NoMethodError when parsing params like &&. [Adam Greenfield]
0
@@ -1872,7 +1872,7 @@ superclass' view_paths. [Rick]
0
* Excise ingrown code from FormOptionsHelper#options_for_select. #5008 [anonymous]
0
-* Small fix in routing to allow dynamic routes (broken after [4242]) [Rick
]
0
+* Small fix in routing to allow dynamic routes (broken after [4242]) [Rick
Olson]
0
map.connect '*path', :controller => 'files', :action => 'show'
0
@@ -1884,7 +1884,7 @@ superclass' view_paths. [Rick]
0
* Documentation fix: integration test scripts don't require integration_test. Closes #4914. [Frederick Ros <sl33p3r@free.fr>]
0
-* ActionController::Base Summary documentation rewrite. Closes #4900. [
kevin.clark@gmail.com]
0
+* ActionController::Base Summary documentation rewrite. Closes #4900. [
Kevin Clark]
0
* Fix text_helper.rb documentation rendering. Closes #4725. [Frederick Ros]
0
@@ -1896,9 +1896,9 @@ superclass' view_paths. [Rick]
0
* Enhance documentation for setting headers in integration tests. Skip auto HTTP prepending when its already there. Closes #4079. [Rick Olson]
0
-* Documentation for AbstractRequest. Closes #4895. [
kevin.clark@gmail.com]
0
+* Documentation for AbstractRequest. Closes #4895. [
Kevin Clark]
0
-* Refactor various InstanceTag instance method to class methods. Closes #4800. [
skaes@web.de]
0
+* Refactor various InstanceTag instance method to class methods. Closes #4800. [
Stefan Kaes]
0
* Remove all remaining references to @params in the documentation. [Marcel Molina Jr.]
0
@@ -1906,25 +1906,25 @@ superclass' view_paths. [Rick]
0
* Update layout and content_for documentation to use yield rather than magic @content_for instance variables. [Marcel Molina Jr.]
0
-* Fix assert_redirected_to tests according to real-world usage. Also, don't fail if you add an extra :controller option: [Rick
]
0
+* Fix assert_redirected_to tests according to real-world usage. Also, don't fail if you add an extra :controller option: [Rick
Olson]
0
redirect_to :action => 'new'
0
assert_redirected_to :controller => 'monkeys', :action => 'new'
0
-* Cache CgiRequest#request_parameters so that multiple calls don't re-parse multipart data. [Rick
]
0
+* Cache CgiRequest#request_parameters so that multiple calls don't re-parse multipart data. [Rick
Olson]
0
-* Diff compared routing options. Allow #assert_recognizes to take a second arg as a hash to specify optional request method [Rick
]
0
+* Diff compared routing options. Allow #assert_recognizes to take a second arg as a hash to specify optional request method [Rick
Olson]
0
assert_recognizes({:controller => 'users', :action => 'index'}, 'users')
0
assert_recognizes({:controller => 'users', :action => 'create'}, {:path => 'users', :method => :post})
0
-* Diff compared options with #assert_redirected_to [Rick
]
0
+* Diff compared options with #assert_redirected_to [Rick
Olson]
0
* Add support in routes for semicolon delimited "subpaths", like /books/:id;:action [Jamis Buck]
0
* Change link_to_function and button_to_function to (optionally) take an update_page block instead of a JavaScript string. Closes #4804. [zraii@comcast.net, Sam Stephenson]
0
-* Fixed that remote_form_for can leave out the object parameter and default to the instance variable of the object_name, just like form_for [D
HH]
0
+* Fixed that remote_form_for can leave out the object parameter and default to the instance variable of the object_name, just like form_for [D
avid Heinemeier Hansson]
0
* Modify routing so that you can say :require => { :method => :post } for a route, and the route will never be selected unless the request method is POST. Only works for route recognition, not for route generation. [Jamis Buck]
0
@@ -1940,14 +1940,14 @@ superclass' view_paths. [Rick]
0
* Apply [5709] to stable.
0
-* session_enabled? works with session :off. #6680 [
Catfish]
0
+* session_enabled? works with session :off. #6680 [
Jonathan del Strother]
0
* Performance: patch cgi/session to require digest/md5 once rather than per #create_new_id. [Stefan Kaes]
0
*1.13.2* (February 5th, 2007)
0
-* Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick
]
0
+* Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick
Olson]
0
* improve error message for Routing for named routes. [Rob Sanheim]
0
@@ -1969,7 +1969,7 @@ superclass' view_paths. [Rick]
0
* Make TextHelper::auto_link recognize URLs with colons in path correctly, fixes #7268. [imajes]
0
-* Improved auto_link to match more valid urls correctly [Tobias L
uetke]
0
+* Improved auto_link to match more valid urls correctly [Tobias L
ütke]
0
*1.13.1* (January 18th, 2007)
0
@@ -1985,11 +1985,11 @@ superclass' view_paths. [Rick]
0
* Update to Prototype 1.5.0. [Sam Stephenson]
0
-* Allow exempt_from_layout :rhtml. #6742, #7026 [
dcmanges, Squeegy]
0
+* Allow exempt_from_layout :rhtml. #6742, #7026 [
Dan Manges, Squeegy]
0
* Fix parsing of array[] CGI parameters so extra empty values aren't included. #6252 [Nicholas Seckar, aiwilliams, brentrowland]
0
-* link_to_unless_current works with full URLs as well as paths. #6891 [Jarkko Laine,
manfred, idrifter]
0
+* link_to_unless_current works with full URLs as well as paths. #6891 [Jarkko Laine,
Manfred Stienstra, idrifter]
0
* Fix HTML::Node to output double quotes instead of single quotes. Closes #6845 [mitreandy]
0
@@ -2031,7 +2031,7 @@ superclass' view_paths. [Rick]
0
* Add :index and @auto_index capability to model driven date/time selects. #847, #2655 [moriq, Doug Fales, Bob Silva]
0
-* Add :order to datetime_select, select_datetime, and select_date. #1427 [Timothee Peignier,
patrick@lenz.sh, Bob Silva]
0
+* Add :order to datetime_select, select_datetime, and select_date. #1427 [Timothee Peignier,
Patrick Lenz, Bob Silva]
0
* Added time_select to work with time values in models. Update scaffolding. #2489, #2833 [Justin Palmer, Andre Caum, Bob Silva]
0
@@ -2043,9 +2043,9 @@ superclass' view_paths. [Rick]
0
* @response.redirect_url works with 201 Created responses: just return headers['Location'] rather than checking the response status. [Jeremy Kemper]
0
-* Fixed that HEAD should return the proper Content-Length header (that is, actually use @body.size, not just 0) [D
HH]
0
+* Fixed that HEAD should return the proper Content-Length header (that is, actually use @body.size, not just 0) [D
avid Heinemeier Hansson]
0
-* Added GET-masquarading for HEAD, so request.method will return :get even for HEADs. This will help anyone relying on case request.method to automatically work with HEAD and map.resources will also allow HEADs to all GET actions. Rails automatically throws away the response content in a reply to HEAD, so you don't even need to worry about that. If you, for whatever reason, still need to distinguish between GET and HEAD in some edge case, you can use Request#head? and even Request.headers["REQUEST_METHOD"] for get the "real" answer. Closes #6694 [D
HH]
0
+* Added GET-masquarading for HEAD, so request.method will return :get even for HEADs. This will help anyone relying on case request.method to automatically work with HEAD and map.resources will also allow HEADs to all GET actions. Rails automatically throws away the response content in a reply to HEAD, so you don't even need to worry about that. If you, for whatever reason, still need to distinguish between GET and HEAD in some edge case, you can use Request#head? and even Request.headers["REQUEST_METHOD"] for get the "real" answer. Closes #6694 [D
avid Heinemeier Hansson]
0
*1.13.0 RC1* (r5619, November 22nd, 2006)
0
@@ -2085,13 +2085,13 @@ superclass' view_paths. [Rick]
0
* Deprecate expire_matched_fragments. Use expire_fragment instead. #6535 [Bob Silva]
0
-* Deprecate start_form_tag and end_form_tag. Use form_tag / '</form>' from now on. [Rick
]
0
+* Deprecate start_form_tag and end_form_tag. Use form_tag / '</form>' from now on. [Rick
Olson]
0
-* Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of FormTagHelper#form_tag [Rick
]
0
+* Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of FormTagHelper#form_tag [Rick
Olson]
0
-* Add a 0 margin/padding div around the hidden _method input tag that form_tag outputs. [Rick
]
0
+* Add a 0 margin/padding div around the hidden _method input tag that form_tag outputs. [Rick
Olson]
0
-* Added block-usage to TagHelper#content_tag [D
HH]. Example:
0
+* Added block-usage to TagHelper#content_tag [D
avid Heinemeier Hansson]. Example:
0
<% content_tag :div, :class => "strong" %>
0
@@ -2100,13 +2100,13 @@ superclass' view_paths. [Rick]
0
<div class="strong">Hello world!</div>
0
-* Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true #6409 [Bob
Silva]
0
+* Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true #6409 [Bob
Silva]
0
-* Upgraded NumberHelper with number_to_phone support international formats to comply with ITU E.123 by supporting area codes with less than 3 digits, added precision argument to number_to_human_size (defaults to 1) #6421 [Bob
Silva]
0
+* Upgraded NumberHelper with number_to_phone support international formats to comply with ITU E.123 by supporting area codes with less than 3 digits, added precision argument to number_to_human_size (defaults to 1) #6421 [Bob
Silva]
0
-* Fixed that setting RAILS_ASSET_ID to "" should not add a trailing slash after assets #6454 [Bob
Silva/chrismear]
0
+* Fixed that setting RAILS_ASSET_ID to "" should not add a trailing slash after assets #6454 [Bob
Silva/chrismear]
0
-* Force *_url named routes to show the host in ActionView [Rick
]
0
+* Force *_url named routes to show the host in ActionView [Rick
Olson]
0
<%= url_for ... %> # no host
0
<%= foo_path %> # no host
0
@@ -2116,9 +2116,9 @@ superclass' view_paths. [Rick]
0
* Add JavaScriptGenerator#literal for wrapping a string in an object whose #to_json is the string itself. [Sam Stephenson]
0
-* Add <%= escape_once html %> to escape html while leaving any currently escaped entities alone. Fix button_to double-escaping issue. [Rick
]
0
+* Add <%= escape_once html %> to escape html while leaving any currently escaped entities alone. Fix button_to double-escaping issue. [Rick
Olson]
0
-* Fix double-escaped entities, such as &amp;, &#123;, etc. [Rick
]
0
+* Fix double-escaped entities, such as &amp;, &#123;, etc. [Rick
Olson]
0
* Fix routing to correctly determine when generation fails. Closes #6300. [psross].
0
@@ -2138,7 +2138,7 @@ superclass' view_paths. [Rick]
0
* Rename test assertion to prevent shadowing. Closes #6306. [psross]
0
-* Fixed that NumberHelper#number_to_delimiter should respect precision of higher than two digits #6231 [
phallstrom]
0
+* Fixed that NumberHelper#number_to_delimiter should respect precision of higher than two digits #6231 [
Philip Hallstrom]
0
* Fixed that FormHelper#radio_button didn't respect an :id being passed in #6266 [evansj]
0
@@ -2152,7 +2152,7 @@ superclass' view_paths. [Rick]
0
Which is needed for dealing with the IE6 DOM when it's not yet fully loaded.
0
-* Fixed that rescue template path shouldn't be hardcoded, then it's easier to hook in your own #6295 [
mnaberez]
0
+* Fixed that rescue template path shouldn't be hardcoded, then it's easier to hook in your own #6295 [
Mike Naberezny]
0
* Fixed escaping of backslashes in JavaScriptHelper#escape_javascript #6302 [sven@c3d2.de]
0
@@ -2191,7 +2191,7 @@ superclass' view_paths. [Rick]
0
* Rescue Errno::ECONNRESET to handle an unexpectedly closed socket connection. Improves SCGI reliability. #3368, #6226 [sdsykes, fhanshaw@vesaria.com]
0
-* Added that respond_to blocks will automatically set the content type to be the same as is requested [D
HH]. Examples:
0
+* Added that respond_to blocks will automatically set the content type to be the same as is requested [D
avid Heinemeier Hansson]. Examples:
0
format.html { render :text => "I'm being sent as text/html" }
0
@@ -2199,9 +2199,9 @@ superclass' view_paths. [Rick]
0
format.atom { render :text => "I'm being sent as application/xml", :content_type => Mime::XML }
0
-* Added utf-8 as the default charset for all renders. You can change this default using ActionController::Base.default_charset=(encoding) [D
HH]
0
+* Added utf-8 as the default charset for all renders. You can change this default using ActionController::Base.default_charset=(encoding) [D
avid Heinemeier Hansson]
0
-* Added proper getters and setters for content type and charset [D
HH]. Example of what we used to do:
0
+* Added proper getters and setters for content type and charset [D
avid Heinemeier Hansson]. Example of what we used to do:
0
response.headers["Content-Type"] = "application/atom+xml; charset=utf-8"
0
@@ -2230,7 +2230,7 @@ superclass' view_paths. [Rick]
0
* Load helpers in alphabetical order for consistency. Resolve cyclic javascript_helper dependency. #6132, #6178 [choonkeat@gmail.com]
0
-* Skip params with empty names, such as the &=Save query string from <input type="submit"/>. #2569 [
manfred, raphinou@yahoo.com]
0
+* Skip params with empty names, such as the &=Save query string from <input type="submit"/>. #2569 [
Manfred Stienstra, raphinou@yahoo.com]
0
* Fix assert_tag so that :content => "foo" does not match substrings, but only exact strings. Use :content => /foo/ to match substrings. #2799 [Eric Hodel]
0
@@ -2238,7 +2238,7 @@ superclass' view_paths. [Rick]
0
* Update UrlWriter to support :only_path. [Nicholas Seckar, Dave Thomas]
0
-* Fixed JavaScriptHelper#link_to_function and JavaScriptHelper#button_to_function to have the script argument be optional [D
HH]. So what used to require a nil, like this:
0
+* Fixed JavaScriptHelper#link_to_function and JavaScriptHelper#button_to_function to have the script argument be optional [D
avid Heinemeier Hansson]. So what used to require a nil, like this:
0
link_to("Hider", nil, :class => "hider_link") { |p| p[:something].hide }
0
@@ -2255,7 +2255,7 @@ superclass' view_paths. [Rick]
0
* Fixed that AssetTagHelper#image_tag and others using compute_public_path should not modify the incoming source argument (closes #5102) [eule@space.ch]
0
-* Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that doesn't have an extension [D
HH]
0
+* Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that doesn't have an extension [D
avid Heinemeier Hansson]
0
* Fixed FormOptionsHelper#select to respect :selected value #5813
0
@@ -2265,13 +2265,13 @@ superclass' view_paths. [Rick]
0
* Improved resolution of DateHelper#distance_of_time_in_words for better precision #5994 [Bob Silva]
0
-* Changed that uncaught exceptions raised any where in the application will cause RAILS_ROOT/public/500.html to be read and shown instead of just the static "Application error (Rails)" [D
HH]
0
+* Changed that uncaught exceptions raised any where in the application will cause RAILS_ROOT/public/500.html to be read and shown instead of just the static "Application error (Rails)" [D
avid Heinemeier Hansson]
0
-* Added deprecation language for pagination which will become a plugin by Rails 2.0 [D
HH]
0
+* Added deprecation language for pagination which will become a plugin by Rails 2.0 [D
avid Heinemeier Hansson]
0
-* Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [D
HH]
0
+* Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [D
avid Heinemeier Hansson]
0
-* Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [D
HH]
0
+* Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [D
avid Heinemeier Hansson]
0
* Added assert_select* for CSS selector-based testing (deprecates assert_tag) #5936 [assaf.arkin@gmail.com]
0
@@ -2291,9 +2291,9 @@ superclass' view_paths. [Rick]
0
* Integration tests: headers beginning with X aren't excluded from the HTTP_ prefix, so X-Requested-With becomes HTTP_X_REQUESTED_WITH as expected. [Mike Clark]
0
-* Switch to using FormEncodedPairParser for parsing request parameters. [Nicholas Seckar, D
HH]
0
+* Switch to using FormEncodedPairParser for parsing request parameters. [Nicholas Seckar, D
avid Heinemeier Hansson]
0
-* respond_to .html now always renders #{action_name}.rhtml so that registered custom template handlers do not override it in priority. Custom mime types require a block and throw proper error now. [Tobias L
uetke]
0
+* respond_to .html now always renders #{action_name}.rhtml so that registered custom template handlers do not override it in priority. Custom mime types require a block and throw proper error now. [Tobias L
ütke]
0
* Deprecation: test deprecated instance vars in partials. [Jeremy Kemper]
0
@@ -2319,7 +2319,7 @@ superclass' view_paths. [Rick]
0
* Deprecation! @params, @session, @flash will be removed after 1.2. Use the corresponding instance methods instead. You'll get printed warnings during tests and logged warnings in dev mode when you access either instance variable directly. [Jeremy Kemper]
0
-* Make Routing noisy when an anchor regexp is assigned to a segment. #5674 [
francois.beausoleil@gmail.com]
0
+* Make Routing noisy when an anchor regexp is assigned to a segment. #5674 [
François Beausoleil]
0
* Added months and years to the resolution of DateHelper#distance_of_time_in_words, such that "60 days ago" becomes "2 months ago" #5611 [pjhyett@gmail.com]
0
@@ -2333,7 +2333,7 @@ superclass' view_paths. [Rick]
0
* Fixed the new_#{resource}_url route and added named route tests for Simply Restful. [Rick Olson]
0
-* Added map.resources from&n