.. |
assertions
|
Make assert_select access content_type through accessor instead of header
|
2007-02-21 00:40:58 +00:00 |
cgi_ext
|
Factor out unique id generator. Expose cgi to session store.
|
2007-02-19 23:51:25 +00:00 |
macros
|
Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [DHH]
|
2006-09-03 23:22:24 +00:00 |
session
|
CGI escape the session cookie.
|
2007-02-22 01:17:28 +00:00 |
templates
|
Apply the rest of Chads patch
|
2007-02-21 00:29:44 +00:00 |
vendor
|
Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick]
|
2007-02-04 20:04:40 +00:00 |
assertions.rb
|
Fix Test::Unit::TestCase#clean_backtrace
|
2007-01-28 07:10:35 +00:00 |
base.rb
|
Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though.
|
2007-02-20 22:09:12 +00:00 |
benchmarking.rb
|
Added X-Runtime to all responses with the request run time [DHH] (rename from X-Benchmark)
|
2007-02-17 05:11:55 +00:00 |
caching.rb
|
Enable active record cache automatically for all actions
|
2007-02-21 18:08:39 +00:00 |
cgi_process.rb
|
Introduce a cookie-based session store as the Rails default. Sessions typically contain at most a user_id and flash message; both fit within the 4K cookie size limit. A secure hash is included with the cookie to ensure data integrity (a user cannot alter his user_id without knowing the secret key included in the hash). If you have more than 4K of session data or don't want your data to be visible to the user, pick another session store. Cookie-based sessions are dramatically faster than the alternatives.
|
2007-02-21 09:17:38 +00:00 |
components.rb
|
Fix issue with deprecation messing up #template_root= usage. Add #prepend_view_path and #append_view_path to allow modification of a copy of the
|
2007-02-04 22:27:45 +00:00 |
cookies.rb
|
Deprecate @response
|
2006-09-29 08:26:45 +00:00 |
deprecated_dependencies.rb
|
Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [DHH]
|
2006-09-03 23:08:43 +00:00 |
deprecated_redirects.rb
|
Fixed docs
|
2006-03-28 03:19:27 +00:00 |
deprecated_request_methods.rb
|
Mime types are separated by a comma, not semicolon, in the Accept header. Also switch all internal configuration of mime types away from strings and over to Mime::Type [DHH]
|
2006-03-12 16:03:44 +00:00 |
filters.rb
|
Slight doc tweak to #prepend_filter. Closes #6493 [Jeremy Voorhis]
|
2007-01-05 20:46:34 +00:00 |
flash.rb
|
Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though.
|
2007-02-20 22:09:12 +00:00 |
helpers.rb
|
Fix overly greedy rescues when loading helpers. Closes #6268
|
2007-01-28 04:57:05 +00:00 |
integration.rb
|
Integration tests: introduce methods for other HTTP methods. Closes #6353.
|
2007-02-22 09:28:10 +00:00 |
layout.rb
|
Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though.
|
2007-02-20 22:09:12 +00:00 |
mime_responds.rb
|
r5515@ks: jeremy | 2006-10-08 13:24:42 -0700
|
2006-10-08 20:30:24 +00:00 |
mime_type.rb
|
Add Mime::Type convenience methods to check the current mime type. [Rick]
|
2007-02-15 16:25:46 +00:00 |
mime_types.rb
|
Added default mime type for CSS (Mime::CSS) [DHH]
|
2007-02-18 00:00:14 +00:00 |
pagination.rb
|
Docs and deprecation
|
2006-09-03 23:28:54 +00:00 |
request.rb
|
Added that rendering will automatically insert the etag header on 200 OK responses. The etag is calculated using MD5 of the response body. If a request comes in that has a matching etag, the response will be changed to a 304 Not Modified and the response body will be set to an empty string. [DHH]
|
2007-02-17 18:16:44 +00:00 |
rescue.rb
|
Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though.
|
2007-02-20 22:09:12 +00:00 |
resources.rb
|
fix form_for example in ActionController::Resources documentation. Closes #7362 [gnarg], Added enhanced docs to routing assertions. Closes #7359 [Rob Sanheim], improve error message for Routing for named routes. Closes #7346 [Rob Sanheim]
|
2007-02-04 19:07:08 +00:00 |
response.rb
|
Fix tests depending too deep
|
2007-02-19 02:25:01 +00:00 |
routing.rb
|
Routing: better support for escaped values in route segments. Closes #7544.
|
2007-02-21 10:05:07 +00:00 |
scaffolding.rb
|
Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though.
|
2007-02-20 22:09:12 +00:00 |
session_management.rb
|
Session configuration in config/environment.rb instead of app/controllers/application.rb
|
2007-02-22 00:57:02 +00:00 |
status_codes.rb
|
Nodoc the irrelevant (from 1.2)
|
2007-01-26 21:37:38 +00:00 |
streaming.rb
|
Add a :url_based_filename => true option to ActionController::Streaming::send_file, which allows URL-based filenames. [Thomas Fuchs]
|
2007-02-09 11:25:37 +00:00 |
test_process.rb
|
Revert [6086] and [6087] since they caused a major regression with functional tests in 1.2.2. References #7372.
|
2007-02-10 03:55:12 +00:00 |
url_rewriter.rb
|
Fix doubly appearing parameters due to string and symbol mixups. Closes #2551.
|
2007-01-28 05:29:32 +00:00 |
verification.rb
|
Deprecation: @request will be removed after 1.2. Use the request method instead.
|
2006-09-29 07:34:02 +00:00 |