Re: [Rails-core] Re: Why are has_one objects resaved when the parentis saved?

2006-07-28 Thread Marcel Molina Jr.
ectly, maybe he could share what the issues were before someone dives into implementing a plugin for this. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

Re: [Rails-core] trac still down

2006-07-15 Thread Marcel Molina Jr.
up across multiple machines. Sorry for the down time. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

Re: [Rails-core] Understanding Active Records innards

2006-06-29 Thread Marcel Molina Jr.
thing works. Just have a look at everything at once and get it in your head. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

Re: [Rails-core] RawPostDataTest#test_put_with_empty_content_type_ignores_body failure

2006-06-28 Thread Marcel Molina Jr.
sly assumed a value is a string. Applied. Thanks for the fix. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

Re: [Rails-core] Patch 4720

2006-06-27 Thread Marcel Molina Jr.
On Tue, Jun 27, 2006 at 03:26:22PM -0400, Kent Sibilev wrote: > Can anyone from the rails core team apply a small patch from ticket > 4720? Done: http://dev.rubyonrails.org/changeset/4497 Thanks, marcel -- Marcel Molina Jr. <[EMAIL

Re: [Rails-core] Too. Many. Scriptaculous. Tickets.

2006-06-03 Thread Marcel Molina Jr.
g enhancements tickets never had anything to do with patches. A distinction is indeed being made between a ticket that says "I want this" with no associated patch and a ticket that has a patch. We have been discussing doing away with the former. marcel -- Marcel Molina Jr. <[EM

Re: [Rails-core] Current process for tickets

2006-06-01 Thread Marcel Molina Jr.
et, um, processed? I'm just now writing up some > notes on keywords and it would be useful to tell folks whether adding > those keywords helps or hinders their effords. I use the reports but not religiously. I use them once-in-a-whilely. On the o

Re: [Rails-core] real bind variables

2006-05-25 Thread Marcel Molina Jr.
cientious maintainership. Just wanted to echo Jeremy's sentiment. Thanks for the work you do on the Oracle adapter. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

Re: [Rails-core] Ticket 5176: Email Address Change

2006-05-24 Thread Marcel Molina Jr.
rubyonrails.org/ticket/5176 Done. Thanks. (Not particularly bored...) ;) marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

Re: [Rails-core] ActiveRecord update_attributes filtering

2006-05-23 Thread Marcel Molina Jr.
attribute is protected, only some_object.the_protected_attribute = 'value' will set it. When assigned using mass assignment, such as some_object.attributes = hash_of_attrs, it will simply be skipped. http://api.rubyonrails.com/classes/ActiveRecord/Base.html#M000873 marcel -

Re: [Rails-core] #5167: Observer generator

2006-05-23 Thread Marcel Molina Jr.
d aren't going anywhere. The generator's implementation is straight forward and simple and there isn't much reason for anyone to write an observer class skeleton by hand. Applied in changeset 4364 (and 4365...oops). marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]>

Re: [Rails-core] resend: is there a list of standard keywords in trac?

2006-05-16 Thread Marcel Molina Jr.
org/report/18). Basically, if there isn't a customized report for the keyword here (http://dev.rubyonrails.org/report) then the keyword will likely not be used much. No need for a patch keyword. [PATCH] does the job. The keywords are a way to organize [P

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

2006-05-14 Thread Marcel Molina Jr.
un, 14 May 2006) | 1 line > > Preserve MySQL boolean column defaults when changing a column in a migration. > Closes #5015. [EMAIL PROTECTED] I must say I was expecting this to happen ;) marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> __

Re: [Rails-core] Bounty requirements

2006-05-11 Thread Marcel Molina Jr.
ndings + Rails adapter. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

Re: [Rails-core] Issue in ActiveRecord generated reader methods

2006-05-09 Thread Marcel Molina Jr.
an using read_attribute or incidental. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

Re: [Rails-core] StringIO and schema.rb

2006-04-29 Thread Marcel Molina Jr.
if I add "require 'stringio'" to boot.rb. Is this > a known issue? Taken care of in http://dev.rubyonrails.org/changeset/4315. Thanks for mentioning it. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___

Re: [Rails-core] Rails AR/Oracle Unit Test: [4296] failed (but getting better)

2006-04-27 Thread Marcel Molina Jr.
el | 2006-04-27 17:56:15 -0700 (Thu, 27 Apr 2006) | 1 line > > Only modify the sequence name in the FrontBase adapter if the FrontBase > adapter is actually being used. [Marcel Molina Jr.] > > > U ac

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

2006-04-27 Thread Marcel Molina Jr.
n the original author of the adapter reemerges perhaps he can provide a more elegant solution. In any event, thanks for doing the leg work in figuring out what was the culprit Michael. Let's see if what I did sticks. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

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

2006-04-27 Thread Marcel Molina Jr.
lt; self > # FrontBase only supports one unnamed sequence per table > def set_sequence_name( value=nil, &block ) > end The FrontBase adapter apparently requires that this be the case. I'm currently trying to redefine it only in the cas

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

2006-04-27 Thread Marcel Molina Jr.
289: sequence does not exist: > select companies_seq.nextval id from dual Sorry to bother with this. Any idea what's up here? marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

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

2006-04-27 Thread Marcel Molina Jr.
On Thu, Apr 27, 2006 at 03:51:20PM -0700, Michael A. Schoen wrote: > Marcel Molina Jr. wrote: > >Just added a new frontbase adapter... > > Which I think breaks because the require of 'frontbase' isn't rescued -- > so if frontbase itself isn't installed, kabo

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

2006-04-27 Thread Marcel Molina Jr.
pport/lib/active_support/dependencies.rb:147:in > `require': no such file to load -- frontbase (MissingSourceFile) Just added a new frontbase adapter... marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-c

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

2006-04-26 Thread Marcel Molina Jr.
On Wed, Apr 26, 2006 at 02:51:17PM -0700, Michael A. Schoen wrote: > Fixed by applying this 1-line patch. I've also updated ticket #4748. Applied. Thanks. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing l

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

2006-04-26 Thread Marcel Molina Jr.
- > > > >U activerecord/lib/active_record/connection_adapters/oracle_adapter.rb > >U activerecord/CHANGELOG > >Updated to revision 4280. Great. Thanks Michael. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]>

Re: [Rails-core] ganging up on tests and docs

2006-04-26 Thread Marcel Molina Jr.
er, or JLint? > > Something that could aid in showing where test coverage is "light"? > > Maybe you could have a look at rcov : > > http://eigenclass.org/hiki.rb?rcov There is also Insurance: http://insurance.rubyforge.org/ marcel -- Marcel Molina Jr. <[EMAIL PROTECT

Re: [Rails-core] ganging up on tests and docs

2006-04-26 Thread Marcel Molina Jr.
nternal api, but I don't think it's a good fit for the main api docs. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

Re: [Rails-core] Moving tickets forward

2006-04-20 Thread Marcel Molina Jr.
On Thu, Apr 20, 2006 at 11:28:24PM -0400, Mike Laster wrote: > On 4/20/06, Marcel Molina Jr. <[EMAIL PROTECTED]> wrote: > > I installed Frontbase and the ruby bindings for it. At first when I ran the > > test it was complaining that FBSQL_Connect.connect was getting one t

Re: [Rails-core] Moving tickets forward

2006-04-20 Thread Marcel Molina Jr.
7;2004-04-15'. It could entirely be a result of me more or less blindly removing that extra parameter or not setting everything up correctly. Perhaps you may have a sense of what may be wrong here, or perhaps our neglect has gotten your latest patch out of date though since it was posted tod

Re: [Rails-core] Bug list maintenance

2006-02-12 Thread Marcel Molina Jr.
ost-635) No problems here with the work you're doing on the bug tracker. Much appreciated in fact. marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core

Re: [Rails-core] Postgres unit tests failing on Win32?

2006-01-05 Thread Marcel Molina Jr.
t log. Are the 'polymorphic' tests just not > passing yet, or are these things I broke? try: rake rebuild_postgresql_tables Then run the tests a few times marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rai

Re: [Rails-core] plugin patches

2006-01-04 Thread Marcel Molina Jr.
y... i've got a list of bugs/patches for the > filecolumn plugin. Why not send it to the author? marcel -- Marcel Molina Jr. <[EMAIL PROTECTED]> ___ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core