| Commit message (Expand) | Author | Age | Files | Lines |
* | Force *_url named routes to show the host in ActionView [Rick] | Rick Olson | 2006-10-20 | 1 | -1/+1 |
* | GET parameter keys can be escaped too [DHH] | David Heinemeier Hansson | 2006-10-17 | 1 | -1/+1 |
* | Fix deprecation warnings when rendering the template error template. | Jamis Buck | 2006-10-16 | 1 | -1/+1 |
* | Fix routing to correctly determine when generation fails. Closes #6300. | Nicholas Seckar | 2006-10-16 | 1 | -1/+1 |
* | Fix broken assert_generates when extra keys are being checked. | Jamis Buck | 2006-10-16 | 1 | -1/+1 |
* | remove an obsolete #dup call. avoid double negatives, to make the code easier... | Jamis Buck | 2006-10-15 | 1 | -3/+2 |
* | make sure filters in subclasses with :only or :except conditions are treated ... | Jamis Buck | 2006-10-14 | 1 | -2/+29 |
* | Make page caching respect the format of the resource that is being requested ... | Marcel Molina | 2006-10-12 | 1 | -3/+3 |
* | Install named routes into ActionView::Base instead of proxying them to the vi... | Nicholas Seckar | 2006-10-11 | 1 | -5/+2 |
* | Fix typo | Nicholas Seckar | 2006-10-09 | 1 | -2/+2 |
* | Fix relative URL root matching problems | Jamis Buck | 2006-10-09 | 1 | -4/+3 |
* | r5540@ks: jeremy | 2006-10-08 23:05:30 -0700 | Jeremy Kemper | 2006-10-09 | 1 | -73/+73 |
* | render_text may optionally append to the response body. render_javascript app... | Jeremy Kemper | 2006-10-09 | 1 | -4/+11 |
* | Fixed that caches_action breaks with file extensions (closes #6257) [Catfish] | David Heinemeier Hansson | 2006-10-09 | 1 | -1/+1 |
* | Fixed that rescue template path shouldn't be hardcoded, then it's easier to h... | David Heinemeier Hansson | 2006-10-09 | 1 | -1/+1 |
* | Fixed that some 500 rescues would cause 500's themselves because the response... | David Heinemeier Hansson | 2006-10-09 | 1 | -1/+1 |
* | Fixed that assert_select selects the wrong tag by its contents (closes #6332)... | David Heinemeier Hansson | 2006-10-09 | 1 | -66/+64 |
* | Deprecation cleanup for rescues (closes #6339) [adam] | David Heinemeier Hansson | 2006-10-09 | 1 | -4/+4 |
* | r5515@ks: jeremy | 2006-10-08 13:24:42 -0700 | Jeremy Kemper | 2006-10-08 | 1 | -2/+3 |
* | add response to list of deprecated instance variables | Jeremy Kemper | 2006-10-02 | 1 | -1/+1 |
* | use instance vars in rescue templates since controller may not be instantiate... | Jeremy Kemper | 2006-10-02 | 2 | -5/+5 |
* | Fixed some deprecation warnings in ActionPack [Rick Olson] | Rick Olson | 2006-09-30 | 2 | -4/+3 |
* | Deprecate @response | Jeremy Kemper | 2006-09-29 | 7 | -23/+24 |
* | Deprecate @headers | Jeremy Kemper | 2006-09-29 | 2 | -6/+6 |
* | Deprecate @cookies | Jeremy Kemper | 2006-09-29 | 2 | -4/+4 |
* | assert_select_rjs decodes escaped unicode chars since the Javascript generato... | Jeremy Kemper | 2006-09-29 | 1 | -17/+23 |
* | Deprecation: @request will be removed after 1.2. Use the request method instead. | Jeremy Kemper | 2006-09-29 | 4 | -14/+14 |
* | modify head so that you can specify a bare status code as the first parameter | Jamis Buck | 2006-09-28 | 1 | -5/+21 |
* | Add ActionController::Base#head for rendering empty responses. Add support fo... | Jamis Buck | 2006-09-28 | 2 | -1/+105 |
* | Fix bug that kept any before_filter except the first one from being able to h... | Rick Olson | 2006-09-27 | 1 | -5/+4 |
* | Make sure map.resources(:things, :new => { :new => :any }) correctly sets /th... | Jamis Buck | 2006-09-26 | 1 | -5/+8 |
* | whitespace | Jeremy Kemper | 2006-09-26 | 1 | -5/+5 |
* | Clear the cache of possible controllers whenever Routes are reloaded. | Nicholas Seckar | 2006-09-23 | 1 | -1/+3 |
* | Filters overhaul including meantime filter support for around filters. Closes... | Jeremy Kemper | 2006-09-22 | 1 | -215/+439 |
* | Just use the vanilla mime type string, no need for fancy lookups [DHH] | David Heinemeier Hansson | 2006-09-20 | 1 | -2/+2 |
* | Update CGI process to allow sessions to contain namespaced models. Closes #4638. | Nicholas Seckar | 2006-09-20 | 1 | -1/+1 |
* | Fix routing to respect user provided requirements and defaults when assigning... | Nicholas Seckar | 2006-09-20 | 1 | -8/+27 |
* | Hash.create_from_xml has been renamed to Hash.from_xml, alias will exist unti... | David Heinemeier Hansson | 2006-09-20 | 1 | -1/+1 |
* | Rescue Errno::ECONNRESET to handle an unexpectedly closed socket connection. ... | Jeremy Kemper | 2006-09-18 | 1 | -4/+4 |
* | Added that respond_to blocks will automatically set the content type to be th... | David Heinemeier Hansson | 2006-09-17 | 1 | -2/+5 |
* | Added proper getters and setters for content type and charset [DHH] Added utf... | David Heinemeier Hansson | 2006-09-17 | 4 | -5/+33 |
* | Declare file extensions exempt from layouts. Closes #6219. | Jeremy Kemper | 2006-09-16 | 1 | -1/+15 |
* | remove implicit primary actions - more pain than gain. test collection actio... | Jeremy Kemper | 2006-09-14 | 1 | -9/+0 |
* | Add chained replace/update support for assert_select_rjs [Rick Olson] | Rick Olson | 2006-09-14 | 1 | -10/+25 |
* | Make sure that formatted routes for all verbs are created. Still needs to res... | David Heinemeier Hansson | 2006-09-13 | 1 | -15/+19 |
* | Skip params with empty names, such as the &=Save query string from <input typ... | Jeremy Kemper | 2006-09-12 | 1 | -1/+2 |
* | Fix assert_tag so that :content => "foo" does not match substrings, but only ... | Jamis Buck | 2006-09-10 | 1 | -1/+1 |
* | Update descriptive messages for exceptions thrown by cgi_methods. Closes #6103. | Jeremy Kemper | 2006-09-08 | 1 | -3/+5 |
* | Add descriptive messages to the exceptions thrown by cgi_methods. Closes #6091. | Nicholas Seckar | 2006-09-07 | 1 | -2/+8 |
* | Update UrlWriter to support :only_path. | Nicholas Seckar | 2006-09-06 | 1 | -6/+11 |