| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Added that render_partial will always by default include a counter with value... | David Heinemeier Hansson | 2004-12-12 | 1 | -1/+8 |
* | Fixed CgiRequest#out to fall back to #write if doesn't have #syswrite [bitsw... | David Heinemeier Hansson | 2004-12-12 | 2 | -4/+12 |
* | Fixed all helpers so that they use XHTML compliant double quotes for values i... | David Heinemeier Hansson | 2004-12-12 | 6 | -45/+46 |
* | Use lower-case post instead of POST as form method for XHTML compliance #290 ... | David Heinemeier Hansson | 2004-12-12 | 3 | -9/+9 |
* | Fixed problem with cookies not being set to path=/ by default and a test bugg... | David Heinemeier Hansson | 2004-12-10 | 2 | -4/+5 |
* | Set border on link_to_image to 0 by default | David Heinemeier Hansson | 2004-12-10 | 1 | -0/+8 |
* | Added link_to_image(src, options = {}, html_options = {}, *parameters_for_met... | David Heinemeier Hansson | 2004-12-09 | 3 | -0/+65 |
* | Added breakpoint retries on rescue screens | David Heinemeier Hansson | 2004-12-09 | 2 | -0/+26 |
* | We need to pass the name when deleting the cookie | David Heinemeier Hansson | 2004-12-09 | 1 | -1/+1 |
* | Added CookieJar#delete and fixed CookieJar[] to just call first, so you get a... | David Heinemeier Hansson | 2004-12-09 | 2 | -1/+8 |
* | Fixed to_input_field_tag so it no longer explicitly uses InstanceTag.value if... | David Heinemeier Hansson | 2004-12-08 | 1 | -2/+4 |
* | Killed the out of place alias and made sure you can use the different HTTP me... | David Heinemeier Hansson | 2004-12-08 | 2 | -6/+17 |
* | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@77 5ecf4fe2-1ee6-03... | David Heinemeier Hansson | 2004-12-08 | 1 | -1/+0 |
* | Updated Builder to 1.2.2 | David Heinemeier Hansson | 2004-12-08 | 1 | -1/+4 |
* | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@72 5ecf4fe2-1ee6-03... | David Heinemeier Hansson | 2004-12-07 | 1 | -12/+13 |
* | Added the possibility of having validate be protected for assert_(in)valid_co... | David Heinemeier Hansson | 2004-12-07 | 3 | -7/+10 |
* | Trick tests on url_for | David Heinemeier Hansson | 2004-12-07 | 1 | -0/+9 |
* | Added that ActiveRecordHelper#form now calls url_for on the :action option. | David Heinemeier Hansson | 2004-12-07 | 3 | -4/+6 |
* | Fixed a bug with the HEAD stuff | David Heinemeier Hansson | 2004-12-07 | 1 | -1/+1 |
* | Fixed the Inflector to handle the movie/movies pair correctly #261 [Scott Baron] | David Heinemeier Hansson | 2004-12-07 | 1 | -0/+1 |
* | Added all the HTTP methods as alternatives to the generic "process" for funct... | David Heinemeier Hansson | 2004-12-07 | 3 | -2/+54 |
* | Added indifference to whether @headers["Content-Type"], @headers["Content-typ... | David Heinemeier Hansson | 2004-12-07 | 3 | -5/+18 |
* | Added TestSession#session_id that returns an empty string to make it easier t... | David Heinemeier Hansson | 2004-12-06 | 2 | -0/+7 |
* | Syntax errors and other exceptions thrown outside of an action are now gracef... | David Heinemeier Hansson | 2004-12-06 | 8 | -40/+36 |
* | Fixed that cached template loading would still check the file system to see i... | David Heinemeier Hansson | 2004-12-01 | 2 | -1/+4 |
* | Added options to tailor header tag, div id, and div class on ActiveRecordHelp... | David Heinemeier Hansson | 2004-12-01 | 3 | -8/+37 |
* | Added graceful handling of non-alphanumeric names and misplaced brackets in i... | David Heinemeier Hansson | 2004-12-01 | 3 | -19/+49 |
* | Moved the global require_* out of the classes so they actually work without s... | David Heinemeier Hansson | 2004-11-30 | 1 | -2/+4 |
* | Abolished ActionController::Base.require_or_load in favor of require_dependen... | David Heinemeier Hansson | 2004-11-30 | 3 | -3/+5 |
* | Pass on the original exception | David Heinemeier Hansson | 2004-11-30 | 1 | -1/+1 |
* | A change in attempt to combat periodical errors with FCGI processes hanging f... | David Heinemeier Hansson | 2004-11-30 | 1 | -0/+1 |
* | Silenced warnings from reloading files | David Heinemeier Hansson | 2004-11-30 | 3 | -1/+8 |
* | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@26 5ecf4fe2-1ee6-03... | David Heinemeier Hansson | 2004-11-26 | 1 | -1/+1 |
* | Handle empty cookie jars gracefully -- dont pout! | David Heinemeier Hansson | 2004-11-26 | 1 | -1/+1 |
* | Renamed CookieContainer to CookieJar to be cute. Its a private container anyw... | David Heinemeier Hansson | 2004-11-26 | 1 | -2/+2 |
* | Report to logger when a cookie is set | David Heinemeier Hansson | 2004-11-26 | 1 | -5/+3 |
* | Allow symbols to be used as names for setting cookies | David Heinemeier Hansson | 2004-11-26 | 2 | -3/+3 |
* | Allow symbols to be used as keys for setting cookies | David Heinemeier Hansson | 2004-11-26 | 2 | -2/+13 |
* | Added a new container for cookies that makes them more intuative to use. The ... | David Heinemeier Hansson | 2004-11-26 | 6 | -32/+116 |
* | Added ActionController#cookies[]= as an alias for cookie "name", "value" -- y... | David Heinemeier Hansson | 2004-11-26 | 2 | -2/+10 |
* | Added ActionController#cookies[] as a reader for @cookies that'll return the ... | David Heinemeier Hansson | 2004-11-26 | 2 | -4/+8 |
* | Added the opportunity to defined method_missing on a controller which will ha... | David Heinemeier Hansson | 2004-11-25 | 2 | -2/+4 |
* | Fixed AbstractRequest#remote_ip for users going through proxies - Patch #228 ... | David Heinemeier Hansson | 2004-11-25 | 2 | -9/+11 |
* | Dont include svn directories in packages | David Heinemeier Hansson | 2004-11-25 | 1 | -1/+1 |
* | Added Request#ssl? which is shorthand for @request.protocol == "https://" | David Heinemeier Hansson | 2004-11-24 | 2 | -0/+6 |
* | Allow form_tag with no arguments (resulting in a form posting to current acti... | David Heinemeier Hansson | 2004-11-24 | 2 | -1/+3 |
* | Initial | David Heinemeier Hansson | 2004-11-24 | 105 | -0/+9547 |