CHANGELOG 114.6 KB
Newer Older
1 2
*SVN*

3 4
* Fixed that default image extension was not appended when using a full URL with AssetTagHelper#image_tag #4032, #3728 [rubyonrails@beautifulpixel.com]

5 6
* Added that page caching will only happen if the response code is less than 400 #4033 [g.bucher@teti.ch]

7 8
* Add ActionController::IntegrationTest to allow high-level testing of the way the controllers and routes all work together [Jamis Buck]

9 10
* Added support to AssetTagHelper#javascript_include_tag for having :defaults appear anywhere in the list, so you can now make one call ala javascript_include_tag(:defaults, "my_scripts") or javascript_include_tag("my_scripts", :defaults) depending on how you want the load order #3506 [Bob Silva]

11 12
* Added support for visual effects scoped queues to the visual_effect helper #3530 [Abdur-Rahman Advany]

13 14
* Added .rxml (and any non-rhtml template, really) supportfor CaptureHelper#content_for and CaptureHelper#capture #3287 [Brian Takita]

15 16 17 18 19 20
* Added script.aculo.us drag and drop helpers to RJS [Thomas Fuchs]. Examples:

    page.draggable 'product-1'
    page.drop_receiving 'wastebasket', :url => { :action => 'delete' }
    page.sortable 'todolist', :url => { action => 'change_order' }

21 22
* Fixed that form elements would strip the trailing [] from the first parameter #3545 [ruby@bobsilva.com]

23 24
* During controller resolution, update the NameError suppression to check for the expected constant. [Nicholas Seckar]

25 26
* Update script.aculo.us to V1.5.3 [Thomas Fuchs]

27 28
* Added various InPlaceEditor options, #3746, #3891, #3896, #3906 [Bill Burcham, ruairi, sl33p3r]

29 30
* Added :count option to pagination that'll make it possible for the ActiveRecord::Base.count call to using something else than * for the count. Especially important for count queries using DISTINCT #3839 [skaes]

31 32
* Update script.aculo.us to V1.5.2 [Thomas Fuchs]

33 34 35 36 37 38 39 40 41 42
* Added element and collection proxies to RJS [DHH]. Examples:

    page['blank_slate']                  # => $('blank_slate');
    page['blank_slate'].show             # => $('blank_slate').show();
    page['blank_slate'].show('first').up # => $('blank_slate').show('first').up();
    
    page.select('p')                      # => $$('p');
    page.select('p.welcome b').first      # => $$('p.welcome b').first();
    page.select('p.welcome b').first.hide # => $$('p.welcome b').first().hide();

43
* Add JavaScriptGenerator#replace for replacing an element's "outer HTML". #3246 [tom@craz8.com, Sam Stephenson]
44

45 46 47 48
* Remove over-engineered form_for code for a leaner implementation. [Nicholas Seckar]

* Document form_for's :html option. [Nicholas Seckar]

49 50
* Major components cleanup and speedup.  #3527 [Stefan Kaes]

51 52 53 54 55 56
* Fix problems with pagination and :include.  [Kevin Clark]

* Add ActiveRecordTestCase for testing AR integration. [Kevin Clark]

* Add Unit Tests for pagination [Kevin Clark]

57 58
* Add :html option for specifying form tag options in form_for. [Sam Stephenson]

59 60
* Replace dubious controller parent class in filter docs. #3655, #3722  [info@rhalff.com, eigentone@gmail.com]

61 62
* Don't interpret the :value option on text_area as an html attribute. Set the text_area's value. #3752 [gabriel@gironda.org]

63 64
* Fix remote_form_for creates a non-ajax form. [Rick Olson]

65 66
* Don't let arbitrary classes match as controllers -- a potentially dangerous bug. [Nicholas Seckar]

67 68
* Fix Routing tests. Fix routing where failing to match a controller would prevent the rest of routes from being attempted. [Nicholas Seckar]

69 70
* Add :builder => option to form_for and friends. [Nicholas Seckar, Rick Olson]

71 72 73
* Fix controller resolution to avoid accidentally inheriting a controller from a parent module. [Nicholas Seckar]

* Set sweeper's @controller to nil after a request so that the controller may be collected between requests. [Nicholas Seckar]
74

75 76
* Subclasses of ActionController::Caching::Sweeper should be Reloadable. [Rick Olson]

77 78
* Document the :xhr option for verifications. #3666 [leeo]

79 80
* Added :only and :except controls to skip_before/after_filter just like for when you add filters [DHH]

81 82
* Ensure that the instance variables are copied to the template when performing render :update. [Nicholas Seckar]

83 84 85 86 87 88 89 90 91 92 93 94 95 96
* Add the ability to call JavaScriptGenerator methods from helpers called in update blocks. [Sam Stephenson]  Example:
  module ApplicationHelper
    def update_time
      page.replace_html 'time', Time.now.to_s(:db)
      page.visual_effect :highlight, 'time'
    end
  end

  class UserController < ApplicationController
    def poll
      render :update { |page| page.update_time }
    end
  end

97 98
* Add render(:update) to ActionView::Base. [Sam Stephenson]

99 100
* Fix render(:update) to not render layouts. [Sam Stephenson]

101 102
* Fixed that SSL would not correctly be detected when running lighttpd/fcgi behind lighttpd w/mod_proxy #3548 [stephen_purcell@yahoo.com]

103 104
* Added the possibility to specify atomatic expiration for the memcachd session container #3571 [Stefan Kaes]

105 106
* Change layout discovery to take into account the change in semantics with File.join and nil arguments. [Marcel Molina Jr.]

107 108
* Raise a RedirectBackError if redirect_to :back is called when there's no HTTP_REFERER defined #3049 [kevin.clark@gmail.com]

109 110
* Treat timestamps like datetimes for scaffolding purposes #3388 [Maik Schmidt]

111 112
* Fix IE bug with link_to "something", :post => true #3443 [Justin Palmer]

113 114
* Extract Test::Unit::TestCase test process behavior into an ActionController::TestProcess module. [Sam Stephenson]

115 116
* Pass along blocks from render_to_string to render. [Sam Stephenson]

117 118 119 120 121 122 123 124 125 126
* Add render :update for inline RJS. [Sam Stephenson]  Example:
  class UserController < ApplicationController
    def refresh
      render :update do |page|
        page.replace_html  'user_list', :partial => 'user', :collection => @users
        page.visual_effect :highlight, 'user_list'
      end
    end
  end

127 128
* allow nil objects for error_messages_for [Michael Koziarski]

129 130
* Refactor human_size to exclude decimal place if it is zero. [Marcel Molina Jr.]

131
* Update to Prototype 1.5.0_pre0 [Sam Stephenson]
S
Sam Stephenson 已提交
132

133 134
* Automatically discover layouts when a controller is namespaced. #2199, #3424 [me@jonnii.com rails@jeffcole.net Marcel Molina Jr.]

135 136
* Add support for multiple proxy servers to CgiRequest#host [gaetanot@comcast.net]

137 138
* Documentation typo fix. #2367 [Blair Zajac]

139 140
* Remove Upload Progress. #2871 [Sean Treadway]

141
* Fix typo in function name mapping in auto_complete_field. #2929 #3446 [doppler@gmail.com phil.ross@gmail.com]
142

143 144
*  Allow auto-discovery of third party template library layouts. [Marcel Molina Jr.]

145 146
* Have the form builder output radio button, not check box, when calling the radio button helper. #3331 [LouisStAmour@gmail.com]

147 148 149 150
* Added assignment of the Autocompleter object created by JavaScriptMacroHelper#auto_complete_field to a local javascript variables [DHH]

* Added :on option for PrototypeHelper#observe_field that allows you to specify a different callback hook to have the observer trigger on [DHH]

151 152
* Added JavaScriptHelper#button_to_function that works just like JavaScriptHelper#link_to_function but uses a button instead of a href [DHH]

153 154
* Added that JavaScriptHelper#link_to_function will honor existing :onclick definitions when adding the function call [DHH]

155 156
* Added :disable_with option to FormTagHelper#submit_tag to allow for easily disabled submit buttons with different text [DHH]

157 158
* Make auto_link handle nil by returning quickly if blank? [Scott Barron]

159 160
* Make auto_link match urls with a port number specified. [Marcel Molina Jr.]

161 162
* Added support for toggling visual effects to ScriptaculousHelper::visual_effect, #3323. [Thomas Fuchs]

163 164
* Update to script.aculo.us to 1.5.0 rev. 3343 [Thomas Fuchs]

165 166 167 168 169 170 171 172
* Added :select option for JavaScriptMacroHelper#auto_complete_field that makes it easier to only use part of the auto-complete suggestion as the value for insertion [Thomas Fuchs]

* Added delayed execution of Javascript from within RJS #3264 [devslashnull@gmail.com]. Example:

    page.delay(20) do
      page.visual_effect :fade, 'notice'
    end

173 174
* Add session ID to default logging, but remove the verbose description of every step [DHH]

175 176 177 178 179 180 181 182
* Add the following RJS methods: [Sam Stephenson]
  
    * alert - Displays an alert() dialog
    * redirect_to - Changes window.location.href to simulate a browser redirect
    * call - Calls a JavaScript function
    * assign - Assigns to a JavaScript variable
    * << - Inserts an arbitrary JavaScript string

N
Nicholas Seckar 已提交
183 184
* Fix incorrect documentation for form_for [Nicholas Seckar]

185 186
* Don't include a layout when rendering an rjs template using render's :template option. [Marcel Molina Jr.]

187 188
* Update to script.aculo.us 1.5.0 final (equals 1.5.0_rc6) [Thomas Fuchs]

S
Sam Stephenson 已提交
189 190
* Update to Prototype 1.4.0 final [Sam Stephenson]

191 192
* Added form_remote_for (form_for meets form_remote_tag) [DHH]

T
Thomas Fuchs 已提交
193 194
* Update to script.aculo.us 1.5.0_rc6

195 196
* More robust relative url root discovery for SCGI compatibility.  This solves the 'SCGI routes problem' -- you no longer need to prefix all your routes with the name of the SCGI mountpoint.  #3070 [Dave Ringoen]

197 198
* Fix docs for text_area_tag. #3083. [Christopher Cotton]

199 200
* Change form_for and fields_for method signatures to take object name and object as separate arguments rather than as a Hash. [DHH]

201 202
* Introduce :selected option to the select helper.  Allows you to specify a selection other than the current value of object.method.  Specify :selected => nil to leave all options unselected.  #2991 [Jonathan Viney <jonathan@bluewire.net.nz>]

203 204
* Initialize @optional in routing code to avoid warnings about uninitialized access to an instance variable. [Nicholas Seckar]

205 206
* Make ActionController's render honor the :locals option when rendering a :file. #1665. [Emanuel Borsboom, Marcel Molina Jr.]

207 208
* Allow assert_tag(:conditions) to match the empty string when a tag has no children. Closes #2959. [Jamis Buck]

209 210
* Update html-scanner to handle CDATA sections better. Closes #2970. [Jamis Buck]

211 212
* Don't put flash in session if sessions are disabled.  [Jeremy Kemper]

213 214
* Strip out trailing &_= for raw post bodies. Closes #2868. [Sam Stephenson]

215 216
* Pass multiple arguments to Element.show and Element.hide in JavaScriptGenerator instead of using iterators. [Sam Stephenson]

217 218
* Improve expire_fragment documentation.  #2966 [court3nay@gmail.com]

219 220
* Correct docs for automatic layout assignment. #2610. [Charles M. Gerungan]

221 222
* Always create new AR sessions rather than trying too hard to avoid database traffic.  #2731 [Jeremy Kemper]

223 224
* Update to Prototype 1.4.0_rc4. Closes #2943 (old Array.prototype.reverse behavior can be obtained by passing false as an argument). [Sam Stephenson]

225 226
* Use Element.update('id', 'html') instead of $('id').innerHTML = 'html' in JavaScriptGenerator#replace_html so that script tags are evaluated. [Sam Stephenson]

227 228
* Make rjs templates always implicitly skip out on layouts. [Marcel Molina Jr.]

229 230
* Correct length for the truncate text helper.  #2913 [Stefan Kaes]

231 232
* Update to Prototype 1.4.0_rc3. Closes #1893, #2505, #2550, #2748, #2783. [Sam Stephenson]

233 234
* Add support for new rjs templates which wrap an update_page block. [Marcel Molina Jr.]

235 236
* Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]

237 238
* Correct time_zone_options_for_select docs.  #2892 [pudeyo@rpi.com]

239 240
* Remove the unused, slow response_dump and session_dump variables from error pages.  #1222 [lmarlow@yahoo.com]

241
* Performance tweaks: use Set instead of Array to speed up prototype helper include? calls.  Avoid logging code if logger is nil.  Inline commonly-called template presence checks.  #2880, #2881, #2882, #2883 [Stefan Kaes]
242

243 244
* MemCache store may be given multiple addresses.  #2869 [Ryan Carver <ryan@fivesevensix.com>]

245 246
* Handle cookie parsing irregularity for certain Nokia phones.  #2530 [zaitzow@gmail.com]

247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
* Added PrototypeHelper::JavaScriptGenerator and PrototypeHelper#update_page for easily modifying multiple elements in an Ajax response. [Sam Stephenson]  Example:

    update_page do |page|
      page.insert_html :bottom, 'list', '<li>Last item</li>'
      page.visual_effect :highlight, 'list'
      page.hide 'status-indicator', 'cancel-link'
    end
  
  generates the following JavaScript:
  
    new Insertion.Bottom("list", "<li>Last item</li>");
    new Effect.Highlight("list");
    ["status-indicator", "cancel-link"].each(Element.hide);
  
* Refactored JavaScriptHelper into PrototypeHelper and ScriptaculousHelper [Sam Stephenson]

263 264
* Update to latest script.aculo.us version (as of [3031])

265 266
* Updated docs for in_place_editor, fixes a couple bugs and offers extended support for external controls [Justin Palmer]

267 268
* Update documentation for render :file.  #2858 [Tom Werner]

269 270
* Only include builtin filters whose filenames match /^[a-z][a-z_]*_helper.rb$/ to avoid including operating system metadata such as ._foo_helper.rb.  #2855 [court3nay@gmail.com]

271 272 273 274 275 276 277 278 279
* Added FormHelper#form_for and FormHelper#fields_for that makes it easier to work with forms for single objects also if they don't reside in instance variables [DHH]. Examples:

  <% form_for :person => @person, :url => { :action => "update" } do |f| %>
    First name: <%= f.text_field :first_name %>
    Last name : <%= f.text_field :last_name %>
    Biography : <%= f.text_area :biography %>
    Admin?    : <%= f.check_box :admin %>
  <% end %>

D
David Heinemeier Hansson 已提交
280
  <% form_for :person => person, :url => { :action => "update" } do |person_form| %>
281 282 283
    First name: <%= person_form.text_field :first_name %>
    Last name : <%= person_form.text_field :last_name %>
    
D
David Heinemeier Hansson 已提交
284
    <% fields_for :permission => person.permission do |permission_fields| %>
285 286 287 288
      Admin?  : <%= permission_fields.check_box :admin %>
    <% end %>
  <% end %>
  
289 290
* options_for_select allows any objects which respond_to? :first and :last rather than restricting to Array and Range.  #2824 [Jacob Robbins <jrobbins@cmj.com>, Jeremy Kemper]

291 292 293
* The auto_link text helper accepts an optional block to format the link text for each url and email address.  Example: auto_link(post.body) { |text| truncate(text, 10) }  [Jeremy Kemper]

* assert_tag uses exact matches for string conditions, instead of partial matches. Use regex to do partial matches. #2799 [Jamis Buck]
294

295 296
* CGI::Session::ActiveRecordStore.data_column_name = 'foobar' to use a different session data column than the 'data' default.  [nbpwie102@sneakemail.com]

297 298 299 300 301
* Do not raise an exception when default helper is missing; log a debug message instead.  It's nice to delete empty helpers.  [Jeremy Kemper]

* Controllers with acronyms in their names (e.g. PDFController) require the correct default helper (PDFHelper in file pdf_helper.rb).  #2262 [jeff@opendbms.com]


302
*1.11.0* (November 7th, 2005)
303

304 305
* Added request as instance method to views, so you can do <%= request.env["HTTP_REFERER"] %>, just like you can already access response, session, and the likes [DHH]

306 307
* Fix conflict with assert_tag and Glue gem #2255 [david.felstead@gmail.com]

308 309
* Add documentation to assert_tag indicating that it only works with well-formed XHTML #1937, #2570 [Jamis Buck]

S
Sam Stephenson 已提交
310 311
* Added action_pack.rb stub so that ActionPack::Version loads properly [Sam Stephenson]

312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
* Added short-hand to assert_tag so assert_tag :tag => "span" can be written as assert_tag "span" [DHH]

* Added skip_before_filter/skip_after_filter for easier control of the filter chain in inheritance hierachies [DHH]. Example:

    class ApplicationController < ActionController::Base
      before_filter :authenticate
    end
    
    class WeblogController < ApplicationController
      # will run the :authenticate filter
    end
    
    class SignupController < ActionController::Base
      # will not run the :authenticate filter
      skip_before_filter :authenticate
    end

* Added redirect_to :back as a short-hand for redirect_to(request.env["HTTP_REFERER"]) [DHH]
330

331 332
* Change javascript_include_tag :defaults to not use script.aculo.us loader, which facilitates the use of plugins for future script.aculo.us and third party javascript extensions, and provide register_javascript_include_default for plugins to specify additional JavaScript files to load. Removed slider.js and builder.js from actionpack. [Thomas Fuchs]

333 334
* Fix problem where redirecting components can cause an infinite loop [Rick Olson]

335 336
* Added support for the queue option on visual_effect [Thomas Fuchs]

T
Thomas Fuchs 已提交
337 338
* Update script.aculo.us to V1.5_rc4 [Thomas Fuchs]

339 340
* Fix that render :text didn't interpolate instance variables #2629, #2626 [skaes]

341 342
* Fix line number detection and escape RAILS_ROOT in backtrace Regexp [Nicholas Seckar]

343 344
* Fixed document.getElementsByClassName from Prototype to be speedy again [Sam Stephenson]

345 346
* Recognize ./#{RAILS_ROOT} as RAILS_ROOT in error traces [Nicholas Seckar]

347
* Remove ARStore session fingerprinting [Nicholas Seckar]
348

349
* Fix obscure bug in ARStore [Nicholas Seckar]
350

351 352
* Added TextHelper#strip_tags for removing HTML tags from a string (using HTMLTokenizer) #2229 [marcin@junkheap.net]

353 354 355
* Added a reader for flash.now, so it's possible to do stuff like flash.now[:alert] ||= 'New if not set' #2422 [Caio Chassot]


356
*1.10.2* (October 26th, 2005)
J
Jamis Buck 已提交
357

358 359
* Reset template variables after using render_to_string [skaes@web.de]

360 361
* Expose the session model backing CGI::Session

J
Jamis Buck 已提交
362 363
* Abbreviate RAILS_ROOT in traces

364

D
David Heinemeier Hansson 已提交
365 366
*1.10.1* (October 19th, 2005)

N
Nicholas Seckar 已提交
367 368 369 370
* Update error trace templates [Nicholas Seckar]

* Stop showing generated routing code in application traces [Nicholas Seckar]

D
David Heinemeier Hansson 已提交
371

372
*1.10.0* (October 16th, 2005)
373

374 375
* Make string-keys locals assigns optional. Add documentation describing depreciated state [skaes@web.de]

376 377
* Improve line number detection for template errors [Nicholas Seckar]

378 379
* Update/clean up documentation (rdoc)

S
Sam Stephenson 已提交
380 381
* Upgrade to Prototype 1.4.0_rc0 [Sam Stephenson]

T
Tobias Lütke 已提交
382 383
* Added assert_vaild. Reports the proper AR error messages as fail message when the passed record is invalid [Tobias Luetke]

384 385
* Add temporary support for passing locals to render using string keys [Nicholas Seckar]

386 387
* Clean up error pages by providing better backtraces [Nicholas Seckar]

388 389
* Raise an exception if an attempt is made to insert more session data into the ActiveRecordStore data column than the column can hold. #2234.  [justin@textdrive.com]

390 391
* Removed references to assertions.rb from actionpack assert's backtraces. Makes error reports in functional unit tests much less noisy. [Tobias Luetke]

392 393
* Updated and clarified documentation for JavaScriptHelper to be more concise about the various options for including the JavaScript libs. [Thomas Fuchs]

N
Nicholas Seckar 已提交
394 395
* Hide "Retry with Breakpoint" button on error pages until feature is functional. [DHH]

396 397
* Fix Request#host_with_port to use the standard port when Rails is behind a proxy. [Nicholas Seckar]

398 399
* Escape query strings in the href attribute of URLs created by url_helper.  #2333 [Michael Schuerig <michael@schuerig.de>]

400 401
* Improved line number reporting for template errors [Nicholas Seckar]

402 403
* Added :locals support for render :inline #2463 [mdabney@cavoksolutions.com]

404 405
* Unset the X-Requested-With header when using the xhr wrapper in functional tests so that future requests aren't accidentally xhr'ed #2352 [me@julik.nl, Sam Stephenson]

406 407
* Unescape paths before writing cache to file system. #1877. [Damien Pollet]

408 409
* Wrap javascript_tag contents in a CDATA section and add a cdata_section method to TagHelper #1691 [Michael Schuerig, Sam Stephenson]

410 411
* Misc doc fixes (typos/grammar/etc). #2445. [coffee2code]

412 413
* Speed improvement for session_options. #2287. [skaes@web.de]

414 415
* Make cacheing binary files friendly with Windows. #1975. [Rich Olson]

416 417
* Convert boolean form options form the tag_helper. #809. [Michael Schuerig <michael@schuerig.de>]

418 419
* Fixed that an instance variable with the same name as a partial should be implicitly passed as the partial :object #2269 [court3nay]

420 421
* Update Prototype to V1.4.0_pre11, script.aculo.us to [2502] [Thomas Fuchs]

422 423
* Make assert_tag :children count appropriately. Closes #2181. [jamie@bravenet.com]

424 425
* Forced newer versions of RedCloth to use hard breaks [DHH]

426 427
* Added new scriptaculous options for auto_complete_field #2343 [m.stienstra@fngtps.com]

428 429
* Don't prepend the asset host if the string is already a fully-qualified URL

T
Thomas Fuchs 已提交
430 431
* Updated to script.aculo.us V1.5.0_rc2 and Prototype to V1.4.0_pre7 [Thomas Fuchs]

432 433
* Undo condition change made in [2345] to prevent normal parameters arriving as StringIO.

434 435
* Tolerate consecutive delimiters in query parameters.  #2295 [darashi@gmail.com]

436 437
* Streamline render process, code cleaning. Closes #2294. [skae]

438 439
* Keep flash after components are rendered. #2291 [Rick Olson, Scott]

440 441
* Shorten IE file upload path to filename only to match other browsers.  #1507 [court3nay@gmail.com]

442
* Fix open/save dialog in IE not opening files send with send_file/send_data, #2279 [Thomas Fuchs]
443

444 445 446
* Fixed that auto_discovery_link_tag couldn't take a string as the URL [DHH]

* Fixed problem with send_file and WEBrick using stdout #1812 [DHH]
447

448 449 450 451
* Optimized tag_options to not sort keys, which is no longer necessary when assert_dom_equal and friend is available #1995 [skae]

* Added assert_dom_equal and assert_dom_not_equal to compare tags generated by the helpers in an order-indifferent manner #1995 [skae]

452 453
* Fixed that Request#domain caused an exception if the domain header wasn't set in the original http request #1795 [Michael Koziarski]

454 455
* Make the truncate() helper multi-byte safe (assuming $KCODE has been set to something other than "NONE") #2103

N
Nicholas Seckar 已提交
456 457
* Add routing tests from #1945 [ben@groovie.org]

458 459
* Add a routing test case covering #2101 [Nicholas Seckar]

460 461
* Cache relative_url_root for all webservers, not just Apache #2193 [skae]

462 463
* Speed up cookie use by decreasing string copying #2194 [skae]

464 465
* Fixed access to "Host" header with requests made by crappy old HTTP/1.0 clients #2124 [Marcel Molina]

466 467 468 469 470 471 472 473 474
* Added easy assignment of fragment cache store through use of symbols for included stores (old way still works too)

  Before:
    ActionController::Base.fragment_cache_store = 
      ActionController::Base::Caching::Fragments::FileStore.new("/path/to/cache/directory")

  After:
    ActionController::Base.fragment_cache_store = :file_store, "/path/to/cache/directory"

475 476
* Added ActionController::Base.session_store=, session_store, and session_options to make it easier to tweak the session options (instead of going straight to ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS)

477 478
* Added TextHelper#cycle to cycle over an array of values on each hit (useful for alternating row colors etc) #2154 [dave-ml@dribin.org]

479 480
* Ensure that request.path never returns nil. Closes #1675 [Nicholas Seckar]

481 482
* Add ability to specify Route Regexps for controllers. Closes #1917. [Sebastian Kanthak]

483 484
* Provide Named Route's hash methods as helper methods. Closes #1744. [Nicholas Seckar, Steve Purcell]

485 486
* Added :multipart option to ActiveRecordHelper#form to make it possible to add file input fields #2034 [jstirk@oobleyboo.com]

487 488 489 490
* Moved auto-completion and in-place editing into the Macros module and their helper counterparts into JavaScriptMacrosHelper

* Added in-place editing support in the spirit of auto complete with ActionController::Base.in_place_edit_for, JavascriptHelper#in_place_editor_field, and Javascript support from script.aculo.us #2038 [Jon Tirsen]

491 492
* Added :disabled option to all data selects that'll make the elements inaccessible for change #2167, #253 [eigentone]

493 494
* Fixed that TextHelper#auto_link_urls would include punctuation in the links #2166, #1671 [eigentone]

495 496
* Fixed that number_to_currency(1000, {:precision => 0})) should return "$1,000", instead of "$1,000." #2122 [sd@notso.net]

497 498 499 500 501 502 503 504 505
* Allow link_to_remote to use any DOM-element as the parent of the form elements to be submitted #2137 [erik@ruby-lang.nl]. Example:

    <tr id="row023">
      <td><input name="foo"/></td>
      <td><input name="bar"/></td>
      <td><%= link_to_remote 'Save', :update => "row023",
            :submit => "row023", :url => {:action => 'save_row'} %></td>
    </tr>

506 507
* Fixed that render :partial would fail when :object was a Hash (due to backwards compatibility issues) #2148 [Sam Stephenson]

508 509
* Fixed JavascriptHelper#auto_complete_for to only include unique items #2153 [Thomas Fuchs]

510 511
* Fixed all AssetHelper methods to work with relative paths, such that javascript_include_tag('stdlib/standard') will look in /javascripts/stdlib/standard instead of '/stdlib/standard/' #1963

512 513
* Avoid extending view instance with helper modules each request. Closes #1979

514 515
* Performance improvements to CGI methods. Closes #1980 [Skaes]

516 517
* Added :post option to UrlHelper#link_to that makes it possible to do POST requests through normal ahref links using Javascript

518 519
* Fixed overwrite_params

520 521
* Added ActionController::Base.benchmark and ActionController::Base.silence to allow for easy benchmarking and turning off the log

522 523
* Updated vendor copy of html-scanner to support better xml parsing

524 525 526 527 528
* Added :popup option to UrlHelper#link_to #1996 [gabriel.gironda@gmail.com]. Examples:

    link_to "Help", { :action => "help" }, :popup => true
    link_to "Busy loop", { :action => "busy" }, :popup => ['new_window', 'height=300,width=600']

529 530
* Drop trailing \000 if present on RAW_POST_DATA (works around bug in Safari Ajax implementation) #918

531 532
* Fix observe_field to fall back to event-based observation if frequency <= 0 #1916 [michael@schubert.cx]

533 534
* Allow use of the :with option for submit_to_remote #1936 [jon@instance-design.co.uk]

535 536
* AbstractRequest#domain returns nil when host is an ip address #2012 [kevin.clark@gmail.com]

537 538
* ActionController documentation update #2051 [fbeausoleil@ftml.net]

539 540
* Yield @content_for_ variables to templates #2058 [Sam Stephenson]

541 542
* Make rendering an empty partial collection behave like :nothing => true #2080 [Sam Stephenson]

543 544
* Add option to specify the singular name used by pagination.

545 546
* Use string key to obtain action value. Allows indifferent hashes to be disabled.

547 548
* Added ActionView::Base.cache_template_loading back.

549 550
* Rewrote compiled templates to decrease code complexity. Removed template load caching in favour of compiled caching. Fixed template error messages. [Nicholas Seckar]

N
Nicholas Seckar 已提交
551 552
* Fix Routing to handle :some_param => nil better. [Nicholas Seckar, Luminas]

553 554
* Add support for :include with pagination (subject to existing constraints for :include with :limit and :offset) #1478 [michael@schubert.cx]

555 556
* Prevent the benchmark module from blowing up if a non-HTTP/1.1 request is processed

557 558
* Added :use_short_month option to select_month helper to show month names as abbreviations

559 560
* Make link_to escape the javascript in the confirm option #1964 [nicolas.pouillard@gmail.com]

561 562
* Make assert_redirected_to properly check URL's passed as strings #1910 [Scott Barron]

563 564
* Make sure :layout => false is always used when rendering inside a layout

565 566
* Use raise instead of assert_not_nil in Test::Unit::TestCase#process to ensure that the test variables (controller, request, response) have been set

567 568
* Make sure assigns are built for every request when testing #1866

569 570
* Allow remote_addr to be queried on TestRequest #1668

571 572
* Fixed bug when a partial render was passing a local with the same name as the partial

573
* Improved performance of test app req/sec with ~10% refactoring the render method #1823 [Stefan Kaes]
574

575
* Improved performance of test app req/sec with 5-30% through a series of Action Pack optimizations #1811 [Stefan Kaes]
576

577 578
* Changed caching/expiration/hit to report using the DEBUG log level and errors to use the ERROR log level instead of both using INFO

579 580
* Added support for per-action session management #1763

581
* Improved rendering speed on complicated templates by up to 100% (the more complex the templates, the higher the speedup) #1234 [Stephan Kaes]. This did necessasitate a change to the internals of ActionView#render_template that now has four parameters. Developers of custom view handlers (like Amrita) need to update for that.
582

583 584
* Added options hash as third argument to FormHelper#input, so you can do input('person', 'zip', :size=>10) #1719 [jeremye@bsa.ca.gov]

585 586
* Added Base#expires_in(seconds)/Base#expires_now to control HTTP content cache headers #1755 [Thomas Fuchs]

587 588
* Fixed line number reporting for Builder template errors #1753 [piotr]

589 590
* Fixed assert_routing so that testing controllers in modules works as expected [Nicholas Seckar, Rick Olson]

591 592
* Fixed bug with :success/:failure callbacks for the JavaScriptHelper methods #1730 [court3nay/Thomas Fuchs]

593 594
* Added named_route method to RouteSet instances so that RouteSet instance methods do not prevent certain names from being used. [Nicholas Seckar]

595 596
* Fixed routes so that routes which do not specify :action in the path or in the requirements have a default of :action => 'index', In addition, fixed url generation so that :action => 'index' does not need to be provided for such urls. [Nicholas Seckar, Markjuh]

D
David Heinemeier Hansson 已提交
597 598
* Worked around a Safari bug where it wouldn't pass headers through if the response was zero length by having render :nothing return ' ' instead of ''

599 600
* Fixed Request#subdomains to handle "foo.foo.com" correctly

D
David Heinemeier Hansson 已提交
601

602
*1.9.1* (11 July, 2005)
603

604 605
* Fixed that auto_complete_for didn't force the input string to lower case even as the db comparison was

606 607
* Fixed that Action View should always use the included Builder, never attempt to require the gem, to ensure compatibility

608 609
* Added that nil options are not included in tags, so tag("p", :ignore => nil) now returns <p /> not <p ignore="" />  but that tag("p", :ignore => "") still includes it #1465 [michael@schuerig.de]

610 611
* Fixed that UrlHelper#link_to_unless/link_to_if used html_escape on the name if no link was to be applied. This is unnecessary and breaks its use with images #1649 [joergd@pobox.com]

612 613
* Improved error message for DoubleRenderError

614 615
* Fixed routing to allow for testing of *path components #1650 [Nicholas Seckar]

616 617
* Added :handle as an option to sortable_element to restrict the drag handle to a given class #1642 [thejohnny]

618
* Added a bunch of script.aculo.us features #1644, #1677, #1695 [Thomas Fuchs]
619 620 621 622 623 624 625 626 627
  * Effect.ScrollTo, to smoothly scroll the page to an element
  * Better Firefox flickering handling on SlideUp/SlideDown
  * Removed a possible memory leak in IE with draggables
  * Added support for cancelling dragging my hitting ESC
  * Added capability to remove draggables/droppables and redeclare sortables in dragdrop.js (this makes it possible to call sortable_element on the same element more than once, e.g. in AJAX returns that modify the sortable element. all current sortable 'stuff' on the element will be discarded and the sortable will be rebuilt)
  * Always reset background color on Effect.Highlight; this make change backwards-compatibility, to be sure include style="background-color:(target-color)" on your elements or else elements will fall back to their CSS rules (which is a good thing in most circumstances)
  * Removed circular references from element to prevent memory leaks (still not completely gone in IE)
  * Changes to class extension in effects.js
  * Make Effect.Highlight restore any previously set background color when finishing (makes effect work with CSS classes that set a background color)
628 629 630 631 632
  * Fixed myriads of memory leaks in IE and Gecko-based browsers [David Zülke]
  * Added incremental and local autocompleting and loads of documentation to controls.js [Ivan Krstic]
  * Extended the auto_complete_field helper to accept tokens option
  * Changed object extension mechanism to favor Object.extend to make script.aculo.us easily adaptable to support 3rd party libs like IE7.js [David Zülke]
  
633 634
* Fixed that named routes didn't use the default values for action and possible other parameters #1534 [Nicholas Seckar]

635 636
* Fixed JavascriptHelper#visual_effect to use camelize such that :blind_up will work #1639 [pelletierm@eastmedia.net]

637 638 639
* Fixed that a SessionRestoreError was thrown if a model object was placed in the session that wasn't available to all controllers. This means that it's no longer necessary to use the 'model :post' work-around in ApplicationController to have a Post model in your session.


640 641
*1.9.0* (6 July, 2005)

642 643
* Added logging of the request URI in the benchmark statement (makes it easy to grep for slow actions)

644 645
* Added javascript_include_tag :defaults shortcut that'll include all the default javascripts included with Action Pack (prototype, effects, controls, dragdrop)

D
David Heinemeier Hansson 已提交
646
* Cache several controller variables that are expensive to calculate #1229 [skaes@web.de]
647

D
David Heinemeier Hansson 已提交
648
* The session class backing CGI::Session::ActiveRecordStore may be replaced with any class that duck-types with a subset of Active Record.  See docs for details #1238 [skaes@web.de]
649

650 651
* Fixed that hashes was not working properly when passed by GET to lighttpd #849 [Nicholas Seckar]

652 653
* Fixed assert_template nil will be true when no template was rendered #1565 [maceywj@telus.net]

654 655
* Added :prompt option to FormOptions#select (and the users of it, like FormOptions#select_country etc) to create "Please select" style descriptors #1181 [Michael Schuerig]

656 657 658 659 660 661 662 663 664
* Added JavascriptHelper#update_element_function, which returns a Javascript function (or expression) that'll update a DOM element according to the options passed #933 [mortonda@dgrmm.net]. Examples:

    <%= update_element_function("products", :action => :insert, :position => :bottom, :content => "<p>New product!</p>") %>

    <% update_element_function("products", :action => :replace, :binding => binding) do %>
      <p>Product 1</p>
      <p>Product 2</p>
    <% end %>

665 666
* Added :field_name option to DateHelper#select_(year|month|day) to deviate from the year/month/day defaults #1266 [Marcel Molina]

667 668
* Added JavascriptHelper#draggable_element and JavascriptHelper#drop_receiving_element to facilitate easy dragging and dropping through the script.aculo.us libraries #1578 [Thomas Fuchs]

669 670
* Added that UrlHelper#mail_to will now also encode the default link title #749 [f.svehla@gmail.com]

671 672
* Removed the default option of wrap=virtual on FormHelper#text_area to ensure XHTML compatibility #1300 [thomas@columbus.rr.com]

673 674 675 676
* Adds the ability to include XML CDATA tags using Builder #1563 [Josh Knowles]. Example:

    xml.cdata! "some text" # => <![CDATA[some text]]>

677
* Added evaluation of <SCRIPT> blocks in content returned to Ajax calls #1577 [Thomas Fuchs/court3nay/Sean Treadway]
678

679 680 681 682
* Directly generate paths with a leading slash instead of tacking it on later.  #1543 [Nicholas Seckar]

* Fixed errant parameter modification in functional tests.  #1542 [Nicholas Seckar]

683 684
* Routes fail with leading slash #1540 [Nicholas Seckar]

685 686 687 688 689 690 691 692 693 694
* Added support for graceful error handling of Ajax calls #1217 [Jamis Buck/Thomas Fuchs]. Example:

    link_to_remote(
      "test", 
      :url => { :action => "faulty" }, 
      :update => { :success => "good", :failure => "bad" },
      403 => "alert('Forbidden- got ya!')",
      404 => "alert('Nothing there...?')", 
      :failure => "alert('Unkown error ' + request.status)")
  
695 696
* Attempt to explicitly flush the output at the end of CgiProcess#out

697 698
* Fixed assert_redirected_to to handle absolute controller paths properly #1472 [Rick Olson/Nicholas Seckar]

699 700
* Added event-based observations when frequency is not set on observe_field/form #1474 [flash@vanklinkenbergsoftware.nl]

701 702
* Added script.aculo.us Javascripts (controls.js, dragdrop.js, effects.js) (NEEDS MORE DESCRIPTION) #1509 [Thomas Fuchs]

703 704
* Fixed prototype to consider all fields it doesn't know as text (such as Safari's search) just like the browser in its serialization #1497 [Sean Treadway]

705
* Improved performance of Routes generation by a factor of 5 #1434 [Nicholas Seckar] 
706

707 708 709 710 711
* Added named routes (NEEDS BETTER DESCRIPTION) #1434 [Nicholas Seckar]

* Improved AbstractRequest documentation #1483 [court3nay@gmail.com]

* Added ActionController::Base.allow_concurrency to control whether the application is thread-safe, so multi-threaded servers like WEBrick knows whether to apply a mutex around the performance of each action. Turned off by default. EXPERIMENTAL FEATURE.
712

713 714
* Added TextHelper#word_wrap(text, line_length = 80) #1449 [tuxie@dekadance.se]

715 716 717 718
* Added a fall-through action for form_remote_tag that'll be used in case Javascript is unavailable #1459 [Scott Barron]. Example:

    form_remote_tag :html => { :action => url_for(:controller => "some", :action => "place") }

719 720
* Added :xhr => true/false option to verify so you can ensure that a request is coming from an Ajax call or not #1464 [Thomas Fuchs]

721 722
* Added tag_options as a third parameter to AssetHelper#auto_discovery_link_tag to control options like the title of the link #1430 [kevin.clark@gmail.com]

723 724 725 726 727 728 729
* Added option to pass in parameters to CaptureHelper#capture, so you can create more advanced view helper methods #1466 [duane.johnson@gmail.com]. Example:

    <% show_calendar(:year => 2005, :month => 6) do |day, options| %>
      <% options[:bgcolor] = '#dfd' if 10..15.include? day %>
      [<%= day %>]
    <% end %>

730 731
* Changed the default name of the input tag generated by FormTagHelper#submit_tag from "submit" to "commit" so it doesn't clash with form.submit() calls in Javascript #1271

732 733 734
* Fixed relative urls support for lighttpd #1048 [Nicholas Seckar/maznawak@nerim.net]

* Correct distance_of_time_in_words for integer arguments and make the second arg optional, treating the first arg as a duration in seconds.  #1458 [madrobby <thomas@fesch.at>]
735

736 737 738 739
* Fixed query parser to deal gracefully with equal signs inside keys and values #1345 [gorou]. 
  Example: /?sig=abcdef=:foobar=&x=y will pass now. 

* Added Cuba to country list #1351 [todd]
740

741 742
* Fixed radio_button to work with numeric values #1352 [demetrius]

743 744
* Added :extension option to NumberHelper#number_to_phone #1361 [delynnb]

745 746
* Added button_to as a form-based solution to deal with harmful actions that should be hidden behind POSTs. This makes it just as easy as link_to to create a safe trigger for actions like destroy, although it's limited by being a block element, the fixed look, and a no-no inside other forms. #1371 [tom@moertel.com]

747 748
* Fixed image_tag so an exception is not thrown just because the image is missing and alt value can't be generated #1395 [Marcel]

749 750
* Added a third parameter to TextHelper#auto_link called href_options for specifying additional tag options on the links generated #1401 [tyler.kovacs@gmail.com]. Example: auto_link(text, :all, { :target => "_blank" }) to have all the generated links open in a new window.

751 752
* Fixed TextHelper#highlight to return the text, not nil, if the phrase is blank #1409 [patrick@lenz.sh]

753 754
* Fixed TagHelper such that :name and 'name' keys in the options doesn't result in two attributes #1455 [take_tk]

755 756
* Ensure that helpers are only available to the controllers where they are defined and their subclasses.  #1394 [kdole@tamu.edu]

757 758
* render("foo/bar") works with a layout again 

759 760
* Fixed double-singularization on scaffolded pagination call (Address would be turned into Addres) #1216, #1404 [nilsga]

761 762
* Removed the require hack used by functional testing to work around an earlier bug in rake.

763 764
* Allow distance_of_time_in_words to work with any value that responds to #to_time (like dates) #969

765 766
* Support :render option for :verify #1440 [TobiasLuetke]

767
* Updated vendor copy of html-scanner lib to 0.5.2, for bug fixes and optimizations. The :content option may be used as expected--to find a tag whose textual content is a particular value--in assert_tag, now.
768

769 770
* Changed test requests to come from 0.0.0.0 instead of 127.0.0.1 such that they don't trigger debugging screens on exceptions, but instead call rescue_action_in_public

771 772 773 774 775 776
* Modernize scaffolding to match the generator: use the new render method and change style from the warty @params["id"] to the sleek params[:id].  #1367

* Include :id in the action generated by the form helper method.  Then, for example, the controller can do Model.find(params[:id]) for both edit and update actions.  Updated scaffolding to take advantage.  #1367

* Add assertions with friendly messages to TestCase#process to ensure that @controller, @request, and @response are set.  #1367

777
* Arrays, hashes sent via multipart posts are converted to strings #1032 [dj@omelia.org, me@julik.nl]
778

779
* render(:layout => true) is a synonym for render(:layout => nil)
780

781 782
* Make sure the benchmarking render method always returns the output of the render.

783
* render(:action), render(:template) and render() are the only three calls that default to using a layout. All other render calls assume :layout => false. This also fixes send_file, which was applying a layout if one existed for the current action.
784

785 786
* verify with :redirect_to won't redirect if a redirect or render has already been performed #1350

787 788 789 790 791 792
* render(:partial => true) is identical to the behavior of the deprecated render_partial()

* Fixed render(:partial => "...") to use an empty Hash for the local assigns #1365

* Fixed Caching::Fragments::FileStore.delete to not raise an exception if the delete fails.

793 794 795 796 797 798 799 800 801 802 803 804 805 806
* Deprecated all render_* methods in favor of consolidating all rendering behavior in Base#render(options). This enables more natural use of combining options, such as layouts. Examples:

    +---------------------------------------------------------------+-------------------------------------------------------+
    | BEFORE                                                        | AFTER                                                 |
    +---------------------------------------------------------------+-------------------------------------------------------+
    | render_with_layout "weblog/show", "200 OK", "layouts/dialog"  | render :action => "show", :layout => "dialog"         |
    | render_without_layout "weblog/show"                           | render :action => "show", :layout => false            |
    | render_action "error", "404 Not Found"                        | render :action => "error", :status => "404 Not Found" |
    | render_template "xml.div('stuff')", "200 OK", :rxml           | render :inline => "xml.div('stuff')", :type => :rxml  |
    | render_text "hello world!"                                    | render :text => "hello world!"                        |
    | render_partial_collection "person", @people, nil, :a => 1     | render :partial => "person", :collection => @people,  |
    |                                                               |        :locals => { :a => 1 }                         |
    +---------------------------------------------------------------+-------------------------------------------------------+      

807 808
* Deprecated redirect_to_path and redirect_to_url in favor of letting redirect_to do the right thing when passed either a path or url.

809 810
* Fixed use of an integer as return code for renders, so render_text "hello world", 404 now works #1327

811 812
* Fixed assert_redirect_to to work with redirect_to_path #869 [Nicholas Seckar]

813 814
* Fixed escaping of :method option in remote_form_tag #1218 [Rick Olson]

815 816
* Added Serbia and Montenegro to the country_select #1239 [todd@robotcoop.com]

817
* Fixed Request#remote_ip in testing #1251 [Jeremy Kemper]
818

819 820
* Fixed that compute_public_path should recognize external URLs, so image_tag("http://www.example.com/images/icon.gif") is not prefixed with the relative url path #1254 [victor-ronr-trac@carotena.net]

821 822
* Added support for descending year values in DateHelper#select_year, like select_year(Date.today, :start_year => 2005, :end_year => 1900), which would count down from 2005 to 1900 instead of the other way #1274 [nwoods@mail.com]

823 824
* Fixed that FormHelper#checkbox should return a checked checkbox if the value is the same as checked_value #1286 [Florian Weber]

825 826
* Fixed Form.disable in Prototype #1317 [Wintermute]

827
* Added accessors to logger, params, response, session, flash, and headers from the view, so you can write <% logger.info "stuff" %> instead of <% @logger.info "others" %> -- more consistent with the preferred way of accessing these attributes and collections from the controller
828

829
* Added support for POST data in form of YAML or XML, which is controller through the Content-Type header. Example request:
830

831
    Content-Type: application/xml
832 833 834 835
    <request><item><content>HelloWorld</content></item></request>
  
  ...is the same as:

836
    Content-Type: application/x-yaml
837 838 839 840 841 842 843 844 845 846 847 848
    ---
    item:
      content: HelloWorld

  ...is the same as:
  
    item[content]=HelloWorld
  
  Which in the end turns into { "item" => { "content" => "HelloWorld" } }. This makes it a lot easier to publish REST web services on top of your regular actions (as they won't care).
  
  Example Curl call:

849
    curl -H 'Content-Type: application/xml' -d '<request><item><content>KillMeMore</content></item></request>' http://www.example.com/service
850 851

  You can query to find out whether a given request came through as one of these types with:
852
    - request.post_format? (:url_encoded, :xml or :yaml)
853 854 855 856 857 858
    - request.formatted_post? (for either xml or yaml)
    - request.xml_post?
    - request.yaml_post?

* Added bundling of XmlSimple by Maik Schmidt

859 860
* Fixed that render_partial_collection should always return a string (and not sometimes an array, despite <%= %> not caring)

861 862
* Added TextHelper#sanitize that can will remove any Javascript handlers, blocks, and forms from an input of HTML.  This allows for use of HTML on public sites, but still be free of XSS issues. #1277 [Jamis Buck]

863 864
* Fixed the HTML scanner used by assert_tag where a infinite loop could be caused by a stray less-than sign in the input #1270 [Jamis Buck]

865 866
* Added functionality to assert_tag, so you can now do tests on the siblings of a node, to assert that some element comes before or after the element in question, or just to assert that some element exists as a sibling #1226 [Jamis Buck]

867 868 869 870
* Added better error handling for regexp caching expiration

* Fixed handling of requests coming from unknown HTTP methods not to kill the server

871 872
* Added that both AssetHelper#stylesheet_link_tag and AssetHelper#javascript_include_tag now accept an option hash as the last parameter, so you can do stuff like: stylesheet_link_tag "style", :media => "all"

873 874
* Added FormTagHelper#image_submit_tag for making submit buttons that uses images

875
* Added ActionController::Base.asset_host that will then be used by all the asset helpers. This enables you to easily offload static content like javascripts and images to a separate server tuned just for that.
876

D
David Heinemeier Hansson 已提交
877
* Fixed action/fragment caching using the filestore when a directory and a file wanted to use the same name. Now there's a .cache prefix that sidesteps the conflict #1188 [imbcmdth@hotmail.com]
878

879 880
* Fixed missing id uniqueness in FormTag#radio_button #1207 [Jarkko]

881 882
* Fixed assert_redirected_to to work with :only_path => false #1204 [Alisdair McDiarmid]

883 884
* Fixed render_partial_collection to output an empty string instead of nil when handed an empty array #1202 [Ryan Carver]

885 886
* Improved the speed of regular expression expirations for caching by a factor of 10 #1221 [Jamis Buck]

887 888
* Removed dumping of template assigns on the rescue page as it would very easily include a ton of data making page loads take seconds (and the information was rarely helpful) #1222

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
* Added BenchmarkHelper that can measure the execution time of a block in a template and reports the result to the log. Example:
  
    <% benchmark "Notes section" do %>
      <%= expensive_notes_operation %>
    <% end %>
  
   Will add something like "Notes section (0.345234)" to the log.

* Added ActionController::Caching::Sweeper as an improved an easier to use sweeper. The new sweepers work on a single-step approach instead of two-steps like the old ones. Before

    def after_save(record)
      @list = record.is_a?(List) ? record : record.list
    end
    
    def filter(controller)
      controller.expire_page(:controller => "lists", :action => %w( show public feed ), :id => @list.id)
      controller.expire_action(:controller => "lists", :action => "all")
      @list.shares.each { |share| controller.expire_page(:controller => "lists", :action => "show", :id => share.url_key) }
    end

  ..after:

    def after_save(record)
      list = record.is_a?(List) ? record : record.list
      expire_page(:controller => "lists", :action => %w( show public feed ), :id => list.id)
      expire_action(:controller => "lists", :action => "all")
      list.shares.each { |share| expire_page(:controller => "lists", :action => "show", :id => share.url_key) }
    end

  The new sweepers can also observe on the actions themselves by implementing methods according to (before|after)_$controller_$action. Example of a callback that'll be called after PagesController#update_title has been performed:
  
      def after_pages_update_title
        expire_fragment(%r{pages/#{controller.assigns["page"].id}/.*})
      end

  Note that missing_method is delegated to the controller instance, which is assigned in a before filter. This means that you can call expire_fragment instead of @controller.expire_fragment.

* Added that Fragments#expire_fragment now accepts as a regular expression as the name thereby deprecating expire_matched_fragments

* Fixed that fragments shouldn't use the current host and the path as part of the key like pages does

* Added conditions to around_filters just like before_filter and after_filter


933 934 935 936 937 938 939
*1.8.1* (20th April, 2005)

* Added xml_http_request/xhr method for simulating XMLHttpRequest in functional tests #1151 [Sam Stephenson]. Example:

    xhr :post, :index

* Fixed that Ajax.Base.options.asynchronous wasn't being respected in Ajax.Request (thanks Jon Casey)
940

941 942
* Fixed that :get, :post, and the others should take a flash array as the third argument just like process #1144 [rails@cogentdude.com]

943 944
* Fixed a problem with Flash.now

945 946
* Fixed stringification on all assigned hashes. The sacrifice is that assigns[:person] won't work in testing. Instead assigns["person"] or assigns(:person) must be used. In other words, the keys of assigns stay strings but we've added a method-based accessor to appease the need for symbols.

947 948 949
* Fixed that rendering a template would require a connection to the database #1146


950
*1.8.0* (19th April, 2005)
951

952
* Added assert_tag and assert_no_tag as a much improved alternative to the deprecated assert_template_xpath_match #1126 [Jamis Buck]
953

954
* Deprecated the majority of all the testing assertions and replaced them with a much smaller core and access to all the collections the old assertions relied on. That way the regular test/unit assertions can be used against these. Added documentation about how to use it all.
955

956 957 958 959 960 961 962 963 964 965 966 967 968
* 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]
969

970 971
* Added Request#xml_http_request? (and an alias xhr?) to that'll return true when the request came from one of the Javascript helper methods (Ajax). This can be used to give one behavior for modern browsers supporting Ajax, another to old browsers #1127 [Sam Stephenson]

972
* Changed render_partial to take local assigns as the second parameter instead of an explicit object and then the assigns. So the API changes from:
973

974 975 976 977 978 979 980 981 982 983 984 985 986
    <%= render_partial "account", person, "rules" => regulations.rules %>
    
  ...to:
  
    <%= render_partial "account", :account => person, :rules => regulations.rules %>
  
  The old API will still work, though, and render_partial "account" will still assume :account => @account.

* Added support for web servers that use PATH_INFO instead of REQUEST_URI like IIS #1014 [BradG/Nicholas Seckar]

* Added graceful handling of PUT, DELETE, and OPTIONS requests for a complete coverage of REST functionality #1136 [joshknowles@gmail.com]

* Fixed that you can now pass an alternative :href option to link_to_function/remote in order to point to somewhere other than # if the javascript fails or is turned off. You can do the same with form_remote_tag by passing in :action. #1113 [Sam Stephenson]
987

988
* Fixed DateHelper to return values on the option tags such that they'll work properly in IE with form_remote_tag #1024 [Scott Raymond]
989

990 991
* Fixed FormTagHelper#check_box to respect checked #1049 [DelynnB]

992 993
* Added that render_partial called from a controller will use the action name as default #828 [Dan Peterson]

994 995
* Added Element.toggle, Element.show, and Element.hide to the prototype javascript library. Toggle.display has been deprecated, but will still work #992 [Lucas Carlson]

996 997
* Added that deleting a cookie should not just set it to an empty string but also instantly expire it #1118 [todd@robotcoop.com]

998 999
* Added AssetTagHelper#image_path, AssetTagHelper#javascript_path, and AssetTagHelper#stylesheet_path #1110 [Larry Halff]

1000 1001
* Fixed url_for(nil) in functional tests #1116 [Alisdair McDiarmid]

1002 1003
* Fixed error handling of broken layouts #1115 [Michael Schubert]

1004 1005
* Added submit_to_remote that allows you to trigger an Ajax form submition at the click of the submission button, which allows for multiple targets in a single form through the use of multiple submit buttons #930 [yrashk@gmail.com]

1006 1007
* Fixed pagination to work with joins #1034 [scott@sigkill.org]

1008 1009
* Fixed that *rest parameter in map.connect couldn't accept an empty list #1037 [Dee.Zsombor@gmail.com]

1010 1011
* Added :confirm option to link_to_remote just like link_to has #1082 [yrashk@fp.org.ua]

1012 1013
* Added minute_step as an option to select_minute (and the helpers that use it) to jump in larger increments than just 1 minute. At 15, it would return 0, 15, 30, 45 options #1085 [ordwaye@evergreen.edu]

1014 1015
* Fixed that an exception would be thrown when an empty form was submitted #1090 [jan@ulbrich-boerwang.de]

1016 1017
* Moved TextHelper#human_size to NumberHelper#number_to_human_size, but kept an deprecated alias to the old method name

1018 1019
* Fixed that the content-type for some browsers could include an additional \r which made wonky things happen #1067 [Thomas Fuchs]

1020 1021 1022 1023
* 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]

1024 1025
* 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]

1026 1027
* Added JavascriptHelper#periodically_call_remote in order to create areas of a page that update automatically at a set interval #945 [Jon Tirsen]

1028 1029
* Fixed Cache#expire_matched_fragments that couldn't recognize the difference between string and url_for options #1030 [skaes@web.de]

1030 1031
* Added simulation of @request.request_uri in functional tests #1038 [Jamis Buck]

D
David Heinemeier Hansson 已提交
1032 1033 1034 1035
* 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"'

1036 1037
* Fixed javascript_include_tag to output type instead of language and conform to XHTML #1018 [Rick Olson]

1038 1039
* Added NumberHelper for common string representations like phone number, currency, and percentage #1015 [DeLynn]

1040 1041
* Added pagination for scaffolding (10 items per page) #964 [mortonda@dgrmm.net]

1042
* Added assert_no_cookie and fixed assert_cookie_equal to deal with non-existing cookies #979 [Jeremy Kemper]
1043

1044 1045
* Fixed :overwrite_param so it doesn't delete but reject elements from @request.parameters #982 [raphinou@yahoo.com]

1046 1047
* Added :method option to verify for ensuring that either GET, POST, etc is allowed #984 [Jamis Buck]

1048 1049
* Added options to set cc, bcc, subject, and body for UrlHelper#mail_to #966 [DeLynn]

1050 1051
* Fixed include_blank for select_hour/minute/second #527 [edward@debian.org]

1052 1053
* Improved the message display on the exception handler pages #963 [Johan Sorensen]

1054
* Fixed that on very rare occasions, webrick would raise a NoMethodError: private method 'split' called for nil #1001 [Flurin Egger]
1055

1056 1057 1058
* Fixed problem with page caching #958 [Rick Olson]


1059
*1.7.0* (27th March, 2005)
1060

1061 1062
* Added ActionController::Base.page_cache_extension for setting the page cache file extension (the default is .html) #903 [Andreas]

1063 1064
* Fixed "bad environment variable value" exception caused by Safari, Apache, and Ajax calls #918

1065 1066
* Fixed that pagination_helper would ignore :params #947 [Sebastian Kanthak]

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

1069 1070
* 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]

1071
* Added Effect.Highlight to prototype.js to do Yellow Fade Technique (of 37signals' fame) on any container #952 [Sam Stephenson/courtenay]
1072

1073 1074
* 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]

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

1077 1078
* 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]

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

1081 1082
* 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]

1083 1084
* 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]

1085 1086 1087 1088
* 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]

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

1091 1092
* Fixed link_to :confirm #936 [Nicholas Seckar]

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

1095 1096 1097
* Fixed Toggle.display in prototype.js #902 [Lucas Carlson]


1098
*1.6.0* (22th March, 2005)
1099

1100 1101
* 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]

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

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

1106 1107 1108 1109 1110 1111 1112
* 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
1113
          flash[:message] = 'Save successful'
1114 1115 1116
          redirect_to :action => 'list'
        else
          # no redirect, message is for current action, use flash.now
1117
          flash.now[:message] = 'Save failed, review'
1118 1119 1120 1121 1122
          render_action 'edit'
        end
      end    
    end

1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
* 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

1144 1145
* 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]

1146 1147 1148 1149
* 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]

1150 1151
* 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]

1152 1153 1154 1155 1156
* 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".
1157 1158 1159
  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("/").
1160

1161 1162
* Fixed options_for_select on selected line issue #624 [Florian Weber]

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

1165 1166
* Fixed :anchor use in url_for #821 [Nicholas Seckar]

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

1169
* Added assigns shortcut for @response.template.assigns to controller test cases [Jeremy Kemper]. Example:
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184

  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

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

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

1189 1190 1191
* Fixed that the :multipart option in FormTagHelper#form_tag would be ignored [Yonatan Feldman]


1192
*1.5.1* (7th March, 2005)
1193

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

1196 1197
* 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]

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

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

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

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

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

1208
* Fixed that form helpers would treat string and symbol keys differently in html_options (and possibly create duplicate entries) #112 [Jeremy Kemper]
1209

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

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

1214 1215 1216 1217 1218 1219
* 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]

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

1222 1223
* 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]

1224
* Fixed that caching the root would result in .html not index.html #731, #734 [alisdair/Nicholas Seckar]
1225 1226


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

1229 1230 1231 1232
* 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

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

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

1237 1238
* 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

1239
* 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]
1240

1241 1242
* Added FormHelper#file_field and FormTagHelper#file_field_tag for creating file upload fields

1243 1244 1245 1246 1247
* 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])

1248 1249
* 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]

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

1252 1253
* 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.

1254
* Added Afghanistan, Iran, and Iraq to the countries list used by FormOptions#country_select and FormOptions#country_options_for_select
1255 1256 1257

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

1258 1259
* Fixed textilize for RedCloth3 to keep doing hardbreaks

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

1262
* Added TextHelper#auto_link to turn email addresses and urls into ahrefs
1263

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

1266
* 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]
1267 1268 1269 1270 1271

* 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

1272 1273
* Fixed https handling on other ports than 443 [Alan Gano]

1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
* 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.

1286 1287
* Fixed double requiring of models with the same name as the controller

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

1290 1291 1292
* Fixed that cookies shouldn't be frozen in TestRequest #571 [Eric Hodel]


1293 1294 1295
*1.4.0* (January 25th, 2005)

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

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

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

1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
* 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+" />

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

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

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

1321 1322
* Removed the need for passing the binding when using CacheHelper#cache

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

1325
* Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [Jeremy Kemper]
1326

1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356
* 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.


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

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

1361 1362
* Added assert_cookie_equal to assert the contents of a named cookie

D
David Heinemeier Hansson 已提交
1363 1364 1365
* Fixed bug in page caching that prevented it from working at all 


1366
*1.3.0* (January 17th, 2005)
1367

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

1371 1372 1373 1374 1375 1376 1377
* 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

1378 1379 1380 1381 1382
* 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

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

1385
* Fixed that send_file would "remember" all the files sent by adding to the headers again and again #458 [Jeremy Kemper]
1386

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

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

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

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

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

1397 1398 1399 1400 1401 1402 1403 1404
* 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 %>" />

1405 1406 1407 1408 1409 1410 1411
* 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

1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
* 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

1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
* 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

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

1441 1442 1443
* Added the possibility of passing nil to UrlHelper#link_to to use the link itself as the name


1444
*1.2.0* (January 4th, 2005)
1445

1446 1447 1448
* 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/)

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

1451 1452
* Added DateHelper#select_time and DateHelper#select_second #373 [Scott Baron]

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

1455 1456
* Added class declaration for the MissingFile exception #388 [Kent Sibilev]

1457 1458
* 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]

1459 1460
* 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]

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

1463 1464 1465
* 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]
1466 1467


D
David Heinemeier Hansson 已提交
1468
*1.1.0*
1469

1470 1471 1472
* 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]

1473 1474 1475
* 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]

1476 1477 1478
* 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".

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

1481 1482
* Added Request#domain (returns string) and Request#subdomains (returns array).

1483 1484
* 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 已提交
1485
* Fixed regression with Base#reset_session that wouldn't use the DEFAULT_SESSION_OPTIONS [adam@the-kramers.net]
D
David Heinemeier Hansson 已提交
1486 1487 1488 1489 1490 1491 1492

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

1493

1494 1495 1496 1497 1498
*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 已提交
1499
*1.0*
1500

1501 1502 1503 1504
* 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.

1505 1506
* 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]

1507 1508 1509
* 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]

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

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

1514 1515
* Added display of error messages with scaffolded form pages

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

1518
    class SomeController < ApplicationController
1519 1520 1521 1522 1523 1524 1525
    <% if options[:scaffold] %>
      scaffold :<%= singular_name %>
    <% end %>
      helper :post
  
  ...produces this on post as singular_name:

1526
    class SomeController < ApplicationController
1527 1528 1529 1530 1531 1532 1533
    
      scaffold :post
    
      helper :post
  
  ...where as:

1534
    class SomeController < ApplicationController
1535 1536 1537 1538 1539 1540 1541
    <% if options[:scaffold] -%>
      scaffold :<%= singular_name %>
    <% end -%>
      helper :post
  
  ...produces:

1542
    class SomeController < ApplicationController
1543 1544 1545 1546 1547
      scaffold :post
      helper :post
  
  [This undocumented gem for ERb was uncovered by bitsweat]

1548 1549 1550 1551 1552 1553 1554
* 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]

1555
* Fixed CgiRequest#out to fall back to #write if $stdout doesn't have #syswrite [Jeremy Kemper]
1556

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

1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574
* 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"

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

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

1579 1580
* Added that ActiveRecordHelper#form now calls url_for on the :action option.

1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593
* 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.

1594 1595 1596 1597
* 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.

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

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

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

1605
* Added graceful handling of non-alphanumeric names and misplaced brackets in input parameters [Jeremy Kemper]
1606

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

1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621
  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!
1622

1623
* 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 已提交
1624

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

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

1629
* Added the choice to call form_tag with no arguments (resulting in a form posting to current action) [Jeremy Kemper]
1630

D
Initial  
David Heinemeier Hansson 已提交
1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646
* 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:

1647
    class MsgController < ApplicationController
D
Initial  
David Heinemeier Hansson 已提交
1648 1649 1650 1651 1652
      helper :msg
    end
    
  ...you can just do:
  
1653
    class MsgController < ApplicationController
D
Initial  
David Heinemeier Hansson 已提交
1654 1655 1656 1657 1658 1659 1660 1661 1662 1663
    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:

1664
    class MsgController < ApplicationController
D
Initial  
David Heinemeier Hansson 已提交
1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
      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

1675

D
Initial  
David Heinemeier Hansson 已提交
1676 1677
*0.9.5* (28)

1678
* Added helper_method to designate that a given private or protected method you should available as a helper in the view. [Jeremy Kemper]
D
Initial  
David Heinemeier Hansson 已提交
1679 1680 1681 1682 1683 1684 1685

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

1686
* Fixed request_origin to use remote_ip instead of remote_addr [Jeremy Kemper]
D
Initial  
David Heinemeier Hansson 已提交
1687 1688 1689 1690 1691

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

1692
* Fixed that auto-loading webrick on Windows would cause file uploads to fail [Jeremy Kemper]
D
Initial  
David Heinemeier Hansson 已提交
1693

1694
* Fixed issues with sending files on WEBrick by setting the proper binmode [Jeremy Kemper]
D
Initial  
David Heinemeier Hansson 已提交
1695

1696
* 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 [Jeremy Kemper]
D
Initial  
David Heinemeier Hansson 已提交
1697

1698
* Added a new way to include helpers that doesn't require the include hack and can go without the explicit require. [Jeremy Kemper]
D
Initial  
David Heinemeier Hansson 已提交
1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736

  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)
D
David Heinemeier Hansson 已提交
1737
  is sent even if the checkbox is not checked. This relieves the controller from doing custom checking if the checkbox wasn't
D
Initial  
David Heinemeier Hansson 已提交
1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366
  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*

2367
* First public release