*SVN* * Fixed that an exception would be thrown when an empty form was submitted #1090 [jan@ulbrich-boerwang.de] * Moved TextHelper#human_size to NumberHelper#number_to_human_size, but kept an deprecated alias to the old method name * Fixed that the content-type for some browsers could include an additional \r which made wonky things happen #1067 [Thomas Fuchs] * Fixed that radio buttons shouldn't have a default size attribute #1074 [hendrik@mans.de] * Added ActionView::Helpers::InstanceTag::DEFAULT_RADIO_OPTIONS that contains a hash of default options for radio buttons #1074 [hendrik@mans.de] * Fixed that in some circumstances controllers outside of modules may have hidden ones inside modules. For example, admin/content might have been hidden by /content. #1075 [Nicholas Seckar] * Added JavascriptHelper#periodically_call_remote in order to create areas of a page that update automatically at a set interval #945 [Jon Tirsen] * Fixed Cache#expire_matched_fragments that couldn't recognize the difference between string and url_for options #1030 [skaes@web.de] * Added simulation of @request.request_uri in functional tests #1038 [Jamis Buck] * Fixed autolinking to work better in more cases #1013 [Jamis Buck] * Added the possible of using symbols in form helpers that relate to instance variables like text_field :account, :name in addition to text_field "account", "name"' * Fixed javascript_include_tag to output type instead of language and conform to XHTML #1018 [Rick Olson] * Added NumberHelper for common string representations like phone number, currency, and percentage #1015 [DeLynn] * Added pagination for scaffolding (10 items per page) #964 [mortonda@dgrmm.net] * Added assert_no_cookie and fixed assert_cookie_equal to deal with non-existing cookies #979 [bitsweat] * Fixed :overwrite_param so it doesn't delete but reject elements from @request.parameters #982 [raphinou@yahoo.com] * Added :method option to verify for ensuring that either GET, POST, etc is allowed #984 [Jamis Buck] * Added options to set cc, bcc, subject, and body for UrlHelper#mail_to #966 [DeLynn] * Fixed include_blank for select_hour/minute/second #527 [edward@debian.org] * Improved the message display on the exception handler pages #963 [Johan Sorensen] * Fixed that on very rare occasions, webrick would raise a NoMethodError: private method 'split' called for nil #1001 [Flurin Egger] * Added a wide range of new Javascript effects: * Effect.Puff zooms the element out and makes it smoothly transparent at the same time, giving a "puff" illusion #996 [thomas@fesch.at] After the animation is completed, the display property will be set to none. This effect will work on relative and absolute positioned elements. * Effect.Appear as the opposite of Effect.Fade #990 [thomas@fesch.at] You should return elements with style="display:none;" or a like class for this to work best and have no chance of flicker. * Effect.Squish for scaling down an element and making it disappear at the end #972 [thomas@fesch.at] * Effect.Scale for smoothly scaling images or text up and down #972 [thomas@fesch.at] * Effect.Fade which smoothly turns opacity from 100 to 0 and then hides the element #960 [thomas@fesch.at] * Fixed problem with page caching #958 [Rick Olson] *1.7.0* (27th March, 2005) * Added ActionController::Base.page_cache_extension for setting the page cache file extension (the default is .html) #903 [Andreas] * Fixed "bad environment variable value" exception caused by Safari, Apache, and Ajax calls #918 * Fixed that pagination_helper would ignore :params #947 [Sebastian Kanthak] * Added :owerwrite_params back to url_for and friends -- it was AWL since the introduction of Routes #921 [raphinou] * Added :position option to link_to_remote/form_remote_tag that can be either :before, :top, :bottom, or :after and specifies where the return from the method should be inserted #952 [Matthew McCray/Sam Stephenson] * Added Effect.Highlight to prototype.js to do Yellow Fade Technique (of 37signals' fame) on any container #952 [Sam Stephenson/courtenay] * Added include_seconds option as the third parameter to distance_of_time_in_words which will render "less than a minute" in higher resolution ("less than 10 seconds" etc) #944 [thomas@fesch.at] * Added fourth option to process in test cases to specify the content of the flash #949 [Jamis Buck] * Added Verifications that allows you to specify preconditions to actions in form of statements like verify :only => :update_post, :params => "admin_privileges", :redirect_to => { :action => "settings" }, which ensure that the update_post action is only called if admin_privileges is available as a parameter -- otherwise the user is redirected to settings. #897 [Jamis Buck] * Fixed Form.Serialize for the JavascriptHelper to also seriliaze password fields #934 [dweitzman@gmail.com] * Added JavascriptHelper#escape_javascript as a public method (was private) and made it escape both single and double quotes and new lines #940 [mortonda@dgrmm.net] * Added trailing_slash option to url_for, so you can generate urls ending in a slash. Note that is currently not recommended unless you need it for special reasons since it breaks caching #937 [stian@grytoyr.net] * Added expire_matched_fragments(regular_expression) to clear out a lot of fragment caches at once #927 [technoweenie@gmail.com] * Fixed the problems with : and ? in file names for fragment caches on Windows #927 [technoweenie@gmail.com] * Added TextHelper#human_size for formatting file sizes, like human_size(1234567) => 1.2 MB #943 [thomas@fesch.at] * Fixed link_to :confirm #936 [Nicholas Seckar] * Improved error reporting especially around never shallowing exceptions. Debugging helpers should be much easier now #980 [Nicholas Seckar] * Fixed Toggle.display in prototype.js #902 [Lucas Carlson] *1.6.0* (22th March, 2005) * Added a JavascriptHelper and accompanying prototype.js library that opens the world of Ajax to Action Pack with a large array of options for dynamically interacting with an application without reloading the page #884 [Sam Stephenson/David] * Added pagination support through both a controller and helper add-on #817 [Sam Stephenson] * Fixed routing and helpers to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias Luetke] * Added a much improved Flash module that allows for finer-grained control on expiration and allows you to flash the current action #839 [Caio Chassot]. Example of flash.now: class SomethingController < ApplicationController def save ... if @something.save # will redirect, use flash flash[:message] = 'Save successful' redirect_to :action => 'list' else # no redirect, message is for current action, use flash.now flash.now[:message] = 'Save failed, review' render_action 'edit' end end end * Added to_param call for parameters when composing an url using url_for from something else than strings #812 [Sam Stephenson]. Example: class Page   def initialize(number)     @number = number   end   # ...   def to_param     @number.to_s   end end You can now use instances of Page with url_for: class BarController < ApplicationController   def baz     page = Page.new(4)     url = url_for :page => page # => "http://foo/bar/baz?page=4"   end end * Fixed form helpers to query Model#id_before_type_cast instead of Model#id as a temporary workaround for Ruby 1.8.2 warnings #818 [DeLynn B] * Fixed TextHelper#markdown to use blank? instead of empty? so it can deal with nil strings passed #814 [Johan Sörensen] * Added TextHelper#simple_format as a non-dependency text presentation helper #814 [Johan Sörensen] * Added that the html options disabled, readonly, and multiple can all be treated as booleans. So specifying disabled => :true will give disabled="disabled". #809 [mindel] * Added path collection syntax for Routes that will gobble up the rest of the url and pass it on to the controller #830 [rayners]. Example: map.connect 'categories/*path_info', :controller => 'categories', :action => 'show' A request for /categories/top-level-cat, would give @params[:path_info] with "top-level-cat". A request for /categories/top-level-cat/level-1-cat, would give @params[:path_info] with "top-level-cat/level-1-cat" and so forth. The @params[:path_info] return is really an array, but where to_s has been overwritten to do join("/"). * Fixed options_for_select on selected line issue #624 [Florian Weber] * Added CaptureHelper with CaptureHelper#capture and CaptureHelper#content_for. See documentation in helper #837 [Tobias Luetke] * Fixed :anchor use in url_for #821 [Nicholas Seckar] * Removed the reliance on PATH_INFO as it was causing problems for caching and inhibited the new non-vhost support #822 [Nicholas Seckar] * Added assigns shortcut for @response.template.assigns to controller test cases [bitsweat]. Example: Before: def test_list assert_equal 5, @response.template.assigns['recipes'].size assert_equal 8, @response.template.assigns['categories'].size end After: def test_list assert_equal 5, assigns(:recipes).size assert_equal 8, assigns(:categories).size end * Added TagHelper#image_tag and deprecated UrlHelper#link_image_to (recommended approach is to combine image_tag and link_to instead) * Fixed textilize to be resilient to getting nil parsed (by using Object#blank? instead of String#empty?) * Fixed that the :multipart option in FormTagHelper#form_tag would be ignored [Yonatan Feldman] *1.5.1* (7th March, 2005) * Fixed that the routes.rb file wouldn't be found on symlinked setups due to File.expand_path #793 [piotr@t-p-l.com] * Changed ActiveRecordStore to use Marshal instead of YAML as the latter proved troublesome in persisting circular dependencies. Updating existing applications MUST clear their existing session table from data to start using this updated store #739 [Jamis Buck] * Added shortcut :id assignment to render_component and friends (before you had to go through :params) #784 [Lucas Carlson] * Fixed that map.connect should convert arguments to strings #780 [Nicholas Seckar] * Added UrlHelper#link_to_if/link_to_unless to enable other conditions that just link_to_unless_current #757 [mindel] * Fixed that single quote was not escaped in a UrlHelper#link_to javascript confirm #549 [Scott Barron] * Removed the default border on link_image_to (it broke xhtml strict) -- can be specified with :border => 0 #517 [?/caleb] * Fixed that form helpers would treat string and symbol keys differently in html_options (and possibly create duplicate entries) #112 [bitsweat] * Fixed that broken pipe errors (clients disconnecting in mid-request) could bring down a fcgi process * Added the original exception message to session recall errors (so you can see which class wasnt required) * Fixed that RAILS_ROOT might not be defined when AP was loaded, so do a late initialization of the ROUTE_FILE #761 [Scott Barron] * Fix request.path_info and clear up LoadingModule behavior #754 [Nicholas Seckar] * Fixed caching to be aware of extensions (so you can cache files like api.wsdl or logo.png) #734 [Nicholas Seckar] * Fixed that Routes would raise NameErrors if a controller component contains characters that are not valid constant names #733 [Nicholas Seckar] * Added PATH_INFO access from the request that allows urls like the following to be interpreted by rails: http://www.example.com/dispatcher.cgi/controller/action -- that makes it possible to use rails as a CGI under lighttpd and would also allow (for example) Rublog to be ported to rails without breaking existing links to Rublog-powered blogs. #728 [Jamis Buck] * Fixed that caching the root would result in .html not index.html #731, #734 [alisdair/Nicholas Seckar] *1.5.0* (24th February, 2005) * Added Routing as a replacement for mod_rewrite pretty urls [Nicholas Seckar]. Read more in ActionController::Base.url_for and on http://manuals.rubyonrails.com/read/book/9 * Added components that allows you to call other actions for their rendered response while execution another action. You can either delegate the entire response rendering or you can mix a partial response in with your other content. Read more on http://manuals.rubyonrails.com/read/book/14 * Fixed that proxy IPs do not follow all RFC1918 nets #251 [caleb@aei-tech.com] * Added Base#render_to_string to parse a template and get the result back as a string #479 * Fixed that send_file/data can work even if render* has been called before in action processing to render the content of a file to be send for example #601 * Added FormOptionsHelper#time_zone_select and FormOptionsHelper#time_zone_options_for_select to work with the new value object TimeZone in Active Support #688 [Jamis Buck] * Added FormHelper#file_field and FormTagHelper#file_field_tag for creating file upload fields * Added :order option for date_select that allows control over the order in which the date dropdowns is used and which of them should be used #619 [Tim Bates]. Examples: date_select("post", "written_on", :order => [:day, :month, :year]) date_select("user", "birthday", :order => [:month, :day]) * Added ActionView::Base.register_template_handler for easy integration of an alternative template language to ERb and Builder. See test/controller/custom_handler_test.rb for a usage example #656 [Jamis Buck] * Added AssetTagHelper that provides methods for linking a HTML page together with other assets, such as javascripts, stylesheets, and feeds. * Added FormTagHelper that provides a number of methods for creating form tags that doesn't rely on conventions with an object assigned to the template like FormHelper does. With the FormTagHelper, you provide the names and values yourself. * Added Afghanistan, Iran, and Irak to the countries list used by FormOptions#country_select and FormOptions#country_options_for_select * Renamed link_to_image to link_image_to (since thats what it actually does) -- kept alias for the old method name * Fixed textilize for RedCloth3 to keep doing hardbreaks * Fixed that assert_template_xpath_matches did not indicate when a path was not found #658 [Eric Hodel] * Added TextHelper#auto_link to turn email addresses and urls into ahrefs * Fixed that on validation errors, scaffold couldn't find template #654 [mindel] * Added Base#hide_action(*names) to hide public methods from a controller that would otherwise have been callable through the URL. For the majority of cases, its preferred just to make the methods you don't want to expose protected or private (so they'll automatically be hidden) -- but if you must have a public method, this is a way to make it uncallable. Base#hidden_actions retrieve the list of all hidden actions for the controller #644 [Nicholas Seckar] * Fixed that a bunch of methods from ActionController::Base was accessible as actions (callable through a URL) when they shouldn't have been #644 [Nicholas Seckar] * Added UrlHelper#current_page?(options) method to check if the url_for options passed corresponds to the current page * Fixed https handling on other ports than 443 [Alan Gano] * Added follow_redirect method for functional tests that'll get-request the redirect that was made. Example: def test_create_post post :create, "post" => { "title" => "Exciting!" } assert_redirected_to :action => "show" follow_redirect assert_rendered_file "post/show" end Limitation: Only works for redirects to other actions within the same controller. * Fixed double requiring of models with the same name as the controller * Fixed that query params could be forced to nil on a POST due to the raw post fix #562 [moriq@moriq.com] * Fixed that cookies shouldn't be frozen in TestRequest #571 [Eric Hodel] *1.4.0* (January 25th, 2005) * Fixed problems with ActiveRecordStore under the development environment in Rails * Fixed the ordering of attributes in the xml-decleration of Builder #540 [woeye] * Added @request.raw_post as a convenience access to @request.env['RAW_POST_DATA'] #534 [Tobias Luetke] * Added support for automatic id-based indexing for lists of items #532 [dblack]. Example: <% @students.each do |@student| %> <%= text_field "student[]", "first_name", :size => "20" %> <%= text_field "student[]", "last_name" %> <%= text_field "student[]", "grade", :size => "5" %> <% end %> ...would produce, for say David Black with id 123 and a grace of C+: * Added :application_prefix to url_for and friends that makes it easier to setup Rails in non-vhost environments #516 [Jamis Buck] * Added :encode option to mail_to that'll allow you to masquarede the email address behind javascript or hex encoding #494 [Lucas Carlson] * Fixed that the content-header was being set to application/octet_stream instead of application/octet-stream on send_date/file [Alexey] * Removed the need for passing the binding when using CacheHelper#cache * Added TestResponse#binary_content that'll return as a string the data sent through send_data/send_file for testing #500 [Alexey] * Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [bitsweat] * Fixed that a default fragment store wan't being set to MemoryStore as intended. * Fixed that all redirect and render calls now return true, so you can use the pattern of "do and return". Example: def show redirect_to(:action => "login") and return unless @person.authenticated? render_text "I won't happen unless the person is authenticated" end * Added that renders and redirects called in before_filters will have the same effect as returning false: stopping the chain. Example: class WeblogController before_filter { |c| c.send(:redirect_to_url("http://www.farfaraway.com")}) } def hello render_text "I will never be called" end end * Added that only one render or redirect can happen per action. The first call wins and subsequent calls are ignored. Example: def do_something redirect_to :action => "elsewhere" render_action "overthere" end Only the redirect happens. The rendering call is simply ignored. *1.3.1* (January 18th, 2005) * Fixed a bug where cookies wouldn't be set if a symbol was used instead of a string as the key * Added assert_cookie_equal to assert the contents of a named cookie * Fixed bug in page caching that prevented it from working at all *1.3.0* (January 17th, 2005) * Added an extensive caching module that offers three levels of granularity (page, action, fragment) and a variety of stores. Read more in ActionController::Caching. * Added the option of passing a block to ActiveRecordHelper#form in order to add more to the auto-generated form #469 [dom@sisna.com] form("entry", :action => "sign") do |form| form << content_tag("b", "Department") form << collection_select("department", "id", @departments, "id", "name") end * Added arrays as a value option for params in url_for and friends #467 [Eric Anderson]. Example: url_for(:controller => 'user', :action => 'delete', :params => { 'username' => %( paul john steve ) } ) # => /user/delete?username[]=paul&username[]=john&username[]=steve * Fixed that controller tests can now assert on the use of cookies #466 [Alexey] * Fixed that send_file would "remember" all the files sent by adding to the headers again and again #458 [bitsweat] * Fixed url rewriter confusion when the controller or action name was a substring of the controller_prefix or action_prefix * Added conditional layouts like layout "weblog_standard", :except => :rss #452 [Marcel Molina] * Fixed that MemCacheStore wasn't included by default and added default MemCache object pointing to localhost #447 [Lucas Carlson] * Added fourth argument to render_collection_of_partials that allows you to specify local_assigns -- just like render_partial #432 [zenspider] * Fixed that host would choke when cgi.host returned nil #432 [Tobias Luetke] * Added that form helpers now take an index option #448 [Tim Bates] Example: text_field "person", "name", "index" => 3 Becomes: * Fixed three issues with retrying breakpoints #417 [Florian Gross] 1. Don't screw up pages that use multiple values for the same parameter (?foo=bar&foo=qux was converted to ?foo=barqux) 2. Don't screw up all forms when you click the "Retry with Breakpoint" link multiple times instead of reloading (This caused the parameters to be added multiple times for GET forms leading to trouble.) 3. Don't add ?BP-RETRY=1 multiple times * Added that all renders and redirects now return false, so they can be used as the last line in before_filters to stop execution. Before: def authenticate unless @session[:authenticated] redirect_to :controller => "account", :action => "login" return false end end After: def authenticate redirect_to(:controller => "account", :action => "login") unless @session[:authenticated] end * Added conditional filters #431 [Marcel]. Example: class JournalController < ActionController::Base # only require authentication if the current action is edit or delete before_filter :authorize, :only_on => [ :edit, :delete ] private def authorize # redirect to login unless authenticated end end * Added Base#render_nothing as a cleaner way of doing render_text "" when you're not interested in returning anything but an empty response. * Added the possibility of passing nil to UrlHelper#link_to to use the link itself as the name *1.2.0* (January 4th, 2005) * Added MemCacheStore for storing session data in Danga's MemCache system [Bob Cottrell] Depends on: MemCached server (http://www.danga.com/memcached/), MemCache client (http://raa.ruby-lang.org/project/memcache/) * Added thread-safety to the DRbStore #66, #389 [Ben Stiglitz] * Added DateHelper#select_time and DateHelper#select_second #373 [Scott Baron] * Added :host and :protocol options to url_for and friends to redirect to another host and protocol than the current. * Added class declaration for the MissingFile exception #388 [Kent Sibilev] * Added "short hypertext note with a hyperlink to the new URI(s)" to redirects to fulfill compliance with RFC 2616 (HTTP/1.1) section 10.3.3 #397 [Tim Bates] * Added second boolean parameter to Base.redirect_to_url and Response#redirect to control whether the redirect is permanent or not (301 vs 302) #375 [Hodel] * Fixed redirects when the controller and action is named the same. Still haven't fixed same controller, module, and action, though #201 [Josh] * Fixed problems with running multiple functional tests in Rails under 1.8.2 by including hack for test/unit weirdness * Fixed that @request.remote_ip didn't work in the test environment #369 [Bruno Mattarollo] *1.1.0* * Added search through session to clear out association caches at the end of each request. This makes it possible to place Active Record objects in the session without worrying about stale data in the associations (the main object is still subject to caching, naturally) #347 [Tobias Luetke] * Added more informative exception when using helper :some_helper and the helper requires another file that fails, you'll get an error message tells you what file actually failed to load, rather than falling back on assuming it was the helper file itself #346 [dblack] * Added use of *_before_type_cast for all input and text fields. This is helpful for getting "100,000" back on a integer-based validation where the value would normally be "100". * Added Request#port_string to get something like ":8080" back on 8080 and "" on 80 (or 443 with https). * Added Request#domain (returns string) and Request#subdomains (returns array). * Added POST support for the breakpoint retries, so form processing that raises an exception can be retried with the original request [Florian Gross] * Fixed regression with Base#reset_session that wouldn't use the the DEFAULT_SESSION_OPTIONS [adam@the-kramers.net] * Fixed error rendering of rxml documents to not just swallow the exception and return 0 (still not guessing the right line, but hey) * Fixed that textilize and markdown would instantiate their engines even on empty strings. This also fixes #333 [Ulysses] * Fixed UrlHelper#link_to_unless so it doesn't care if the id is a string or fixnum [zenspider] *1.0.1* * Fixed a bug that would cause an ApplicationController to require itself three times and hence cause filters to be run three times [evl] *1.0* * Added that controllers will now attempt to require a model dependency with their name and in a singular attempt for their name. So both PostController and PostsController will automatically have the post.rb model required. If no model is found, no error is raised, as it is then expected that no match is available and the programmer will have included his own models. * Fixed DateHelper#date_select so that you can pass include_blank as an option even if you don't use start_year and end_year #59 [what-a-day] * Added that controllers will now search for a layout in $template_root/layouts/$controller_name.r(html|xml), so PostsController will look for layouts/posts.rhtml or layouts/posts.rxml and automatically configure this layout if found #307 [Marcel] * Added FormHelper#radio_button to work with radio buttons like its already possible with check boxes [Michael Koziarski] * Added TemplateError#backtrace that makes it much easier to debug template errors from unit and functional tests * Added display of error messages with scaffolded form pages * Added option to ERB templates to swallow newlines by using <% if something -%> instead of just <% if something %>. Example: class SomeController < ApplicationController <% if options[:scaffold] %> scaffold :<%= singular_name %> <% end %> helper :post ...produces this on post as singular_name: class SomeController < ApplicationController scaffold :post helper :post ...where as: class SomeController < ApplicationController <% if options[:scaffold] -%> scaffold :<%= singular_name %> <% end -%> helper :post ...produces: class SomeController < ApplicationController scaffold :post helper :post [This undocumented gem for ERb was uncovered by bitsweat] * Fixed CgiRequest so that it'll now accept session options with Symbols as keys (as the documentation points out) [Suggested by Andreas] * Added that render_partial will always by default include a counter with value 1 unless there is a counter passed in via the local_assigns hash that overrides it. As a result, render_collection_of_partials can still be written in terms of render_partial and partials that make use of a counter can be called without problems from both render_collection_of_partials as well as render_partial #295 [marcel] * Fixed CgiRequest#out to fall back to #write if $stdout doesn't have #syswrite [bitsweat] * Fixed all helpers so that they use XHTML compliant double quotes for values instead of single quotes [htonl/bitsweat] * Added link_to_image(src, options = {}, html_options = {}, *parameters_for_method_reference). Documentation: Creates a link tag to the image residing at the +src+ using an URL created by the set of +options+. See the valid options in link:classes/ActionController/Base.html#M000021. It's also possible to pass a string instead of an options hash to get a link tag that just points without consideration. The html_options works jointly for the image and ahref tag by letting the following special values enter the options on the image and the rest goes to the ahref: ::alt: If no alt text is given, the file name part of the +src+ is used (capitalized and without the extension) ::size: Supplied as "XxY", so "30x45" becomes width="30" and height="45" ::align: Sets the alignment, no special features The +src+ can be supplied as a... * full path, like "/my_images/image.gif" * file name, like "rss.gif", that gets expanded to "/images/rss.gif" * file name without extension, like "logo", that gets expanded to "/images/logo.png" * Fixed to_input_field_tag so it no longer explicitly uses InstanceTag.value if value was specified in the options hash [evl] * Added the possibility of having validate be protected for assert_(in)valid_column #263 [Tobias Luetke] * Added that ActiveRecordHelper#form now calls url_for on the :action option. * Added all the HTTP methods as alternatives to the generic "process" for functional testing #276 [Tobias Luetke]. Examples: # Calls Controller#miletone with a GET request process :milestone # Calls Controller#miletone with a POST request that has parameters post :milestone, { "name" => "David" } # Calls Controller#milestone with a HEAD request that has both parameters and session data head :milestone, { "id" => 1 }, { "user_id" => 23 } This is especially useful for testing idiomatic REST web services. * Added proper handling of HEAD requests, so that content isn't returned (Request#head? added as well) #277 [Eric Hodel] * Added indifference to whether @headers["Content-Type"], @headers["Content-type"], or @headers["content-type"] is used. * Added TestSession#session_id that returns an empty string to make it easier to functional test applications that doesn't use cookie-based sessions #275 [jcf] * Fixed that cached template loading would still check the file system to see if the file existed #258 [Andreas Schwarz] * Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [josh] * Added graceful handling of non-alphanumeric names and misplaced brackets in input parameters [bitsweat] * Added a new container for cookies that makes them more intuative to use. The old methods of cookie and @cookies have been deprecated. Examples for writing: cookies["user_name"] = "david" # => Will set a simple session cookie cookies["login"] = { "value" => "XJ-122", "expires" => Time.now + 360} # => Will set a cookie that expires in 1 hour Examples for reading: cookies["user_name"] # => "david" cookies.size # => 2 Read more in ActionController::Cookies NOTE: If you were using the old accessor (cookies instead of @cookies), this could potentially break your code -- if you expect a full cookie object! * Added the opportunity to defined method_missing on a controller which will handle all requests for actions not otherwise defined #223 [timb] * Fixed AbstractRequest#remote_ip for users going through proxies - Patch #228 [Eric Hodel] * Added Request#ssl? which is shorthand for @request.protocol == "https://" * Added the choice to call form_tag with no arguments (resulting in a form posting to current action) [bitsweat] * Upgraded to Builder 1.2.1 * Added :module as an alias for :controller_prefix to url_for and friends, so you can do redirect_to(:module => "shop", :controller => "purchases") and go to /shop/purchases/ * Added support for controllers in modules through @params["module"]. * Added reloading for dependencies under cached environments like FastCGI and mod_ruby. This makes it possible to use those environments for development. This is turned on by default, but can be turned off with ActionController::Base.reload_dependencies = false in production environments. NOTE: This will only have an effect if you use the new model, service, and observer class methods to mark dependencies. All libraries loaded through require will be "forever" cached. You can, however, use ActionController::Base.load_or_require("library") to get this behavior outside of the new dependency style. * Added that controllers will automatically require their own helper if possible. So instead of doing: class MsgController < ApplicationController helper :msg end ...you can just do: class MsgController < ApplicationController end * Added dependencies_on(layer) to query the dependencies of a controller. Examples: MsgController.dependencies_on(:model) # => [ :post, :comment, :attachment ] MsgController.dependencies_on(:service) # => [ :notification_service ] MsgController.dependencies_on(:observer) # => [ :comment_observer ] * Added a new dependency model with the class methods model, service, and observer. Example: class MsgController < ApplicationController model :post, :comment, :attachment service :notification_service observer :comment_observer end These new "keywords" remove the need for explicitly calling 'require' in most cases. The observer method even instantiates the observer as well as requiring it. * Fixed that link_to would escape & in the url again after url_for already had done so *0.9.5* (28) * Added helper_method to designate that a given private or protected method you should available as a helper in the view. [bitsweat] * Fixed assert_rendered_file so it actually verifies if that was the rendered file [htonl] * Added the option for sharing partial spacer templates just like partials themselves [radsaq] * Fixed that Russia was named twice in country_select [alexey] * Fixed request_origin to use remote_ip instead of remote_addr [bitsweat] * Fixed link_to breakage when nil was passed for html_options [alexey] * Fixed redirect_to on a virtual server setup with apache with a port other than the default where it would forget the port number [seanohalpin] * Fixed that auto-loading webrick on Windows would cause file uploads to fail [bitsweat] * Fixed issues with sending files on WEBrick by setting the proper binmode [bitsweat] * Added send_data as an alternative to send_file when the stream is not read off the filesystem but from a database or generated live [bitsweat] * Added a new way to include helpers that doesn't require the include hack and can go without the explicit require. [bitsweat] Before: module WeblogHelper def self.append_features(controller) #:nodoc: controller.ancestors.include?(ActionController::Base) ? controller.add_template_helper(self) : super end end require 'weblog_helper' class WeblogController < ActionController::Base include WeblogHelper end After: module WeblogHelper end class WeblogController < ActionController::Base helper :weblog end * Added a default content-type of "text/xml" to .rxml renders [Ryan Platte] * Fixed that when /controller/index was requested by the browser, url_for would generates wrong URLs [Ryan Platte] * Fixed a bug that would share cookies between users when using FastCGI and mod_ruby [The Robot Co-op] * Added an optional third hash parameter to the process method in functional tests that takes the session data to be used [alexey] * Added UrlHelper#mail_to to make it easier to create mailto: style ahrefs * Added better error messages for layouts declared with the .rhtml extension (which they shouldn't) [geech] * Added another case to DateHelper#distance_in_minutes to return "less than a minute" instead of "0 minutes" and "1 minute" instead of "1 minutes" * Added a hidden field to checkboxes generated with FormHelper#check_box that will make sure that the unchecked value (usually 0) is sent even if the checkbox is not checked. This relieves the controller from doing custom checking if the the checkbox wasn't checked. BEWARE: This might conflict with your run-on-the-mill work-around code. [Tobias Luetke] * Fixed error_message_on to just use the first if more than one error had been added [marcel] * Fixed that URL rewriting with /controller/ was working but /controller was not and that you couldn't use :id on index [geech] * Fixed a bug with link_to where the :confirm option wouldn't be picked up if the link was a straight url instead of an option hash * Changed scaffolding of forms to use