| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Further, Samoa and Tokelau jumped across the IDL from Dec 29 to Dec 31, 2011
switching from UTC-11 to UTC+13. American Samoa did not make the change and
remains at UTC-11. Pacific/Fakaofo and Pacific/Apia are in TZInfo and
documentation about the dateline change is in austalasia at IANA.
(cherry picked from commit 1d08ce5f56e45fdee41bb16b2d8d4464bc69bf22)
|
| |
|
|
|
|
| |
dangerous especially with Rack::Cache), it should only be loaded when the flash method is called
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
IE since version 6 and recently Chrome and Firefox have started following
302 redirects from XHR requests other than GET/POST using the original request
method. This can lead to DELETE requests being redirected amongst other things.
Although it doesn't directly affect the Rails framework since it doesn't return
a 302 redirect to any non-GET/POST request a note has been added to raise
awareness of the issue. Some references:
Original article from @technoweenie:
http://techno-weenie.net/2011/8/19/ie9-deletes-stuff/
Hacker News discussion of the article:
http://news.ycombinator.com/item?id=2903493
WebKit bug report:
https://bugs.webkit.org/show_bug.cgi?id=46183
Firefox bug report and changeset:
https://bugzilla.mozilla.org/show_bug.cgi?id=598304
https://hg.mozilla.org/mozilla-central/rev/9525d7e2d20d
Chrome bug report:
http://code.google.com/p/chromium/issues/detail?id=56373
HTTPbis bug report and changeset:
http://trac.tools.ietf.org/wg/httpbis/trac/ticket/160
http://trac.tools.ietf.org/wg/httpbis/trac/changeset/1428
Roy T. Fielding's history of the issue:
http://ftp.ics.uci.edu/pub/ietf/http/hypermail/1997q3/0611.html
Automated browser tests for the issue:
http://www.mnot.net/javascript/xmlhttprequest/
Fixes #4144
(cherry picked from commit 24f143789a8989f3bccde14ff28067de25cafd87)
|
|\
| |
| | |
Deprecate link_to_function and button_to_function
|
| | |
|
| |
| |
| |
| |
| | |
Closes #5886
Closes #3093
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Fix the build
|
| | |
|
|/
|
|
|
| |
* The method for persisted records in 3-2-branch is 'PUT'
* size is generated by default in inputs
|
|
|
|
|
|
|
|
| |
(cherry picked from commit 7a80b69e00f68e673c6ceb5cc684aa9196ed3d9f)
Conflicts:
actionpack/test/controller/test_test.rb
|
|
|
|
| |
closes #3341
|
| |
|
|\
| |
| | |
Warning removed 3 2 stable
|
|/ |
|
|\
| |
| | |
Do not mutate options hash
|
|/ |
|
|
|
|
| |
Fix for log tailer when the log file doesn't exist.
|
| |
|
|\
| |
| | |
Add extra order clause to fix failing test on Ruby 1.8.7
|
|/ |
|
|\
| |
| | |
Backport workarounds for Mocha behavior changes.
|
|/ |
|
|\
| |
| | |
Fix broken test from the earlier merge conflict
|
|/
|
|
| |
Seriously people, please run the test before submitting pull request.
|
|\
| |
| | |
Catch nil.to_sym errors in partial_renderer, and raise ArgumentError instead
|
| |
| |
| |
| |
| |
| | |
Conflicts:
actionpack/test/template/render_test.rb
|
| | |
|
|\ \
| | |
| | | |
Only include Rake::DSL if it's defined (Rake >= 0.9)
|
| | |
| | |
| | |
| | | |
rake < 0.9 doesn't define Rake::DSL.
|
|\ \ \
| | | |
| | | | |
Updated other README to point 3-2-stable
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
As ARes is removed from master then 3-2-stable URL should be in README.
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
Revert #5861. Feature-detect which MultiJson API to use.
|
| | | |
|
| | |
| | |
| | |
| | | |
This reverts commit 9b14e3ff80ee4044cfd89a11effcb5f52eaf888b.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
option
Backports #5900
Conflicts:
activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb
|
|\ \ \
| |/ /
|/| | |
Readds the fix for #5667 and back ports the regression fix from #5718
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This reverts commit 1166d49f62ccab789be208112163ad13183224e2.
Conflicts:
activerecord/test/cases/associations/eager_test.rb
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
(as described in #5667)
Conflicts:
activerecord/test/cases/associations/eager_test.rb
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The #relation method gets called in four places and the return value was instantly cloned in three of them. The only place that did not clone was ActiveRecord::Scoping::Default::ClassMethods#unscoped. This introduced a bug described in #5667 and should really clone the relation, too. This means all four places would clone the relation, so it doesn't make a lot of sense caching it in the first place.
The four places with calls to relations are:
activerecord/lib/active_record/scoping/default.rb:110:in `block in build_default_scope'"
activerecord/lib/active_record/scoping/default.rb:42:in `unscoped'"
activerecord/lib/active_record/scoping/named.rb:38:in `scoped'"
activerecord/lib/active_record/scoping/named.rb:52:in `scope_attributes'"
Conflicts:
activerecord/lib/active_record/core.rb
|