aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
Commit message (Expand)AuthorAgeFilesLines
...
* Moved support files into Active SupportDavid Heinemeier Hansson2004-12-296-315/+0
* Moved the cookies fix to cgi_extDavid Heinemeier Hansson2004-12-292-1/+122
* Added documentation for using render_with_layoutDavid Heinemeier Hansson2004-12-291-0/+16
* Added :host and :protocol options to url_for and friends to redirect to anoth...David Heinemeier Hansson2004-12-231-3/+3
* Forgot to include the new session moduleDavid Heinemeier Hansson2004-12-221-0/+14
* Added more informative exception when using helper :some_helper and the helpe...David Heinemeier Hansson2004-12-221-2/+7
* Fixed regression with Base#reset_session that wouldn't use the the DEFAULT_SE...David Heinemeier Hansson2004-12-211-1/+1
* Added documentation for automatic layout inclusion #328 [Marcel]David Heinemeier Hansson2004-12-191-0/+9
* Added Request#port_string to get something like ":8080" back on 8080 and "" o...David Heinemeier Hansson2004-12-182-7/+10
* Added Request#domain (returns string) and Request#subdomains (returns array).David Heinemeier Hansson2004-12-181-0/+14
* Added POST support for the breakpoint retries, so form processing that raises...David Heinemeier Hansson2004-12-181-1/+12
* Tagged the 0.9.1 releaseDavid Heinemeier Hansson2004-12-171-2/+2
* Fixed a bug that would cause an ApplicationController to require itself three...David Heinemeier Hansson2004-12-171-4/+5
* Made the last tweaks before 0.9David Heinemeier Hansson2004-12-161-0/+36
* Updated documentationDavid Heinemeier Hansson2004-12-166-29/+63
* Added that controllers will now attempt to require a model dependency with th...David Heinemeier Hansson2004-12-161-0/+12
* Added that controllers will now search for a layout in $template_root/layouts...David Heinemeier Hansson2004-12-151-1/+15
* Added the option of passing false to :module or :controller_prefix in order t...David Heinemeier Hansson2004-12-132-5/+17
* Moved require_association to associations.rb and added methods for resetting ...David Heinemeier Hansson2004-12-121-0/+4
* Display error messages on scaffolded form pagesDavid Heinemeier Hansson2004-12-122-0/+2
* Fixed CgiRequest so that it'll now accept session options with Symbols as key...David Heinemeier Hansson2004-12-122-3/+7
* Fixed CgiRequest#out to fall back to #write if doesn't have #syswrite [bitsw...David Heinemeier Hansson2004-12-121-4/+10
* Fixed problem with cookies not being set to path=/ by default and a test bugg...David Heinemeier Hansson2004-12-101-2/+3
* Added breakpoint retries on rescue screensDavid Heinemeier Hansson2004-12-092-0/+26
* We need to pass the name when deleting the cookieDavid Heinemeier Hansson2004-12-091-1/+1
* Added CookieJar#delete and fixed CookieJar[] to just call first, so you get a...David Heinemeier Hansson2004-12-091-1/+6
* Killed the out of place alias and made sure you can use the different HTTP me...David Heinemeier Hansson2004-12-081-6/+5
* git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@72 5ecf4fe2-1ee6-03...David Heinemeier Hansson2004-12-071-12/+13
* Added the possibility of having validate be protected for assert_(in)valid_co...David Heinemeier Hansson2004-12-071-2/+2
* Added that ActiveRecordHelper#form now calls url_for on the :action option.David Heinemeier Hansson2004-12-071-1/+1
* Fixed a bug with the HEAD stuffDavid Heinemeier Hansson2004-12-071-1/+1
* Fixed the Inflector to handle the movie/movies pair correctly #261 [Scott Baron]David Heinemeier Hansson2004-12-071-0/+1
* Added all the HTTP methods as alternatives to the generic "process" for funct...David Heinemeier Hansson2004-12-071-1/+14
* Added indifference to whether @headers["Content-Type"], @headers["Content-typ...David Heinemeier Hansson2004-12-072-4/+13
* Added TestSession#session_id that returns an empty string to make it easier t...David Heinemeier Hansson2004-12-061-0/+4
* Syntax errors and other exceptions thrown outside of an action are now gracef...David Heinemeier Hansson2004-12-066-37/+34
* Added graceful handling of non-alphanumeric names and misplaced brackets in i...David Heinemeier Hansson2004-12-011-16/+14
* Moved the global require_* out of the classes so they actually work without s...David Heinemeier Hansson2004-11-301-2/+4
* Abolished ActionController::Base.require_or_load in favor of require_dependen...David Heinemeier Hansson2004-11-303-3/+5
* Pass on the original exceptionDavid Heinemeier Hansson2004-11-301-1/+1
* A change in attempt to combat periodical errors with FCGI processes hanging f...David Heinemeier Hansson2004-11-301-0/+1
* Silenced warnings from reloading filesDavid Heinemeier Hansson2004-11-302-1/+7
* git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@26 5ecf4fe2-1ee6-03...David Heinemeier Hansson2004-11-261-1/+1
* Handle empty cookie jars gracefully -- dont pout!David Heinemeier Hansson2004-11-261-1/+1
* Renamed CookieContainer to CookieJar to be cute. Its a private container anyw...David Heinemeier Hansson2004-11-261-2/+2
* Report to logger when a cookie is setDavid Heinemeier Hansson2004-11-261-5/+3
* Allow symbols to be used as names for setting cookiesDavid Heinemeier Hansson2004-11-261-2/+2
* Allow symbols to be used as keys for setting cookiesDavid Heinemeier Hansson2004-11-261-2/+3
* Added a new container for cookies that makes them more intuative to use. The ...David Heinemeier Hansson2004-11-262-27/+66
* Added ActionController#cookies[]= as an alias for cookie "name", "value" -- y...David Heinemeier Hansson2004-11-261-2/+8