CHANGELOG 58.9 KB
Newer Older
1 2
*SVN*

3 4
* Added :owerwrite_params back to url_for and friends -- it was AWL since the introduction of Routes #921 [raphinou]

5 6 7 8
* 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/?]

9 10
* 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]

11 12
* Added fourth option to process in test cases to specify the content of the flash #949 [Jamis Buck]

13 14
* Added Verifications that allows you to specify preconditions to actions in form of statements like <tt>verify :only => :update_post, :params => "admin_privileges", :redirect_to => { :action => "settings" }</tt>, 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]

15 16
* Fixed Form.Serialize for the JavascriptHelper to also seriliaze password fields #934 [dweitzman@gmail.com]

17 18
* 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]

19 20
* 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]

21 22 23 24
* 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]

25 26
* Added TextHelper#human_size for formatting file sizes, like human_size(1234567) => 1.2 MB #943 [thomas@fesch.at]

27 28
* Fixed link_to :confirm #936 [Nicholas Seckar]

29 30
* Improved error reporting especially around never shallowing exceptions. Debugging helpers should be much easier now #980 [Nicholas Seckar]

31 32 33
* Fixed Toggle.display in prototype.js #902 [Lucas Carlson]


34
*1.6.0* (22th March, 2005)
35

36 37
* 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]

38 39
* Added pagination support through both a controller and helper add-on #817 [Sam Stephenson]

40 41
* Fixed routing and helpers to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias Luetke]

42 43 44 45 46 47 48
* 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
49
          flash[:message] = 'Save successful'
50 51 52
          redirect_to :action => 'list'
        else
          # no redirect, message is for current action, use flash.now
53
          flash.now[:message] = 'Save failed, review'
54 55 56 57 58
          render_action 'edit'
        end
      end    
    end

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
* 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

80 81
* 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]

82 83 84 85
* 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]

86 87
* Added that the html options disabled, readonly, and multiple can all be treated as booleans. So specifying <tt>disabled => :true</tt> will give <tt>disabled="disabled"</tt>. #809 [mindel]

88 89 90 91 92
* 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".
93 94 95
  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("/").
96

97 98
* Fixed options_for_select on selected line issue #624 [Florian Weber]

99 100
* Added CaptureHelper with CaptureHelper#capture and CaptureHelper#content_for. See documentation in helper #837 [Tobias Luetke]

101 102
* Fixed :anchor use in url_for #821 [Nicholas Seckar]

103 104
* Removed the reliance on PATH_INFO as it was causing problems for caching and inhibited the new non-vhost support #822 [Nicholas Seckar]

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
* 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

121 122
* Added TagHelper#image_tag and deprecated UrlHelper#link_image_to (recommended approach is to combine image_tag and link_to instead)

123 124
* Fixed textilize to be resilient to getting nil parsed (by using Object#blank? instead of String#empty?)

125 126 127
* Fixed that the :multipart option in FormTagHelper#form_tag would be ignored [Yonatan Feldman]


128
*1.5.1* (7th March, 2005)
129

130 131
* Fixed that the routes.rb file wouldn't be found on symlinked setups due to File.expand_path #793 [piotr@t-p-l.com]

132 133
* 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]

134 135
* Added shortcut :id assignment to render_component and friends (before you had to go through :params) #784 [Lucas Carlson]

136 137
* Fixed that map.connect should convert arguments to strings #780 [Nicholas Seckar]

138 139
* Added UrlHelper#link_to_if/link_to_unless to enable other conditions that just link_to_unless_current #757 [mindel]

140 141
* Fixed that single quote was not escaped in a UrlHelper#link_to javascript confirm #549 [Scott Barron]

142 143
* Removed the default border on link_image_to (it broke xhtml strict) -- can be specified with :border => 0 #517 [?/caleb]

144 145
* Fixed that form helpers would treat string and symbol keys differently in html_options (and possibly create duplicate entries) #112 [bitsweat]

146 147
* Fixed that broken pipe errors (clients disconnecting in mid-request) could bring down a fcgi process

148 149
* Added the original exception message to session recall errors (so you can see which class wasnt required)

150 151 152 153 154 155
* 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]

156 157
* Fixed that Routes would raise NameErrors if a controller component contains characters that are not valid constant names #733 [Nicholas Seckar]

158 159
* 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]

160
* Fixed that caching the root would result in .html not index.html #731, #734 [alisdair/Nicholas Seckar]
161 162


D
David Heinemeier Hansson 已提交
163
*1.5.0* (24th February, 2005)
164

165 166 167 168
* 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

169 170
* Fixed that proxy IPs do not follow all RFC1918 nets #251 [caleb@aei-tech.com]

171 172
* Added Base#render_to_string to parse a template and get the result back as a string #479

173 174
* 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

175
* 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]
176

177 178
* Added FormHelper#file_field and FormTagHelper#file_field_tag for creating file upload fields

179 180 181 182 183
* 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])

184 185
* 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]

186 187
* Added AssetTagHelper that provides methods for linking a HTML page together with other assets, such as javascripts, stylesheets, and feeds.

188 189
* 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.

190
* Added Afghanistan, Iran, and Irak to the countries list used by FormOptions#country_select and FormOptions#country_options_for_select
191 192 193

* Renamed link_to_image to link_image_to (since thats what it actually does) -- kept alias for the old method name

194 195
* Fixed textilize for RedCloth3 to keep doing hardbreaks

196 197
* Fixed that assert_template_xpath_matches did not indicate when a path was not found #658 [Eric Hodel]

198
* Added TextHelper#auto_link to turn email addresses and urls into ahrefs
199

200 201
* Fixed that on validation errors, scaffold couldn't find template #654 [mindel]

202
* 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]
203 204 205 206 207

* 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

208 209
* Fixed https handling on other ports than 443 [Alan Gano]

210 211 212 213 214 215 216 217 218 219 220 221
* 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.

222 223
* Fixed double requiring of models with the same name as the controller

224 225
* Fixed that query params could be forced to nil on a POST due to the raw post fix #562 [moriq@moriq.com]

226 227 228
* Fixed that cookies shouldn't be frozen in TestRequest #571 [Eric Hodel]


229 230 231
*1.4.0* (January 25th, 2005)

* Fixed problems with ActiveRecordStore under the development environment in Rails
232

233 234
* Fixed the ordering of attributes in the xml-decleration of Builder #540 [woeye]

235 236
* Added @request.raw_post as a convenience access to @request.env['RAW_POST_DATA'] #534 [Tobias Luetke]

237 238 239 240 241 242 243 244 245 246 247 248 249 250
* 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+:
  
    <input id="student_123_first_name" name="student[123][first_name]" size="20"     size="30" type="text" value="David" />
    <input id="student_123_last_name" name="student[123][last_name]" size="30"  type="text" value="Black" />
    <input id="student_123_grade" name="student[123][grade]" size="5" type="text"  value="C+" />

251 252
* Added :application_prefix to url_for and friends that makes it easier to setup Rails in non-vhost environments #516 [Jamis Buck]

253 254
* Added :encode option to mail_to that'll allow you to masquarede the email address behind javascript or hex encoding #494 [Lucas Carlson]

255 256
* Fixed that the content-header was being set to application/octet_stream instead of application/octet-stream on send_date/file [Alexey]

257 258
* Removed the need for passing the binding when using CacheHelper#cache

259 260
* Added TestResponse#binary_content that'll return as a string the data sent through send_data/send_file for testing #500 [Alexey]

261 262
* Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [bitsweat]

263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
* 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.


293
*1.3.1* (January 18th, 2005)
D
David Heinemeier Hansson 已提交
294

295 296
* Fixed a bug where cookies wouldn't be set if a symbol was used instead of a string as the key

297 298
* Added assert_cookie_equal to assert the contents of a named cookie

D
David Heinemeier Hansson 已提交
299 300 301
* Fixed bug in page caching that prevented it from working at all 


302
*1.3.0* (January 17th, 2005)
303

304 305 306
* Added an extensive caching module that offers three levels of granularity (page, action, fragment) and a variety of stores. 
  Read more in ActionController::Caching.

307 308 309 310 311 312 313
* 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

314 315 316 317 318
* 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

319 320
* Fixed that controller tests can now assert on the use of cookies #466 [Alexey]

321 322
* Fixed that send_file would "remember" all the files sent by adding to the headers again and again #458 [bitsweat]

323
* Fixed url rewriter confusion when the controller or action name was a substring of the controller_prefix or action_prefix
324

325 326
* Added conditional layouts like <tt>layout "weblog_standard", :except => :rss</tt> #452 [Marcel Molina]

327 328
* Fixed that MemCacheStore wasn't included by default and added default MemCache object pointing to localhost #447 [Lucas Carlson]

329 330
* Added fourth argument to render_collection_of_partials that allows you to specify local_assigns -- just like render_partial #432 [zenspider]

331 332
* Fixed that host would choke when cgi.host returned nil #432 [Tobias Luetke]

333 334 335 336 337 338 339 340
* Added that form helpers now take an index option #448 [Tim Bates]

  Example:
    text_field "person", "name", "index" => 3

  Becomes:
    <input type="text" name="person[3][name]" id="person_3_name" value="<%= @person.name %>" />

341 342 343 344 345 346 347
* 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

348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
* 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

363 364 365 366 367 368 369 370 371 372 373 374
* 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

375 376
* Added Base#render_nothing as a cleaner way of doing render_text "" when you're not interested in returning anything but an empty response.

377 378 379
* Added the possibility of passing nil to UrlHelper#link_to to use the link itself as the name


380
*1.2.0* (January 4th, 2005)
381

382 383 384
* 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/)

385 386
* Added thread-safety to the DRbStore #66, #389 [Ben Stiglitz]

387 388
* Added DateHelper#select_time and DateHelper#select_second #373 [Scott Baron]

389 390
* Added :host and :protocol options to url_for and friends to redirect to another host and protocol than the current.

391 392
* Added class declaration for the MissingFile exception #388 [Kent Sibilev]

393 394
* 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]

395 396
* 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]

397
* Fixed redirects when the controller and action is named the same. Still haven't fixed same controller, module, and action, though #201 [Josh]
398

399 400 401
* 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]
402 403


D
David Heinemeier Hansson 已提交
404
*1.1.0*
405

406 407 408
* 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]

409 410 411
* 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]

412 413 414
* 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".

415 416
* Added Request#port_string to get something like ":8080" back on 8080 and "" on 80 (or 443 with https).

417 418
* Added Request#domain (returns string) and Request#subdomains (returns array).

419 420
* Added POST support for the breakpoint retries, so form processing that raises an exception can be retried with the original request [Florian Gross]

D
David Heinemeier Hansson 已提交
421 422 423 424 425 426 427 428
* 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]

429

430 431 432 433 434
*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]


D
David Heinemeier Hansson 已提交
435
*1.0*
436

437 438 439 440
* 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.

441 442
* 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]

443 444 445
* 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]

446 447
* Added FormHelper#radio_button to work with radio buttons like its already possible with check boxes [Michael Koziarski]

448 449
* Added TemplateError#backtrace that makes it much easier to debug template errors from unit and functional tests

450 451
* Added display of error messages with scaffolded form pages

452 453
* Added option to ERB templates to swallow newlines by using <% if something -%> instead of just <% if something %>. Example:

454
    class SomeController < ApplicationController
455 456 457 458 459 460 461
    <% if options[:scaffold] %>
      scaffold :<%= singular_name %>
    <% end %>
      helper :post
  
  ...produces this on post as singular_name:

462
    class SomeController < ApplicationController
463 464 465 466 467 468 469
    
      scaffold :post
    
      helper :post
  
  ...where as:

470
    class SomeController < ApplicationController
471 472 473 474 475 476 477
    <% if options[:scaffold] -%>
      scaffold :<%= singular_name %>
    <% end -%>
      helper :post
  
  ...produces:

478
    class SomeController < ApplicationController
479 480 481 482 483
      scaffold :post
      helper :post
  
  [This undocumented gem for ERb was uncovered by bitsweat]

484 485 486 487 488 489 490
* 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]

491 492
* Fixed CgiRequest#out to fall back to #write if $stdout doesn't have #syswrite [bitsweat]

493 494
* Fixed all helpers so that they use XHTML compliant double quotes for values instead of single quotes [htonl/bitsweat]

495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
* 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 <tt>html_options</tt> 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"

511 512
* Fixed to_input_field_tag so it no longer explicitly uses InstanceTag.value if value was specified in the options hash [evl]

513 514
* Added the possibility of having validate be protected for assert_(in)valid_column #263 [Tobias Luetke]

515 516
* Added that ActiveRecordHelper#form now calls url_for on the :action option.

517 518 519 520 521 522 523 524 525 526 527 528 529
* 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.

530 531 532 533
* 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.

534
* Added TestSession#session_id that returns an empty string to make it easier to functional test applications that doesn't use 
535
  cookie-based sessions #275 [jcf]
536

537 538
* Fixed that cached template loading would still check the file system to see if the file existed #258 [Andreas Schwarz]

539 540
* Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [josh]

541 542
* Added graceful handling of non-alphanumeric names and misplaced brackets in input parameters [bitsweat]

543
* Added a new container for cookies that makes them more intuative to use. The old methods of cookie and @cookies have been deprecated.
544

545 546 547 548 549 550 551 552 553 554 555 556 557
  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!
558

559
* Added the opportunity to defined method_missing on a controller which will handle all requests for actions not otherwise defined #223 [timb]
D
Initial  
David Heinemeier Hansson 已提交
560

561 562
* Fixed AbstractRequest#remote_ip for users going through proxies - Patch #228 [Eric Hodel]

563 564
* Added Request#ssl? which is shorthand for @request.protocol == "https://"

565 566
* Added the choice to call form_tag with no arguments (resulting in a form posting to current action) [bitsweat]

D
Initial  
David Heinemeier Hansson 已提交
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
* 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:

583
    class MsgController < ApplicationController
D
Initial  
David Heinemeier Hansson 已提交
584 585 586 587 588
      helper :msg
    end
    
  ...you can just do:
  
589
    class MsgController < ApplicationController
D
Initial  
David Heinemeier Hansson 已提交
590 591 592 593 594 595 596 597 598 599
    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:

600
    class MsgController < ApplicationController
D
Initial  
David Heinemeier Hansson 已提交
601 602 603 604 605 606 607 608 609 610
      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

611

D
Initial  
David Heinemeier Hansson 已提交
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
*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 <label> tags instead of <b> to please W3C [evl]

* Added DateHelper#distance_of_time_in_words_to_now(from_time) that works like distance_of_time_in_words, 
  but where <tt>to_time</tt> is fixed to <tt>Time.now</tt>.

* Added assert_flash_equal(expected, key, message), assert_session_equal(expected, key, message), 
  assert_assigned_equal(expected, key, message) to test the contents of flash, session, and template assigns.

* Improved the failure report on assert_success when the action triggered a redirection [alexey].

* Added "markdown" to accompany "textilize" as a TextHelper method for converting text to HTML using the Markdown syntax.
  BlueCloth must be installed in order for this method to become available.

* Made sure that an active session exists before we attempt to delete it [Samuel]

* Changed link_to with Javascript confirmation to use onclick instead of onClick for XHTML validity [Scott Barron]


*0.9.0 (43)*

* Added support for Builder-based templates for files with the .rxml extension. These new templates are an alternative to ERb that
  are especially useful for generating XML content, such as this RSS example from Basecamp:

    xml.rss("version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/") do
      xml.channel do
        xml.title(@feed_title)
        xml.link(@url)
        xml.description "Basecamp: Recent items"
        xml.language "en-us"
        xml.ttl "40"
    
        for item in @recent_items
          xml.item do
            xml.title(item_title(item))
            xml.description(item_description(item)) if item_description(item)
            xml.pubDate(item_pubDate(item))
            xml.guid(@person.firm.account.url + @recent_items.url(item))
            xml.link(@person.firm.account.url + @recent_items.url(item))
        
            xml.tag!("dc:creator", item.author_name) if item_has_creator?(item)
          end
        end
      end
    end

    ...which will generate something like:

    <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
      <channel>
        <title>Web Site Redesign</title>
        <link>http://www.basecamphq.com/clients/travelcenter/1/</link>
        <description>Basecamp: Recent items</description>
        <language>en-us</language>
        <ttl>40</ttl>
        <item>
          <title>Post: don't you know</title>
          <description>&amp;lt;p&amp;gt;deeper and down&amp;lt;/p&amp;gt;</description>
          <pubDate>Fri, 20 Aug 2004 21:13:50 CEST</pubDate>
          <guid>http://www.basecamphq.com/clients/travelcenter/1/msg/assets/96976/comments</guid>
          <link>http://www.basecamphq.com/clients/travelcenter/1/msg/assets/96976/comments</link>
          <dc:creator>David H. Heinemeier</dc:creator>
        </item>
        <item>
          <title>Milestone completed: Design Comp 2</title>
          <pubDate>Mon,  9 Aug 2004 14:42:06 CEST</pubDate>
          <guid>http://www.basecamphq.com/clients/travelcenter/1/milestones/#49</guid>
          <link>http://www.basecamphq.com/clients/travelcenter/1/milestones/#49</link>
        </item>
      </channel>
    </rss>

  The "xml" local variable is automatically available in .rxml templates. You construct the template by calling a method with the name
  of the tag you want. Options for the tag can be specified as a hash parameter to that method.

  Builder-based templates can be mixed and matched with the regular ERb ones. The only thing that differentiates them is the extension.
  No new methods have been added to the public interface to handle them. 
  
  Action Pack ships with a version of Builder, but it will use the RubyGems version if you have one installed.
  
  Read more about Builder on: http://onestepback.org/index.cgi/Tech/Ruby/StayingSimple.rdoc
  
  [Builder is created by Jim Weirich]

* Added much improved support for functional testing [what-a-day].

    # Old style
    def test_failing_authenticate
      @request.request_uri = "/login/authenticate"
      @request.action = "authenticate"
      @request.request_parameters["user_name"] = "nop"
      @request.request_parameters["password"]  = ""
  
      response = LoginController.process_test(@request)
  
      assert_equal "The username and/or password you entered is invalid.", response.session["flash"]["alert"]
      assert_equal "http://37signals.basecamp.com/login/", response.headers["location"]
    end

    # New style
    def test_failing_authenticate
      process :authenticate, "user_name" => "nop", "password" => ""
      assert_flash_has 'alert'
      assert_redirected_to :action => "index"
    end

  See a full example on http://codepaste.org/view/paste/334

* Increased performance by up to 100% with a revised cookie class that fixes the performance problems with the 
  default one that ships with 1.8.1 and below. It replaces the inheritance on SimpleDelegator with DelegateClass(Array)
  following the suggestion from Matz on:
  http://groups.google.com/groups?th=e3a4e68ba042f842&seekm=c3sioe%241qvm%241%40news.cybercity.dk#link14

* Added caching for compiled ERb templates. On Basecamp, it gave between 8.5% and 71% increase in performance [Andreas Schwarz].

* Added implicit counter variable to render_collection_of_partials [Marcel]. From the docs:

    <%= render_collection_of_partials "ad", @advertisements %>
    
    This will render "advertiser/_ad.rhtml" and pass the local variable +ad+ to the template for display. An iteration counter
    will automatically be made available to the template with a name of the form +partial_name_counter+. In the case of the 
    example above, the template would be fed +ad_counter+.

* Fixed problems with two sessions being maintained on reset_session that would particularly screw up ActiveRecordStore.

* Fixed reset_session to start an entirely new session instead of merely deleting the old. So you can now safely access @session
  after calling reset_ression and expect it to work.

* Added @request.get?, @request.post?, @request.put?, @request.delete? as convenience query methods for @request.method [geech]

* Added @request.method that'll return a symbol representing the HTTP method, such as :get, :post, :put, :delete [geech]

* Changed @request.remote_ip and @request.host to work properly even when a proxy is in front of the application [geech]

* Added JavaScript confirm feature to link_to. Documentation:

    The html_options have a special feature for creating javascript confirm alerts where if you pass 
    :confirm => 'Are you sure?', the link will be guarded with a JS popup asking that question.
    If the user accepts, the link is processed, otherwise not.

* Added link_to_unless_current as a UrlHelper method [Sam Stephenson]. Documentation:

    Creates a link tag of the given +name+ using an URL created by the set of +options+, unless the current 
    controller, action, and id are the same as the link's, in which case only the name is returned (or the
    given block is yielded, if one exists). This is useful for creating link bars where you don't want to link 
    to the page currently being viewed.

* Fixed that UrlRewriter (the driver for url_for, link_to, etc) would blow up when the anchor was an integer [alexey]

* Added that layouts defined with no directory defaults to layouts. So layout "weblog/standard" will use
  weblog/standard (as always), but layout "standard" will use layouts/standard.

* Fixed that partials (or any template starting with an underscore) was publically viewable [Marten]

* Added HTML escaping to text_area helper.

* Added :overwrite_params to url_for and friends to keep the parameters as they were passed to the current action and only overwrite a subset.
  The regular :params will clear the slate so you need to manually add in existing parameters if you want to reuse them. [raphinou]

* Fixed scaffolding problem with composite named objects [Moo Jester]

* Added the possibility for shared partials. Example:

    <%= render_partial "advertisement/ad", ad %>
  
  This will render the partial "advertisement/_ad.rhtml" regardless of which controller this is being called from.
  
  [Jacob Fugal]

* Fixed crash when encountering forms that have empty-named fields [James Prudente]

* Added check_box form helper method now accepts true/false as well as 1/0 [what-a-day]

* Fixed the lacking creation of all directories with install.rb [Dave Steinberg]

* Fixed that date_select returns valid XHTML selected options [Andreas Schwarz]

* Fixed referencing an action with the same name as a controller in url_for [what-a-day]

* Fixed the destructive nature of Base#attributes= on the argument [Kevin Watt]

* Changed ActionControllerError to decent from StandardError instead of Exception. It can now be caught by a generic rescue.

* Added SessionRestoreError that is raised when a session being restored holds objects where there is no class available.

* Added block as option for inline filters. So what used to be written as:

    before_filter Proc { |controller| return false if controller.params["stop_action"] }

  ...can now be as:

    before_filter { |controller| return false if controller.params["stop_action"] }
  
  [Jeremy Kemper]

* Made the following methods public (was protected): url_for, controller_class_name, controller_name, action_name
  This makes it easier to write filters without cheating around the encapsulation with send.

* ActionController::Base#reset_session now sticks even if you access @session afterwards [Kent Sibilev]

* Improved the exception logging so the log file gets almost as much as in-browser debugging.

* Changed base class setup from AbstractTemplate/ERbTemplate to ActionView::Base. This change should be harmless unless you were
  accessing Action View directly in which case you now need to reference the Base class.\

* Added that render_collection_of_partials returns nil if the collection is empty. This makes showing a “no items” message easier. 
  For example: <%= render_collection_of_partials("message", @messages) || "No messages found." %> [Sam Stephenson]

* Added :month_before_year as an option to date_select to get the month select before the year. Especially useful for credit card forms.

* Added :add_month_numbers to select_month to get options like "3 - March".

* Removed Base.has_active_layout? as it couldn't answer the question without the instance. Use Base#active_layout instead.

* Removed redundant call to update on ActionController::Base#close_session [Andreas Schwarz]

* Fixed that DRb Store accidently started its own server (instead of just client) [Andreas]

* Fixed strip_links so it now works across multiple lines [Chad Fowler]

* Fixed the TemplateError exception to show the proper trace on to_s (useful for unit test debugging)

* Implemented class inheritable attributes without eval [Caio Chassot]

* Made TextHelper#concat accept binding as it would otherwise not work

* The FormOptionsHelper will now call to_s on the keys and values used to generate options


*0.8.5*

* Introduced passing of locally scoped variables between templates:

    You can pass local variables to sub templates by using a hash of with the variable 
    names as keys and the objects as values:
    
      <%= render "shared/header", { "headline" => "Welcome", "person" => person } %>
    
    These can now be accessed in shared/header with:
    
      Headline: <%= headline %>
      First name: <%= person.first_name %>
    
* Introduced the concept of partials as a certain type of sub templates:

    There's also a convenience method for rendering sub templates within the current 
    controller that depends on a single object (we call this kind of sub templates for 
    partials). It relies on the fact that partials should follow the naming convention
    of being prefixed with an underscore -- as to separate them from regular templates
    that could be rendered on their own. In the template for Advertiser#buy, we could have:
    
      <% for ad in @advertisements %>
        <%= render_partial "ad", ad %>
      <% end %>
    
    This would render "advertiser/_ad.rhtml" and pass the local variable +ad+ 
    for the template to display.
    
    == Rendering a collection of partials
    
    The example of partial use describes a familar pattern where a template needs
    to iterate over a array and render a sub template for each of the elements. 
    This pattern has been implemented as a single method that accepts an array and 
    renders a partial by the same name of as the elements contained within. So the 
    three-lined example in "Using partials" can be rewritten with a single line:
    
      <%= render_collection_of_partials "ad", @advertisements %>
    
    So this will render "advertiser/_ad.rhtml" and pass the local variable +ad+ for 
    the template to display.

* Improved send_file by allowing a wide range of options to be applied [Jeremy Kemper]:

    Sends the file by streaming it 4096 bytes at a time. This way the
    whole file doesn't need to be read into memory at once.  This makes
    it feasible to send even large files.
    
    Be careful to sanitize the path parameter if it coming from a web
    page.  send_file(@params['path'] allows a malicious user to
    download any file on your server.
    
    Options:
    * <tt>:filename</tt> - specifies the filename the browser will see.  
      Defaults to File.basename(path).
    * <tt>:type</tt> - specifies an HTTP content type.  
      Defaults to 'application/octet-stream'.
    * <tt>:disposition</tt> - specifies whether the file will be shown inline or downloaded.  
      Valid values are 'inline' and 'attachment' (default).
    * <tt>:buffer_size</tt> - specifies size (in bytes) of the buffer used to stream
      the file.  Defaults to 4096.
    
    The default Content-Type and Content-Disposition headers are
    set to download arbitrary binary files in as many browsers as
    possible.  IE versions 4, 5, 5.5, and 6 are all known to have
    a variety of quirks (especially when downloading over SSL).
    
    Simple download:
      send_file '/path/to.zip'
    
    Show a JPEG in browser:
      send_file '/path/to.jpeg', :type => 'image/jpeg', :disposition => 'inline'
    
    Read about the other Content-* HTTP headers if you'd like to
    provide the user with more information (such as Content-Description).
    http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11
    
    Also be aware that the document may be cached by proxies and browsers.
    The Pragma and Cache-Control headers declare how the file may be cached
    by intermediaries.  They default to require clients to validate with
    the server before releasing cached responses.  See
    http://www.mnot.net/cache_docs/ for an overview of web caching and
    http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9
    for the Cache-Control header spec.

* Added pluralize method to the TextHelper that makes it easy to get strings like "1 message", "3 messages"

* Added proper escaping for the rescues [Andreas Schwartz]

* Added proper escaping for the option and collection tags [Andreas Schwartz]

* Fixed NaN errors on benchmarking [Jim Weirich]

* Fixed query string parsing for URLs that use the escaped versions of & or ; as part of a key or value

* Fixed bug with custom Content-Type headers being in addition to rather than instead of the default header.
  (This bug didn't matter with neither CGI or mod_ruby, but FCGI exploded on it) [With help from Ara T. Howard]


*0.8.0*

* Added select, collection_select, and country_select to make it easier for Active Records to set attributes through
  drop-down lists of options. Example:
  
    <%= select "person", "gender", %w( Male Female ) %>
    
  ...would give the following:
  
    <select name="person[gender]" id="person_gender"><option>Male</option><option>Female</option></select>

* Added an option for getting multiple values on a single form name into an array instead of having the last one overwrite.
  This is especially useful for groups of checkboxes, which can now be written as:
  
    <input type="checkbox" name="rights[]" value="CREATE" />
    <input type="checkbox" name="rights[]" value="UPDATE" />
    <input type="checkbox" name="rights[]" value="DELETE" />
  
  ...and retrieved in the controller action with:
  
    @params["rights"] # => [ "CREATE", "UPDATE", "DELETE" ]
  
  The old behavior (where the last one wins, "DELETE" in the example) is still available. Just don't add "[]" to the 
  end of the name. [Scott Baron]
  
* Added send_file which uses the new render_text block acceptance to make it feasible to send large files.
  The files is sent with a bunch of voodoo HTTP headers required to get arbitrary files to download as 
  expected in as many browsers as possible (eg, IE hacks). Example:
  
  def play_movie
    send_file "/movies/that_movie.avi"
  end
  
  [Jeremy Kemper]

* render_text now accepts a block for deferred rendering. Useful for streaming large files, displaying 
  a “please wait” message during a complex search, etc. Streaming example:
  
    render_text do |response|
      File.open(path, 'rb') do |file|
        while buf = file.read(1024)
          print buf 
        end 
      end
    end
  
  [Jeremy Kemper]

* Added a new Tag Helper that can generate generic tags programmatically insted of through HTML. Example:
    
    tag("br", "clear" => "all") => <br clear="all" />
  
  ...that's usually not terribly interesting (unless you have a lot of options already in a hash), but it 
  gives way for more specific tags, like the new form tag:
  
    form_tag({ :controller => "weblog", :action => "update" }, { :multipart => "true", "style" => "width: 200px"}) =>
      <form action="/weblog/update" enctype="multipart/formdata" style="width: 200px">
    
  There's even a "pretty" version for people who don't like to open tags in code and close them in HTML:
  
    <%= start_form_tag :action => "update" %>
      # all the input fields
    <%= end_form_tag %>
  
  (end_form_tag just returns "</form>")

* The selected parameter in options_for_select may now also an array of values to be selected when 
  using a multiple select. Example:

    options_for_select([ "VISA", "Mastercard", "Discover" ], ["VISA", "Discover"]) =>
      <option selected>VISA</option>\n<option>Mastercard</option>\n<option selected>Discover</option>
      
  [Scott Baron]

* Changed the URL rewriter so controller_prefix and action_prefix can be used in isolation. You can now do:

    url_for(:controller_prefix => "clients")

  ...or:
  
    url_for(:action_prefix => "category/messages")

  Neither would have worked in isolation before (:controller_prefix required a :controller and :action_prefix required an :action)

* Started process of a cleaner separation between Action Controller and ERb-based Action Views by introducing an
  abstract base class for views. And Amita adapter could be fitted in more easily now.

* The date helper methods date_select and datetime_select now also use the field error wrapping 
  (div with class fieldWithErrors by default).

* The date helper methods date_select and datetime_select can now discard selects

* Added option on AbstractTemplate to specify a different field error wrapping. Example:

    ActionView::AbstractTemplate.field_error_proc = Proc.new do |html, instance|
      "<p>#{instance.method_name + instance.error_message}</p><div style='background-color: red'>#{html}</div>"
    end

  ...would give the following on a Post#title (text field) error:
  
    <p>Title can't be empty</p>
    <div style='background-color: red'>
      <input id="post_title" name="post[title]" size="30" type="text" value="Hello World" />
    </div>

* The UrlHelper methods url_for and link_to will now by default only return paths, not complete URIs.
  That should make it easier to fit a Rails application behind a proxy or load-balancer.
  You can overwrite this by passing :only_path => false as part of the options. [Suggested by U235]

* Fixed bug with having your own layout for use with scaffolding [Kevin Radloff]

* Fixed bug where redirect_to_path didn't append the port on non-standard ports [dhawkins]

* Scaffolding plays nicely with single-table inheritance (LoadErrors are caught) [Jeremy Kemper]

* Scaffolding plays nice with plural models like Category/categories [Jeremy Kemper]

* Fixed missing suffix appending in scaffolding [Kevin Radloff]


*0.7.9*

* The "form" method now present boolean fields from PostgreSQL as drop-down menu. [Scott]

* Scaffolding now automatically attempts to require the class that's being scaffolded.

* Scaffolding will use the current active layout, instead of its own, if one has been specified. Example:

    class WeblogController < ActionController::Base
      layout "layouts/weblog"
      scaffold :post
    end
  
  [Suggested by Scott]

* Changed url_for (and all the that drives, like redirect_to, link_to, link_for) so you can pass it a symbol instead of a hash.
  This symbol is a method reference which is then called to calculate the url. Example:
  
    class WeblogController < ActionController::Base
      def update
        # do some update
        redirect_to :dashboard_url
      end
      
      protected
        def dashboard_url
          if @project.active?
            url_for :controller => "project", :action => "dashboard"
          else
            url_for :controller => "account", :action => "dashboard"
          end
        end
    end
      
* Added default_url_options to specialize behavior for all url_for (and friends) calls:

    Overwrite to implement a number of default options that all url_for-based methods will use. 
    The default options should come in form of a hash, just like the one you would use for 
    url_for directly. Example:
    
      def default_url_options(options)
        { :controller_prefix => @project.active? ? "projects/" : "accounts/" }
      end
    
    As you can infer from the example, this is mostly useful for situations where you want to 
    centralize dynamic dissions about the urls as they stem from the business domain. Please note
    that any individual url_for call can always override the defaults set by this method.
    

* Changed url_for so that an "id" passed in the :params is not treated special. You need to use the dedicated :id to get 
  the special auto path-params treatment. Considering the url http://localhost:81/friends/list

    url_for(:action => "show", :params => { "id" => 5 })
      ...used to give http://localhost:81/friends/show/5
      ......now gives http://localhost:81/friends/show?id=5

    If you want the automated id behavior, do:

    url_for(:action => "show", :id => 5 )
      ....which gives http://localhost:81/friends/show/5


* Fixed problem with anchor being inserted before path parameters with url_for (and friends)


*0.7.8*

* Fixed session bug where you couldn't store any objects that didn't exist in the standard library 
  (such as Active Record objects).

* Added reset_session method for Action Controller objects to clear out all objects in the session.

* Fixed that exceptions raised during filters are now also caught by the default rescues

* Added new around_filter for doing before and after filtering with a single object [Florian Weber]:

    class WeblogController < ActionController::Base
      around_filter BenchmarkingFilter.new
      
      # Before this action is performed, BenchmarkingFilter#before(controller) is executed
      def index
      end
      # After this action has been performed, BenchmarkingFilter#after(controller) is executed
    end
    
    class BenchmarkingFilter
      def initialize
        @runtime
      end
      
      def before
        start_timer
      end
      
      def after
        stop_timer
        report_result
      end
    end

* Added the options for specifying a different name and id for the form helper methods than what is guessed [Florian Weber]:

    text_field "post", "title"
      ...just gives: <input id="post_title" name="post[title]" size="30" type="text" value="" />
      
    text_field "post", "title", "id" => "title_for_post", "name" => "first_post_title"
      ...can now give: <input id="title_for_post" name="first_post_title" size="30" type="text" value="" />

* Added DebugHelper with a single "debug" method for doing pretty dumps of objects in the view
  (now used in the default rescues to better present the contents of session and template variables)

* Added note to log about the templates rendered within layouts (before just the layout was shown)

* Fixed redirects on https setups [Andreas]

* Fixed scaffolding problem on the edit action when using :suffix => true [Scott]

* Fixed scaffolding problem where implementing list.rhtml wouldn't work for the index action

* URLs generated now uses &amp; instead of just & so pages using it can validate with W3C [Spotted by Andreas]


*0.7.7*

* Fixed bug in CGI extension that prevented multipart forms from working


*0.7.6*

* Included ERB::Util so all templates can easily escape HTML content with <%=h @person.content %>

* All requests are now considered local by default, so everyone will be exposed to detailed debugging screens on errors.
  When the application is ready to go public, set ActionController::Base.consider_all_requests_local to false, 
  and implement the protected method local_request? in the controller to determine when debugging screens should be shown.

* Fixed three bugs with the url_for/redirect_to/link_to handling. Considering the url http://localhost:81/friends/show/1

    url_for(:action => "list")
      ...used to give http://localhost:81/friends/list/1
      ......now gives http://localhost:81/friends/list
    
    url_for(:controller => "friends", :action => "destroy", :id => 5)
      ...used to give http://localhost:81/friends/destroy
      ......now gives http://localhost:81/friends/destroy/5

  Considering the url http://localhost:81/teachers/show/t

    url_for(:action => "list", :id => 5)
      ...used to give http://localhost:81/5eachers/list/t
      ......now gives http://localhost:81/teachers/list/5
  
  [Reported by David Morton & Radsaq]

* Logs exception to logfile in addition to showing them for local requests

* Protects the eruby load behind a begin/rescue block. eRuby is not required to run ActionController.

* Fixed install.rb to also install clean_logger and the templates

* Added ActiveRecordStore as a session option. Read more in lib/action_controller/session/active_record_store.rb [Tim Bates]

* Change license to MIT License (and included license file in package)

* Application error page now returns status code 500 instead of 200

* Fixed using Procs as layout handlers [Florian Weber]

* Fixed bug with using redirects ports other than 80

* Added index method that calls list on scaffolding


*0.7.5*

* First public release