diff options
author | Mike Gunderloy <MikeG1@larkfarm.com> | 2008-10-31 04:40:29 -0500 |
---|---|---|
committer | Mike Gunderloy <MikeG1@larkfarm.com> | 2008-10-31 04:40:29 -0500 |
commit | 4bb13a2bfb7a2fc666c74038c1e72ea10544dfae (patch) | |
tree | 160a4d2b98575f9f17930f973ab173b241702923 | |
parent | 08d81fdc5c59ee2aedb372faa00a9cb067621d4b (diff) | |
download | rails-4bb13a2bfb7a2fc666c74038c1e72ea10544dfae.tar.gz rails-4bb13a2bfb7a2fc666c74038c1e72ea10544dfae.tar.bz2 rails-4bb13a2bfb7a2fc666c74038c1e72ea10544dfae.zip |
Update release notes.
-rw-r--r-- | railties/doc/guides/html/2_2_release_notes.html | 7 | ||||
-rw-r--r-- | railties/doc/guides/source/2_2_release_notes.txt | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/railties/doc/guides/html/2_2_release_notes.html b/railties/doc/guides/html/2_2_release_notes.html index 5e3b2cfc88..d83ad87160 100644 --- a/railties/doc/guides/html/2_2_release_notes.html +++ b/railties/doc/guides/html/2_2_release_notes.html @@ -779,6 +779,11 @@ Benchmarking numbers are now reported in milliseconds rather than tiny fractions Rails now supports HTTP-only cookies (and uses them for sessions), which help mitigate some cross-site scripting risks in newer browsers.
</p>
</li>
+<li>
+<p>
+<tt>redirect_to</tt> now fully supports URI schemes (so, for example, you can redirect to a svn+ssh: URI)
+</p>
+</li>
</ul></div>
</div>
<h2 id="_action_view">7. Action View</h2>
@@ -791,7 +796,7 @@ Rails now supports HTTP-only cookies (and uses them for sessions), which help mi </li>
<li>
<p>
-The included Prototype javascript library has been upgraded to version 1.6.0.2.
+The included Prototype javascript library has been upgraded to version 1.6.0.3.
</p>
</li>
<li>
diff --git a/railties/doc/guides/source/2_2_release_notes.txt b/railties/doc/guides/source/2_2_release_notes.txt index 2b3c606e62..c49b85e737 100644 --- a/railties/doc/guides/source/2_2_release_notes.txt +++ b/railties/doc/guides/source/2_2_release_notes.txt @@ -257,11 +257,12 @@ Action Controller now offers good support for HTTP conditional GET requests, as * The HTTP Accept header is disabled by default now. You should prefer the use of formatted URLs (such as +/customers/1.xml+) to indicate the format that you want. If you need the Accept headers, you can turn them back on with +config.action_controller.user_accept_header = true+. * Benchmarking numbers are now reported in milliseconds rather than tiny fractions of seconds * Rails now supports HTTP-only cookies (and uses them for sessions), which help mitigate some cross-site scripting risks in newer browsers. +* +redirect_to+ now fully supports URI schemes (so, for example, you can redirect to a svn+ssh: URI) == Action View * +javascript_include_tag+ and +stylesheet_link_tag+ support a new +:recursive+ option to be used along with +:all+, so that you can load an entire tree of files with a single line of code. -* The included Prototype javascript library has been upgraded to version 1.6.0.2. +* The included Prototype javascript library has been upgraded to version 1.6.0.3. * +RJS#page.reload+ to reload the browser's current location via javascript * The +atom_feed+ helper now takes an +:instruct+ option to let you insert XML processing instructions. |