[Rails-core] Any reason not to further restrict the action names hidden by default?

2007-02-27 Thread Joe
A couple of years ago, no objections were voiced to a proposed patch of ActionController that would allow controllers to have methods with the same names as Object's methods (currently, ActionController::Base.hidden_actions, as called by action_methods, prevents this). Such a change is of interes

[Rails-core] Any plans to fix Ticket #6951

2007-02-27 Thread Jim Herzberg
Hi, I'm curious if there are plans or a timeline to fix ticket #6951. This issue is causing us problems and preventing us from easily upgrading our app to Rails 1.2.2. Suggestions for workarounds are also welcome. Thanks, Jim --~--~-~--~~~---~--~~ You received t

[Rails-core] Re: How I've Monkeypatched AR

2007-02-27 Thread Michael Koziarski
It's certainly possible to support prepared statements for a subset of our api, and i'd expect people will provide patches and benchmarks once the adapters make it feasible. Just don't expect them to provide some magic performance boosts on all adapters. It's entirely possible that the code compl

[Rails-core] Re: DateTime not fully supported?

2007-02-27 Thread Michael Koziarski
I've applied this to trunk, i think the fix is simple enough to merge to stable too, will do that in a bit. On 2/27/07, Geoff B <[EMAIL PROTECTED]> wrote: > > fedot, this might be of help to you -- I've created a patch that adds > correct #to_s conversions for DateTime, most importantly, #to_s(:d

[Rails-core] Re: Rails AR/SQLServer Unit Test: [6264] failed (getting worse)

2007-02-27 Thread Michael Koziarski
> "nzkoz" has kicked AR/SQLServer while it was down... Heh, so SQLServer preferred it when everything was busted. -- Cheers Koz --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To pos

[Rails-core] Rails AR/Oracle Unit Test: [6264] passed (fixed)

2007-02-27 Thread Michael Schoen
"nzkoz" made AR/Oracle happy again, thank you! http://dev.rubyonrails.org/changeset/6264 r6264 | nzkoz | 2007-02-27 16:49:01 -0800 (Tue, 27 Feb 2007) | 1 line Add missing files --

[Rails-core] Rails AR/SQLServer Unit Test: [6264] failed (getting worse)

2007-02-27 Thread Rich Cox
"nzkoz" has kicked AR/SQLServer while it was down... http://dev.rubyonrails.org/changeset/6264 r6264 | nzkoz | 2007-02-27 17:49:01 -0700 (Tue, 27 Feb 2007) | 1 line Add missing files

[Rails-core] Rails AR/Oracle Unit Test: [6263] failed

2007-02-27 Thread Michael Schoen
"nzkoz" made AR/Oracle cry... http://dev.rubyonrails.org/changeset/6263 r6263 | nzkoz | 2007-02-27 15:25:16 -0800 (Tue, 27 Feb 2007) | 2 lines Give DateTime correct .to_s implementations, lets it play nice with ActiveRecor

[Rails-core] Rails AR/SQLServer Unit Test: [6263] failed (but getting better)

2007-02-27 Thread Rich Cox
"nzkoz" has given AR/SQLServer some love, but it's still unhappy... http://dev.rubyonrails.org/changeset/6263 r6263 | nzkoz | 2007-02-27 16:25:16 -0700 (Tue, 27 Feb 2007) | 2 lines Give DateTime correct .to_s implementation

[Rails-core] Re: How I've Monkeypatched AR

2007-02-27 Thread Mislav Marohnić
On 2/26/07, Michael Koziarski <[EMAIL PROTECTED]> wrote: > > > Foo.find(:all, :conditions=>["bar = ?", bar) > > Without changing our API there's no way we could specify the data type > of a parameter to a prepared statement. Foo.find(:all, :conditions => { :bar => bar }) Now we can, because AR k