aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Now that we always return a proxy from mb_chars, even in 1.9, all Strings ↵wycats2010-06-031-3/+5
| | | | | | | | | | | | | | | | | | | | coming back from AS are UTF-8.
| * | | | fix translation test in actionpack [#4701 state:commited]Santiago Pastorino2010-06-031-1/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: wycats <wycats@gmail.com>
| * | | | Removing Metal from Rails 3.wycats2010-06-0320-319/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If you have existing Metals, you have a few options: * if your metal behaves like a middleware, add it to the middleware stack via config.middleware.use. You can use methods on the middleware stack to control exactly where it should go * if it behaves like a Rack endpoint, you can link to it in the router. This will result in more optimal routing time, and allows you to remove code in your endpoint that matches specific URLs in favor of the more powerful handling in the router itself. For the future, you can use ActionController::Metal to get a very fast controller with the ability to opt-in to specific controller features without paying the penalty of the full controller stack. Since Rails 3 is closer to Rack, the Metal abstraction is no longer needed.
| * | | | fix `reset_counters` to work even with complex class namesMislav Marohnić2010-06-032-4/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e.g. it guesses that a belongs_to association to Namespace::MyModel is named "my_model", unlike before where it would look up an association named "namespace::mymodel" and fail.
| * | | | move counter_cache tests to a separate file and refactorMislav Marohnić2010-06-032-49/+58
| | | | |
| * | | | cleanup `update/reset_counters`: less SQL strings, more ActiveRecord/ArelMislav Marohnić2010-06-031-12/+8
| | | | |
| * | | | avoid auto_linking already linked emails; more robust detection of linked URLsMislav Marohnić2010-06-032-16/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | References #1523 [#1862 state:resolved] [#3591 state:resolved] Add test that shows how link text can contain HTML if needed: the trick is using block form in combination with `raw`. Let link text be automatically HTML-escaped [#2017 state:resolved]
| * | | | auto_link: support arbitrary URI schemes like "ftp:" and "file:"Mislav Marohnić2010-06-032-14/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | recognizes all URI scheme allowed characters, such as colon and period. [#3494 state:resolved]
| * | | | performance and integration tests inherit from AD, not ACGonçalo Silva2010-06-032-2/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: wycats <wycats@gmail.com>
| * | | | Use I18n 0.4.0José Valim2010-06-031-1/+1
| | | | |
| * | | | In AV::TC, move protect_against_forgery? from the test_case to theDavid Chelimsky2010-06-032-4/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | _helper module included in the view. - ensures that protect_against_forgery? is present when a helper included in a partial that is rendered by the template under test calls it (which happens in FormTagHelper#extra_tags_for_form, for example). [#4700 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
| * | | | reorganize tests for AV::TCDavid Chelimsky2010-06-031-140/+138
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - decouple tests from the test case class by moving them outside - split out more TestCase subs as cleaner way of avoiding bleed of class level concepts Signed-off-by: José Valim <jose.valim@gmail.com>
| * | | | Adding to_key to ActiveResource objects using ActiveModel::Conversion [#4685 ↵Elomar França2010-06-032-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
| * | | | Form Helpers guide: Use new syntax for fields_for examplesJosiah Ivey2010-06-031-4/+4
| | | | |
| * | | | fix small doc bug about running single unit test filesDavid Chelimsky2010-06-031-1/+1
| | | | |
| * | | | A small rdoc change made on lines 39 and 41 on ↵jacortinas2010-06-031-2/+2
| | | | | | | | | | | | | | | | | | | | activesupport/lib/active_support/core_ext/object/to_param.rb. It looks like the method name might have been changed, and the comments were never changed to coincide with the new method name.
| * | | | Cover more of the Rails initialization process, regarding the internals of ↵Ryan Bigg2010-06-031-3/+63
| | | | | | | | | | | | | | | | | | | | YourApp::Application inheritance from Rails::Application and more.
| * | | | Fixed XHTML on activerecord_validation_callbacks guideJaime Iniesta2010-06-031-3/+4
| | | | |
| * | | | Added info about guides validation to Contribute guideJaime Iniesta2010-06-031-0/+1
| | | | |
| * | | | Fixed minor typo on creditsJaime Iniesta2010-06-031-1/+1
| | | | |
| * | | | New rake validate_guides task to validate output/*.html against the W3C ↵Jaime Iniesta2010-06-032-0/+73
| | | | | | | | | | | | | | | | | | | | Validator
| * | | | Getting Started, don't forget to link to yourself if you are adding to the ↵Rohit Arondekar2010-06-031-2/+1
| | | | | | | | | | | | | | | | | | | | changelog.
| * | | | Minor typo fix in callbacks.rb of abstract_controllerRohit Arondekar2010-06-031-1/+1
| | | | |
* | | | | AS guide: documents datetime calculationsXavier Noria2010-06-081-3/+114
| | | | |
* | | | | update docs before_validation_on_create => before_validation(:on => :create)Santiago Pastorino and José Ignacio Costa2010-06-071-1/+1
| | | | |
* | | | | getting started guide: mentions that last REE release does not have the bugs ↵Xavier Noria2010-06-071-1/+1
| | | | | | | | | | | | | | | | | | | | of MRI p248 and p249
* | | | | getting started guide: mentions that last REE release does not have the bugs ↵Xavier Noria2010-06-071-1/+1
| |_|/ / |/| | | | | | | | | | | of MRI p248 and p249
* | | | Merge remote branch 'rails/master'Xavier Noria2010-06-0734-189/+266
|\ \ \ \
| * | | | member on resource should not expect an ID.José Valim2010-06-072-6/+3
| | | | |
| * | | | Make the logic for nested_records_changed_for_autosave? simpler.José Valim2010-06-071-9/+5
| | | | | | | | | | | | | | | | | | | | [#4648 state:resolved]
| * | | | Fixing test class names and refactor line in autosave associationCarlos Antonio da Silva2010-06-073-7/+7
| | | | | | | | | | | | | | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
| * | | | Require active support/string/conversions so constantize can be used in ↵Tom Meier2010-06-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | associations.rb Signed-off-by: José Valim <jose.valim@gmail.com>
| * | | | Make AP test suite green once again and speed up performance in layouts ↵José Valim2010-06-074-45/+39
| | | | | | | | | | | | | | | | | | | | lookup for some cases.
| * | | | Observing module is using constantizeSantiago Pastorino2010-06-061-0/+1
| | | | |
| * | | | oops, two cancelling errors made a previous test pass, fixing itXavier Noria2010-06-071-1/+1
| | | | |
| * | | | the order in which we apply deltas in Date#advance matters, add test ↵Xavier Noria2010-06-071-0/+10
| | | | | | | | | | | | | | | | | | | | coverage for that
| * | | | Router accepts member routes on resource. [#4624 state:resolved]Rizwan Reza2010-06-062-5/+27
| | | | |
| * | | | Formats should always be an array.Jeremy Kemper2010-06-061-1/+1
| | | | |
| * | | | Reset request.parameters after assigning params for functional testsJeremy Kemper2010-06-061-2/+4
| | | | |
| * | | | Simplify middleware stack lazy compares using named const referencesJeremy Kemper2010-06-051-13/+5
| | | | |
| * | | | Clear const references all at onceJeremy Kemper2010-06-051-6/+9
| | | | |
| * | | | ActiveSupport::Dependencies.constantize shortcut for caching named constant ↵Jeremy Kemper2010-06-054-14/+26
| | | | | | | | | | | | | | | | | | | | lookups
| * | | | Bump i18n to 0.4.1Jeremy Kemper2010-06-052-2/+2
| | | | |
| * | | | Restore flash sweepJeremy Kemper2010-06-051-1/+1
| | | | |
| * | | | MySQL: require 2.7 or later so we can rely on result.each_hashJeremy Kemper2010-06-051-49/+8
| | | | |
| * | | | Optimize LookupContextwycats2010-06-046-14/+75
| | | | |
| * | | | Small optimization of 1.9 unescape. We should make sure that inbound ASCII ↵wycats2010-06-041-2/+6
| | | | | | | | | | | | | | | | | | | | always means UTF-8. It seems so based on a quick survey of common browsers, but let's be sure
| * | | | No need to unescape params twice if we came from Rack::Mountwycats2010-06-041-7/+7
| | | | |
| * | | | Memoizing methods on request means we need to clear them out on recycle!wycats2010-06-041-3/+3
| | | | |
| * | | | Stop the flash middleware from forcibly loading sessions even if the user ↵wycats2010-06-042-6/+6
| | | | | | | | | | | | | | | | | | | | doesn't use sessions at all