aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Remove problematic control chars in rescue template. (closes #5316)Jamis Buck2006-06-082-4/+6
* Make sure passed routing options are not mutated by routing code. (closes #5314)Jamis Buck2006-06-073-7/+28
* Do some path normalization to prevent the possible_controllers list from cont...Jamis Buck2006-06-072-6/+43
* Make sure named routes are never generated relative to some containing moduleJamis Buck2006-06-062-2/+25
* Improve parameter expiry handling to fix sticky-id issue. Add a more informat...Jamis Buck2006-06-062-9/+64
* Include uninstall.rb (closes #5003)David Heinemeier Hansson2006-06-061-0/+1
* Remove dependency on Pathname in new routesJamis Buck2006-06-051-2/+0
* Make sure changing the controller from foo/bar to bing/bang does not change r...Jamis Buck2006-06-053-1/+12
* Use explicit delegation instead of method aliasing for AR::Base.to_param -> A...Jamis Buck2006-06-052-1/+6
* Escape the entire path before trying to recognize it (closes #3671)Jamis Buck2006-06-053-1/+13
* Make sure :id and friends are properly unescaped (closes #5275).Jamis Buck2006-06-053-1/+22
* Make sure regexp chunks are grouped when the segment has a regexp constraint ...Jamis Buck2006-06-052-1/+24
* Fix documentation for with_routing to reflect new reality (closes #5281)Jamis Buck2006-06-052-7/+11
* Added binary formattingDavid Heinemeier Hansson2006-06-041-1/+2
* Refactored ActiveRecord::Base.to_xml to become a delegate for XmlSerializer, ...David Heinemeier Hansson2006-06-045-275/+325
* Rolled back broken aliasingDavid Heinemeier Hansson2006-06-031-10/+4
* Fixed that Module#alias_method_chain should work with both foo? foo! and foo ...David Heinemeier Hansson2006-06-033-10/+40
* Added documentation for inflections (closes #5013) [m.stienstra@fngtps.com]David Heinemeier Hansson2006-06-031-3/+65
* Added uninstall.rb hook to plugin handling, such that plugins have a way of r...David Heinemeier Hansson2006-06-033-0/+9
* Create temporary dirs relative to RAILS_ROOT when running script/server #5014...David Heinemeier Hansson2006-06-032-1/+3
* Added simple hash conditions to find that'll just convert hash to an AND-base...David Heinemeier Hansson2006-06-033-11/+81
* Fixed issues with BLOB limits, charsets, and booleans for Firebird (closes #5...David Heinemeier Hansson2006-06-034-21/+25
* For Firebird adapterDavid Heinemeier Hansson2006-06-032-0/+60
* Fixed usage of :limit and with_scope when the association in scope is a 1:m (...David Heinemeier Hansson2006-06-033-1/+11
* Added disconnect! to Firebird adapter (closes #5210) [kennethkunz@gmail.com]David Heinemeier Hansson2006-06-031-1/+5
* Make more Firebird tests pass (closes #5188) [kennethkunz@gmail.com]David Heinemeier Hansson2006-06-036-6/+12
* Fixed migration trouble with SQLite when NOT NULL is used in the new definiti...David Heinemeier Hansson2006-06-033-3/+7
* Fixed problems with eager loading and counting on SQL Server (closed #5212) [...David Heinemeier Hansson2006-06-032-5/+8
* Fixed that count distinct should use the selected column even when using :inc...David Heinemeier Hansson2006-06-033-1/+8
* Fixed that has_many.create ended up with duplicate objects (closes #5250) [da...David Heinemeier Hansson2006-06-032-1/+9
* Fixed that :includes merged from with_scope won't cause the same association ...David Heinemeier Hansson2006-06-032-1/+4
* Uncry thyselfJeremy Kemper2006-06-031-0/+2
* to_xml fixes, features, and speedup. Closes #4989.Jeremy Kemper2006-06-039-72/+320
* fixtures :accounts for base_test. Closes #5268.Jeremy Kemper2006-06-021-1/+1
* Add OrderedHash#valuesSam Stephenson2006-06-023-1/+34
* Rewind readable CGI params so others may reread them (such as CGI::Session wh...Jeremy Kemper2006-06-023-2/+14
* Finish custom handling [DHH]David Heinemeier Hansson2006-06-022-6/+28
* Make new mime types first class [DHH]David Heinemeier Hansson2006-06-021-1/+1
* Make new mime types first class [DHH]David Heinemeier Hansson2006-06-023-9/+10
* Added Mime::TEXT (text/plain) and Mime::ICS (text/calendar) as new default ty...David Heinemeier Hansson2006-06-022-0/+7
* Added Mime::Type.register(string, symbol, synonyms = []) for adding new custo...David Heinemeier Hansson2006-06-023-4/+20
* Added support for Mime objects in render :content_type option [DHH]David Heinemeier Hansson2006-06-023-1/+13
* Excise the headache-prone syswrite in send_file.Jeremy Kemper2006-06-021-12/+3
* PostgreSQL: don't ignore port when host is nil since it's often used to label...Jeremy Kemper2006-06-022-1/+3
* Add :status option to send_data and send_file. Defaults to '200 OK'. Closes #...Jeremy Kemper2006-06-023-6/+27
* Dont keep nothing as a lookup [DHH]David Heinemeier Hansson2006-06-012-6/+5
* delegate AssociationProxy#to_param to the association target so that associat...Rick Olson2006-06-011-1/+2
* Tweaks to integration tests and url rewriter for further compatibility with n...Jamis Buck2006-06-012-3/+3
* Add RouteSet::Mapper#named_route for compatibility with adding programmatical...Jamis Buck2006-06-011-1/+5
* New routes implementation. Simpler, faster, easier to understand. The publish...Jamis Buck2006-06-0117-1673/+1949