aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
Commit message (Expand)AuthorAgeFilesLines
* Replace KCODE checks with String#chars for truncate. Closes #6385 [Manfred S...Michael Koziarski2006-10-143-9/+6
* Make page caching respect the format of the resource that is being requested ...Marcel Molina2006-10-123-3/+26
* Use String#chars in TextHelper::excerpt. Closes #6386 [Manfred Stienstra]Michael Koziarski2006-10-124-52/+31
* Install named routes into ActionView::Base instead of proxying them to the vi...Nicholas Seckar2006-10-112-5/+5
* Fix typoNicholas Seckar2006-10-091-2/+2
* Update to latest Prototype and script.aculo.us trunk versionsThomas Fuchs2006-10-095-185/+158
* Fix relative URL root matching problemsJamis Buck2006-10-093-4/+15
* r5540@ks: jeremy | 2006-10-08 23:05:30 -0700Jeremy Kemper2006-10-093-74/+86
* render_text may optionally append to the response body. render_javascript app...Jeremy Kemper2006-10-093-4/+34
* Rename test assertion to prevent shadowing. Closes #6306.Nicholas Seckar2006-10-092-1/+3
* one render per testJeremy Kemper2006-10-091-16/+36
* Fixed that NumberHelper#number_to_delimiter should respect precision of highe...David Heinemeier Hansson2006-10-093-3/+20
* Fixed that caches_action breaks with file extensions (closes #6257) [Catfish]David Heinemeier Hansson2006-10-092-1/+8
* Fixed that FormHelper#radio_button didn't respect an :id being passed in (clo...David Heinemeier Hansson2006-10-093-2/+10
* Added an html_options hash parameter to javascript_tag() and update_page_tag(...David Heinemeier Hansson2006-10-094-4/+26
* Also update escaping for prototype rescues [DHH]David Heinemeier Hansson2006-10-091-1/+1
* Fixed that rescue template path shouldn't be hardcoded, then it's easier to h...David Heinemeier Hansson2006-10-092-1/+3
* Fixed escaping of backslashes in JavaScriptHelper#escape_javascript (closes #...David Heinemeier Hansson2006-10-093-1/+4
* Fixed that some 500 rescues would cause 500's themselves because the response...David Heinemeier Hansson2006-10-092-1/+3
* Fixed that assert_select selects the wrong tag by its contents (closes #6332)...David Heinemeier Hansson2006-10-092-66/+81
* Deprecation cleanup for rescues (closes #6339) [adam]David Heinemeier Hansson2006-10-091-4/+4
* Docfix (closes #6356)David Heinemeier Hansson2006-10-091-1/+9
* r5515@ks: jeremy | 2006-10-08 13:24:42 -0700Jeremy Kemper2006-10-083-2/+22
* cleanup of local_assigns handling and documentation update (closes #6358) [sk...David Heinemeier Hansson2006-10-081-6/+16
* add response to list of deprecated instance variablesJeremy Kemper2006-10-021-1/+1
* use instance vars in rescue templates since controller may not be instantiate...Jeremy Kemper2006-10-022-5/+5
* Fixed some deprecation warnings in ActionPack [Rick Olson]Rick Olson2006-09-303-4/+5
* Deprecate @responseJeremy Kemper2006-09-2910-24/+27
* Deprecate @headersJeremy Kemper2006-09-295-7/+9
* Deprecate @cookiesJeremy Kemper2006-09-296-6/+8
* assert_select_rjs decodes escaped unicode chars since the Javascript generato...Jeremy Kemper2006-09-293-17/+37
* Deprecation: @request will be removed after 1.2. Use the request method instead.Jeremy Kemper2006-09-2912-112/+105
* modify head so that you can specify a bare status code as the first parameterJamis Buck2006-09-282-6/+33
* Add ActionController::Base#head for rendering empty responses. Add support fo...Jamis Buck2006-09-285-2/+176
* Fix bug that kept any before_filter except the first one from being able to h...Rick Olson2006-09-274-5/+52
* Make sure map.resources(:things, :new => { :new => :any }) correctly sets /th...Jamis Buck2006-09-262-10/+31
* strip_links is case-insensitive. Closes #6285.Jeremy Kemper2006-09-263-1/+4
* whitespaceJeremy Kemper2006-09-261-5/+5
* Clear the cache of possible controllers whenever Routes are reloaded.Nicholas Seckar2006-09-233-2/+32
* Filters overhaul including meantime filter support for around filters. Closes...Jeremy Kemper2006-09-224-230/+676
* use ActiveRecordTestCaseJeremy Kemper2006-09-221-2/+2
* use :dependent => :destroy rather than :dependent => trueJeremy Kemper2006-09-221-2/+2
* Update RJS render tests.Sam Stephenson2006-09-202-3/+5
* Just use the vanilla mime type string, no need for fancy lookups [DHH]David Heinemeier Hansson2006-09-201-2/+2
* Update CGI process to allow sessions to contain namespaced models. Closes #4638.Nicholas Seckar2006-09-202-1/+3
* Fix routing to respect user provided requirements and defaults when assigning...Nicholas Seckar2006-09-203-9/+90
* Hash.create_from_xml has been renamed to Hash.from_xml, alias will exist unti...David Heinemeier Hansson2006-09-201-1/+1
* Rescue Errno::ECONNRESET to handle an unexpectedly closed socket connection. ...Jeremy Kemper2006-09-182-4/+6
* test default content type for implicit rjs template renderRick Olson2006-09-182-0/+10
* Added that respond_to blocks will automatically set the content type to be th...David Heinemeier Hansson2006-09-174-2/+45