--- - branch: MAIN date: Sun Mar 18 06:47:55 UTC 2012 files: - new: 1.1.1.1 old: '0' path: pkgsrc/www/ruby-actionpack32/DESCR pathrev: pkgsrc/www/ruby-actionpack32/DESCR@1.1.1.1 type: imported - new: 1.1.1.1 old: '0' path: pkgsrc/www/ruby-actionpack32/Makefile pathrev: pkgsrc/www/ruby-actionpack32/Makefile@1.1.1.1 type: imported - new: 1.1.1.1 old: '0' path: pkgsrc/www/ruby-actionpack32/PLIST pathrev: pkgsrc/www/ruby-actionpack32/PLIST@1.1.1.1 type: imported - new: 1.1.1.1 old: '0' path: pkgsrc/www/ruby-actionpack32/distinfo pathrev: pkgsrc/www/ruby-actionpack32/distinfo@1.1.1.1 type: imported id: 20120318T064755Z.9f78c543a6f4ba6680d0bbf7b55cce5841739fa3 log: "Importing ruby-actionpack32 version 3.2.2.\n\n\n## Rails 3.2.2 (unreleased) ##\n\n* Format lookup for partials is derived from the format in which the template is being rendered. Closes #5025 part 2 *Santiago Pastorino*\n\n* Use the right format when a partial is missing. Closes #5025. *Santiago Pastorino*\n\n* Default responder will now always use your overridden block in `respond_with` to render your response. *Prem Sichanugrist*\n\n* check_box helper with :disabled => true will generate a disabled hidden field to conform with the HTML convention where disabled fields are not submitted with the form.\n This is a behavior change, previously the hidden tag had a value of the disabled checkbox.\n *Tadas Tamosauskas*\n\n## Rails 3.2.1 (January 26, 2012) ##\n\n* Documentation improvements.\n\n* Allow `form.select` to accept ranges (regression). *Jeremy Walker*\n\n* `datetime_select` works with -/+ infinity dates. *Joe Van Dyk*\n\n\n## Rails 3.2.0 (January 20, 2012) ##\n\n* Setting config.assets.logger to false turn off Sprockets logger *Guillermo Iguaran*\n\n* Add `config.action_dispatch.default_charset` to configure default charset for ActionDispatch::Response. *Carlos Antonio da Silva*\n\n* Deprecate setting default charset at controller level, use the new `config.action_dispatch.default_charset` instead. *Carlos Antonio da Silva*\n\n* Deprecate ActionController::UnknownAction in favour of AbstractController::ActionNotFound. *Carlos Antonio da Silva*\n\n* \ Deprecate ActionController::DoubleRenderError in favour of AbstractController::DoubleRenderError. *Carlos Antonio da Silva*\n\n* Deprecate method_missing handling for not found actions, use action_missing instead. *Carlos Antonio da Silva*\n\n* Deprecate ActionController#rescue_action, ActionController#initialize_template_class, and ActionController#assign_shortcuts.\n These methods were not being used internally anymore and are going to be removed in Rails 4. *Carlos Antonio da Silva*\n\n* \ Add config.assets.logger to configure Sprockets logger *Rafael Fran巽a*\n\n* \ Use a BodyProxy instead of including a Module that responds to\n close. Closes #4441 if Active Record is disabled assets are delivered\n correctly *Santiago Pastorino*\n\n* Rails initialization with initialize_on_precompile = false should set assets_dir *Santiago Pastorino*\n\n* Add font_path helper method *Santiago Pastorino*\n\n* Depends on rack ~> 1.4.0 *Santiago Pastorino*\n\n* \ Add :gzip option to `caches_page`. The default option can be configured globally using `page_cache_compression` *Andrey Sitnik*\n\n* The ShowExceptions middleware now accepts a exceptions application that is responsible to render an exception when the application fails. The application is invoked with a copy of the exception in `env[\"action_dispatch.exception\"]` and with the PATH_INFO rewritten to the status code. *Jos辿 Valim*\n\n* Add `button_tag` support to ActionView::Helpers::FormBuilder.\n\n \ This support mimics the default behavior of `submit_tag`.\n\n Example:\n\n \ <%= form_for @post do |f| %>\n <%= f.button %>\n <% end %>\n\n* Date helpers accept a new option, `:use_two_digit_numbers = true`, that renders select boxes for months and days with a leading zero without changing the respective values.\n For example, this is useful for displaying ISO8601-style dates such as '2011-08-01'. *Lennart Frid辿n and Kim Persson*\n\n* Make ActiveSupport::Benchmarkable a default module for ActionController::Base, so the #benchmark method is once again available in the controller context like it used to be *DHH*\n\n* Deprecated implied layout lookup in controllers whose parent had a explicit layout set:\n\n \ class ApplicationController\n layout \"application\"\n end\n\n \ class PostsController < ApplicationController\n end\n\n In the example above, Posts controller will no longer automatically look up for a posts layout.\n\n If you need this functionality you could either remove `layout \"application\"` from ApplicationController or explicitly set it to nil in PostsController. *Jos辿 Valim*\n\n* Rails will now use your default layout (such as \"layouts/application\") when you specify a layout with `:only` and `:except` condition, and those conditions fail. *Prem Sichanugrist*\n\n For example, consider this snippet:\n\n class CarsController\n layout 'single_car', :only => :show\n end\n\n \ Rails will use 'layouts/single_car' when a request comes in `:show` action, and use 'layouts/application' (or 'layouts/cars', if exists) when a request comes in for any other actions.\n\n* form_for with +:as+ option uses \"#{action}_#{as}\" as css class and id:\n\n Before:\n\n form_for(@user, :as => 'client') # => \"
...\"\n\n Now:\n\n form_for(@user, :as => 'client') # => \"...\"\n\n *Vasiliy Ermolovich*\n\n* \ Allow rescue responses to be configured through a railtie as in `config.action_dispatch.rescue_responses`. Please look at ActiveRecord::Railtie for an example *Jos辿 Valim*\n\n* Allow fresh_when/stale? to take a record instead of an options hash *DHH*\n\n* Assets should use the request protocol by default or default to relative if no request is available *Jonathan del Strother*\n\n* Log \"Filter chain halted as CALLBACKNAME rendered or redirected\" every time a before callback halts *Jos辿 Valim*\n\n* \ You can provide a namespace for your form to ensure uniqueness of id attributes on form elements.\n The namespace attribute will be prefixed with underscore on the generate HTML id. *Vasiliy Ermolovich*\n\n Example:\n\n <%= form_for(@offer, :namespace => 'namespace') do |f| %>\n <%= f.label :version, 'Version' %>:\n <%= f.text_field :version %>\n <% end %>\n\n* Refactor ActionDispatch::ShowExceptions. The controller is responsible for choosing to show exceptions when `consider_all_requests_local` is false.\n\n It's possible to override `show_detailed_exceptions?` in controllers to specify which requests should provide debugging information on errors. The default value is now false, meaning local requests in production will no longer show the detailed exceptions page unless `show_detailed_exceptions?` is overridden and set to `request.local?`.\n\n* \ Responders now return 204 No Content for API requests without a response body (as in the new scaffold) *Jos辿 Valim*\n\n* Added ActionDispatch::RequestId middleware that'll make a unique X-Request-Id header available to the response and enables the ActionDispatch::Request#uuid method. This makes it easy to trace requests from end-to-end in the stack and to identify individual requests in mixed logs like Syslog *DHH*\n\n* Limit the number of options for select_year to 1000.\n\n \ Pass the :max_years_allowed option to set your own limit.\n\n *Libo Cannici*\n\n* \ Passing formats or handlers to render :template and friends is deprecated. For example: *Nick Sutterer & Jos辿 Valim*\n\n render :template => \"foo.html.erb\"\n\n \ Instead, you can provide :handlers and :formats directly as option:\n render :template => \"foo\", :formats => [:html, :js], :handlers => :erb\n\n* Changed log level of warning for missing CSRF token from :debug to :warn. *Mike Dillon*\n\n* \ content_tag_for and div_for can now take the collection of records. It will also yield the record as the first argument if you set a receiving argument in your block *Prem Sichanugrist*\n\n So instead of having to do this:\n\n @items.each do |item|\n content_tag_for(:li, item) do\n Title: <%= item.title %>\n end\n end\n\n You can now do this:\n\n content_tag_for(:li, @items) do |item|\n Title: <%= item.title %>\n end\n\n* send_file now guess the mime type *Esad Hajdarevic*\n\n* Mime type entries for PDF, ZIP and other formats were added *Esad Hajdarevic*\n\n* Generate hidden input before select with :multiple option set to true.\n This is useful when you rely on the fact that when no options is set,\n the state of select will be sent to rails application. Without hidden field\n nothing is sent according to HTML spec *Bogdan Gusiev*\n\n* Refactor ActionController::TestCase cookies *Andrew White*\n\n Assigning cookies for test cases should now use cookies[], e.g:\n\n \ cookies[:email] = 'user@example.com'\n get :index\n assert_equal 'user@example.com', cookies[:email]\n\n To clear the cookies, use clear, e.g:\n\n \ cookies.clear\n get :index\n assert_nil cookies[:email]\n\n \ We now no longer write out HTTP_COOKIE and the cookie jar is\n persistent between requests so if you need to manipulate the environment\n for your test you need to do it before the cookie jar is created.\n\n* ActionController::ParamsWrapper on ActiveRecord models now only wrap\n attr_accessible attributes if they were set, if not, only the attributes\n returned by the class method attribute_names will be wrapped. This fixes\n the wrapping of nested attributes by adding them to attr_accessible.\n\n\n\nStatus:\n\nVendor Tag:\tTNF\nRelease Tags:\tpkgsrc-base\n" module: pkgsrc subject: 'CVS commit: pkgsrc/www/ruby-actionpack32' unixtime: '1332053275' user: taca