Thanks
Justin, I think that''s it.
Todd
On Nov 27, 2005, at 11:30 PM,
rails-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org wrote:
> Send Rails mailing list submissions to
> rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.rubyonrails.org/mailman/listinfo/rails
> or, via email, send a message with subject or body ''help''
to
> rails-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>
> You can reach the person managing the list at
> rails-owner-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Rails digest..."
>
>
> Today''s Topics:
>
> 1. OT: good admin gui postgresql on OSX? (Jeroen Houben)
> 2. Re: restricting list output (newbie) (patrick k)
> 3. Re: validates_uniqueness_of (Justin Forder)
> 4. Re: Problems with observe_form and parameters (Gitte Wange)
> 5. Re: dynamic variable names? (James Adam)
> 6. Re: dynamic variable names? (Craig Webster)
> 7. Re: OT: good admin gui postgresql on OSX? (CSN)
> 8. Re: has_and_belongs_to_many question (Joe Van Dyk)
> 9. Re: has_and_belongs_to_many question (Joe Van Dyk)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Sun, 27 Nov 2005 22:02:56 +0100
> From: Jeroen Houben <jeroen-aHd7JyfBtzlmR6Xm/wNWPw@public.gmane.org>
> Subject: [Rails] OT: good admin gui postgresql on OSX?
> To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
> Message-ID:
<438A1F00.8020303-aHd7JyfBtzlmR6Xm/wNWPw@public.gmane.org>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> Hi,
>
> I recently bought by first Mac and I''m looking for some
alternatives
> for
> my windows applications.
>
> Does anybody know a decent gui admin app for postgresql? On windows I
> use postgresql manager:
> http://www.sqlmanager.net/en/products/postgresql/manager
>
> I find this a very good piece of software and it''s free, even
though I
> paid a little for some extra features. I''d love to use something
> similar
> on my mac, preferably free. pgmyadmin is not an option.
>
> Thanks in advance!
>
> Jeroen
>
>
> ------------------------------
>
> Message: 2
> Date: Sun, 27 Nov 2005 22:03:29 +0100
> From: patrick k
<patrick-KzucmO8QuWNZ0wkgCNX5VF6hYfS7NtTn@public.gmane.org>
> Subject: Re: [Rails] restricting list output (newbie)
> To: <rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org>
> Message-ID:
<BFAFDDB1.87B8%patrick-KzucmO8QuWNZ0wkgCNX5VF6hYfS7NtTn@public.gmane.org>
> Content-Type: text/plain; charset="ISO-8859-1"
>
> nice. tried it and ... worked. thanks.
>
> looks like this is a more appropriate way to handle the problem
> compared
> with changing the HTML-code.
>
> this should be part of the tuturial, wiki ... (maybe it already is,
> but i
> didn´t find it).
>
>
>> define a subset of Author.content_columns in your controller and then
>> use this in your scaffold loop instead of Author.content_columns
>> directly:
>>
>> desired_columns = [''first_name'',
''last_name'']
>> @content_columns = Author.content_columns.select { |c|
>> desired_columns.include?(c.name) }
>>
>>
>> - james
>>
>> On 11/27/05, Justin Forder
<justin-zSfPWr5aQuznITO/+xaoB7VCufUGDwFn@public.gmane.org> wrote:
>>> patrick k wrote:
>>>> i tried your solution, but it didn´t seem "clean" to
me.
>>>>
>>>> i thought of something like (referring to the example):
>>>> @authors =
Author.find(''first_name'',''last_name'')
>>>>
>>>> of course, this code is not correct. but there should be an
easier
>>>> way than
>>>> modifying the HTML by hand, right?
>>>>
>>>
>>> No, generated HTML is just to get you started. You should expect to
>>> replace it completely.
>>>
>>> Justin
>>>
>>>>
>>>>> Huh? :) Oh you''re probably referring to
scaffolding.
>>>>>
>>>>> Well, you could just do it by hand.
>>>>>
>>>>>
>>>>> Say your table looks like this:
>>>>>
>>>>> Authors
>>>>> =========>>>>> id
>>>>> first_name
>>>>> last_name
>>>>> email
>>>>>
>>>>>
>>>>> Controller:
>>>>>
>>>>> def list
>>>>> @authors = Author.find(:all)
>>>>> # or you might have paginate stuff there instead
>>>>> end
>>>>>
>>>>> View:
>>>>>
>>>>> Just write this code by hand:
>>>>>
>>>>> <table id="authors_list">
>>>>> <tr>
>>>>> <th>First Name</th>
>>>>> <th>Last Name</th>
>>>>> </tr>
>>>>> <% for author in @authors %>
>>>>> <tr>
>>>>> <td><%=author.first_name %></td>
>>>>> <td><%=author.last_name %></td>
>>>>> </tr>
>>>>> <% end %>
>>>>> </table>
>>>>>
>>>>>
>>>>> Don''t fear the HTML :)
>>>>>
>>>>>
>>>>> -----Original Message-----
>>>>> From:
rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>>>>>
[mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On
Behalf Of patrick k
>>>>> Sent: Sunday, November 27, 2005 6:40 AM
>>>>> To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>>>>> Subject: [Rails] restricting list output (newbie)
>>>>>
>>>>>
>>>>> i have a table with 5 columns, but i only want to display 3
>>>>> columns with
>>>>> "list.rhtml".
>>>>>
>>>>> what´s the best way to do this?
>>>>>
>>>>> _______________________________________________
>>>>> Rails mailing list
>>>>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>>>>> http://lists.rubyonrails.org/mailman/listinfo/rails
>>>>> _______________________________________________
>>>>> Rails mailing list
>>>>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>>>>> http://lists.rubyonrails.org/mailman/listinfo/rails
>>>>
>>>>
>>>> _______________________________________________
>>>> Rails mailing list
>>>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>>>> http://lists.rubyonrails.org/mailman/listinfo/rails
>>>>
>>>>
>>>
>>> _______________________________________________
>>> Rails mailing list
>>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>>> http://lists.rubyonrails.org/mailman/listinfo/rails
>>>
>> _______________________________________________
>> Rails mailing list
>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>> http://lists.rubyonrails.org/mailman/listinfo/rails
>
>
>
> ------------------------------
>
> Message: 3
> Date: Sun, 27 Nov 2005 21:07:34 +0000
> From: Justin Forder
<justin-zSfPWr5aQuznITO/+xaoB7VCufUGDwFn@public.gmane.org>
> Subject: Re: [Rails] validates_uniqueness_of
> To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
> Message-ID:
<438A2016.7040702-zSfPWr5aQuznITO/+xaoB7VCufUGDwFn@public.gmane.org>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> tmatsumoto wrote:
>> Hi,
>>
>> I''m trying to figure some stuff out about using
>> validates_uniqueness_of,
>> particularly if it is possible to validate a unique object in a
>> database
>> and rather than throwing an error like "name already exist",
use the
>> primary key of the already existing object to pass along to join
>> tables.
>>
>> So far many of the examples I''ve come across has
>> validates_uniqueness_of
>> stopping if the object is not unique.
>>
>> What happens if there is a table of authors joined to a table of
>> articles, shouldn''t each author in the authors table be unique
but
>> still
>> joined by its id if there is a new article by that author?
>
> There''s a new find_or_create_by_X feature in the latest release
> candidate of Rails... I couldn''t find it in the ActiveRecord
> documentation, but DHH mentioned it in the Rails blog here:
>
> http://weblog.rubyonrails.com/articles/2005/11/07/rails-1-0-rc4-0-14
> -3-its-the-final-countdown
>
> Looks as if it is what you are looking for.
>
> Justin
>
>>
>> Thanks,
>>
>> Todd
>
>
> ------------------------------
>
> Message: 4
> Date: Sun, 27 Nov 2005 22:08:52 +0100
> From: Gitte Wange <gitte-vGiBmfdlLJY@public.gmane.org>
> Subject: Re: [Rails] Problems with observe_form and parameters
> To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
> Message-ID: <438A2064.3030807-vGiBmfdlLJY@public.gmane.org>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Ryan Raaum wrote:
>> I think you want Form.serialize
>>
>> http://wiki.rubyonrails.com/rails/pages/observe_form+-
>> +Passing+Parameters/
>>
>> -r
>
> Thanks !
> It really helped and everything is working totally cool!
> Maybe the info needs to be worked into the rdoc documentation.
>
> Greetings,
> Gitte Wange
>
>
> ------------------------------
>
> Message: 5
> Date: Sun, 27 Nov 2005 21:57:05 +0000
> From: James Adam <james.adam-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Subject: Re: [Rails] dynamic variable names?
> To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
> Message-ID:
>
<9ec5d0aa0511271357i7914a52al3f4a52f8a956d055-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
> Content-Type: text/plain; charset=ISO-8859-1
>
> I take it there''s a very good reason why you can''t have
an array
> called ''foo'', and store your values in foo[0], foo[1] and
so on?
>
> - james
>
> On 11/27/05, Frank Kim
<railsonly-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>> Hi,
>> In Ruby is there a way to create variable names that are dynamic? An
>> example would be I have a loop and I want to name the variables
>> "foo_0",
>> "foo_1", etc. Obviously in this case I don''t want
to use an Array.
>> Thanks,
>> Frank
>> _______________________________________________
>> Rails mailing list
>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>> http://lists.rubyonrails.org/mailman/listinfo/rails
>>
>>
>>
>
>
> ------------------------------
>
> Message: 6
> Date: Sun, 27 Nov 2005 22:09:16 +0000
> From: Craig Webster <craig-07VhxHapISisTnJN9+BGXg@public.gmane.org>
> Subject: Re: [Rails] dynamic variable names?
> To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
> Message-ID:
<5DCC3B43-98DA-40F6-83D8-CA881E2825CF-07VhxHapISisTnJN9+BGXg@public.gmane.org>
> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed
>
> On 27 Nov 2005, at 20:04, Frank Kim wrote:
>> In Ruby is there a way to create variable names that are dynamic?
>> An example would be I have a loop and I want to name the variables
>> "foo_0", "foo_1", etc. Obviously in this case I
don''t want to use
>> an Array.
>
> It sounds /exactly/ like you want to use an array here... why
> wouldn''t you use an array?
>
> Yours,
> Craig
> --
> Craig Webster | t: +44 (0)131 516 8595 | e:
craig-07VhxHapISisTnJN9+BGXg@public.gmane.org
> Xeriom.NET | f: +44 (0)709 287 1902 | w: http://xeriom.net
>
>
>
>
>
> ------------------------------
>
> Message: 7
> Date: Sun, 27 Nov 2005 14:11:43 -0800 (PST)
> From: CSN
<cool_screen_name90001-/E1597aS9LQAvxtiuMwx3w@public.gmane.org>
> Subject: Re: [Rails] OT: good admin gui postgresql on OSX?
> To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
> Message-ID:
<20051127221143.65001.qmail-LnnTuVcp3aSA/QwVtaZbd3CJp6faPEW9@public.gmane.org>
> Content-Type: text/plain; charset=iso-8859-1
>
>
> I hear that pgadmin has been ported (or it''s at least in the
works):
> http://www.pgadmin.org/
>
> csn
>
>
> --- Jeroen Houben <jeroen-aHd7JyfBtzlmR6Xm/wNWPw@public.gmane.org>
wrote:
>
>> Hi,
>>
>> I recently bought by first Mac and I''m looking for some
alternatives
>> for
>> my windows applications.
>>
>> Does anybody know a decent gui admin app for postgresql? On windows I
>> use postgresql manager:
>> http://www.sqlmanager.net/en/products/postgresql/manager
>>
>> I find this a very good piece of software and it''s free, even
though I
>> paid a little for some extra features. I''d love to use
something
>> similar
>> on my mac, preferably free. pgmyadmin is not an option.
>>
>> Thanks in advance!
>>
>> Jeroen
>> _______________________________________________
>> Rails mailing list
>> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
>> http://lists.rubyonrails.org/mailman/listinfo/rails
>>
>
>
>
>
> __________________________________
> Yahoo! Music Unlimited
> Access over 1 million songs. Try it free.
> http://music.yahoo.com/unlimited/
>
>
> ------------------------------
>
> Message: 8
> Date: Sun, 27 Nov 2005 14:24:10 -0800
> From: Joe Van Dyk <joevandyk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Subject: [Rails] Re: has_and_belongs_to_many question
> To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
> Message-ID:
>
<c715e640511271424v292606bdr1ec01927042dae00-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On 11/26/05, Joe Van Dyk
<joevandyk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>> Can I clarify this question somehow?
>
> Ok, to recap:
>
> create_table :training_events do |t|
> ... event stuff
> end
>
> create_table :training_events_users do |t|
> t.column :user_id, :int
> t.column :training_event_id, :int
> t.column :created_on, :datetime
> t.column :modified_on, :datetime
> end
>
> create_table :users do |t|
> ... user stuff
> end
>
> class User < ActiveRecord::Base
> has_and_belongs_to_many :training_events
> ...
> end
>
> class TrainingEvent < ActiveRecord::Base
> has_and_belongs_to_many :users
> end
>
> The error:
> SystemStackError in <controller not set>#<action not set>
>
> stack level too deep
>
> ./script/../config/../vendor/rails/activesupport/lib/active_support/
> inflector.rb:107:in
> `singularize''
> ./script/../config/../vendor/rails/activesupport/lib/active_support/
> inflector.rb:107:in
> `singularize''
> ./script/../config/../vendor/rails/activerecord/lib/active_record/
> associations.rb:693:in
> `associate_identification''
> ./script/../config/../vendor/rails/activerecord/lib/active_record/
> associations.rb:353:in
> `has_many_without_reflection''
> (eval):5:in `has_many''
> #{RAILS_ROOT}/app/models/chapter.rb:2
> (eval):5:in `belongs_to''
> #{RAILS_ROOT}/app/models/training_event.rb:4
> (eval):5:in `has_many''
> #{RAILS_ROOT}/app/models/chapter.rb:2
> (eval):5:in `belongs_to''
> #{RAILS_ROOT}/app/models/training_event.rb:4
> (eval):5:in `has_many''
> #{RAILS_ROOT}/app/models/chapter.rb:2
> (eval):5:in `belongs_to''
> #{RAILS_ROOT}/app/models/training_event.rb:4
> (eval):5:in `has_many''
> #{RAILS_ROOT}/app/models/chapter.rb:2
> (eval):5:in `belongs_to''
> #{RAILS_ROOT}/app/models/training_event.rb:4
> (eval):5:in `has_many''
> #{RAILS_ROOT}/app/models/chapter.rb:2
> (eval):5:in `belongs_to''
>
>
>
>
>> On 11/26/05, Joe Van Dyk
<joevandyk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>> Ok, this is making me feel really dumb.
>>>
>>> I have Users. I have TrainingEvents. I have a join table called
>>> training_events_users which contains a user_id and a training_event
>>> id.
>>>
>>> Users habtm TrainingEvents and TrainingEvents habtm Users. My
tests
>>> work almost perfectly [1].
>>>
>>> However, when I load the site in a web browser, I get a "stack
level
>>> too deep" error [2].
>>>
>>> Any ideas? I''m using edge Rails.
>>>
>>> Thanks,
>>> Joe
>>>
>>> [1]
>>> This test fails on the second line. @bob is a User, and @seattle
is
>>> a
>>> training event.
>>> assert @bob.training_events.include?(@seattle)
>>> assert @seattle.users.include?(@bob)
>>>
>>> @seattle.users does contain @bob, but it''s a new @bob
object that
>>> contains a @training_event that contains a @bob, if that makes
sense.
>>>
>>>
>>> [2]
>>> ./script/../config/../vendor/rails/activerecord/lib/active_record/
>>> validations.rb:682:in
>>> `|''
>>> ./script/../config/../vendor/rails/activerecord/lib/active_record/
>>> validations.rb:682:in
>>> `write_inheritable_set''
>>> ./script/../config/../vendor/rails/activerecord/lib/active_record/
>>> validations.rb:240:in
>>> `validate_on_create''
>>> ./script/../config/../vendor/rails/activerecord/lib/active_record/
>>> validations.rb:379:in
>>> `validates_presence_of''
>>> ./script/../config/../vendor/rails/activerecord/lib/active_record/
>>> validations.rb:378:in
>>> `validates_presence_of''
>>> /Users/joe/Projects/cisv/trunk/vendor/plugins/login_engine/lib/
>>> login_engine/authenticated_user.rb:16:in
>>> `included''
>>> /Users/joe/Projects/cisv/trunk/vendor/plugins/login_engine/lib/
>>> login_engine/authenticated_user.rb:9:in
>>> `included''
>>> #{RAILS_ROOT}/app/models/user.rb:2
>>> (eval):5:in `has_and_belongs_to_many''
>>> #{RAILS_ROOT}/app/models/training_event.rb:3
>>> (eval):5:in `has_and_belongs_to_many''
>>> #{RAILS_ROOT}/app/models/user.rb:13
>>> (eval):5:in `has_and_belongs_to_many''
>>> #{RAILS_ROOT}/app/models/training_event.rb:3
>>> (eval):5:in `has_and_belongs_to_many''
>>> #{RAILS_ROOT}/app/models/user.rb:13
>>> (eval):5:in `has_and_belongs_to_many''
>>> #{RAILS_ROOT}/app/models/training_event.rb:
>>>
>>
>
>
> ------------------------------
>
> Message: 9
> Date: Sun, 27 Nov 2005 14:26:55 -0800
> From: Joe Van Dyk <joevandyk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Subject: [Rails] Re: has_and_belongs_to_many question
> To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
> Message-ID:
>
<c715e640511271426y56c135fema78fa978c1ebfb85-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On 11/27/05, Joe Van Dyk
<joevandyk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>> On 11/26/05, Joe Van Dyk
<joevandyk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>> Can I clarify this question somehow?
>>
>> Ok, to recap:
>>
>> create_table :training_events do |t|
>> ... event stuff
>> end
>>
>> create_table :training_events_users do |t|
>> t.column :user_id, :int
>> t.column :training_event_id, :int
>> t.column :created_on, :datetime
>> t.column :modified_on, :datetime
>> end
>>
>> create_table :users do |t|
>> ... user stuff
>> end
>>
>> class User < ActiveRecord::Base
>> has_and_belongs_to_many :training_events
>> ...
>> end
>>
>> class TrainingEvent < ActiveRecord::Base
>> has_and_belongs_to_many :users
>> end
>
> Whoops, I posted the wrong error before. Here''s the correct one:
>
> SystemStackError in <controller not set>#<action not set>
>
> stack level too deep
>
> ./script/../config/../vendor/rails/activerecord/lib/active_record/
> validations.rb:682:in
> `|''
> ./script/../config/../vendor/rails/activerecord/lib/active_record/
> validations.rb:682:in
> `write_inheritable_set''
> ./script/../config/../vendor/rails/activerecord/lib/active_record/
> validations.rb:240:in
> `validate_on_create''
> ./script/../config/../vendor/rails/activerecord/lib/active_record/
> validations.rb:379:in
> `validates_presence_of''
> ./script/../config/../vendor/rails/activerecord/lib/active_record/
> validations.rb:378:in
> `validates_presence_of''
> /home/joe/projects/cisv/trunk/vendor/plugins/login_engine/lib/
> login_engine/authenticated_user.rb:16:in
> `included''
> /home/joe/projects/cisv/trunk/vendor/plugins/login_engine/lib/
> login_engine/authenticated_user.rb:9:in
> `included''
> #{RAILS_ROOT}/app/models/user.rb:2
> (eval):5:in `has_and_belongs_to_many''
> #{RAILS_ROOT}/app/models/training_event.rb:3
> (eval):5:in `has_and_belongs_to_many''
> #{RAILS_ROOT}/app/models/user.rb:13
> (eval):5:in `has_and_belongs_to_many''
> #{RAILS_ROOT}/app/models/training_event.rb:3
> (eval):5:in `has_and_belongs_to_many''
> #{RAILS_ROOT}/app/models/user.rb:13
> (eval):5:in `has_and_belongs_to_many''
>
>>> On 11/26/05, Joe Van Dyk
<joevandyk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
>>>> Ok, this is making me feel really dumb.
>>>>
>>>> I have Users. I have TrainingEvents. I have a join table
called
>>>> training_events_users which contains a user_id and a
training_event
>>>> id.
>>>>
>>>> Users habtm TrainingEvents and TrainingEvents habtm Users. My
tests
>>>> work almost perfectly [1].
>>>>
>>>> However, when I load the site in a web browser, I get a
"stack level
>>>> too deep" error [2].
>>>>
>>>> Any ideas? I''m using edge Rails.
>>>>
>>>> Thanks,
>>>> Joe
>>>>
>>>> [1]
>>>> This test fails on the second line. @bob is a User, and
@seattle
>>>> is a
>>>> training event.
>>>> assert @bob.training_events.include?(@seattle)
>>>> assert @seattle.users.include?(@bob)
>>>>
>>>> @seattle.users does contain @bob, but it''s a new @bob
object that
>>>> contains a @training_event that contains a @bob, if that makes
>>>> sense.
>>>>
>>>>
>>>> [2]
>>>>
./script/../config/../vendor/rails/activerecord/lib/active_record/
>>>> validations.rb:682:in
>>>> `|''
>>>>
./script/../config/../vendor/rails/activerecord/lib/active_record/
>>>> validations.rb:682:in
>>>> `write_inheritable_set''
>>>>
./script/../config/../vendor/rails/activerecord/lib/active_record/
>>>> validations.rb:240:in
>>>> `validate_on_create''
>>>>
./script/../config/../vendor/rails/activerecord/lib/active_record/
>>>> validations.rb:379:in
>>>> `validates_presence_of''
>>>>
./script/../config/../vendor/rails/activerecord/lib/active_record/
>>>> validations.rb:378:in
>>>> `validates_presence_of''
>>>> /Users/joe/Projects/cisv/trunk/vendor/plugins/login_engine/lib/
>>>> login_engine/authenticated_user.rb:16:in
>>>> `included''
>>>> /Users/joe/Projects/cisv/trunk/vendor/plugins/login_engine/lib/
>>>> login_engine/authenticated_user.rb:9:in
>>>> `included''
>>>> #{RAILS_ROOT}/app/models/user.rb:2
>>>> (eval):5:in `has_and_belongs_to_many''
>>>> #{RAILS_ROOT}/app/models/training_event.rb:3
>>>> (eval):5:in `has_and_belongs_to_many''
>>>> #{RAILS_ROOT}/app/models/user.rb:13
>>>> (eval):5:in `has_and_belongs_to_many''
>>>> #{RAILS_ROOT}/app/models/training_event.rb:3
>>>> (eval):5:in `has_and_belongs_to_many''
>>>> #{RAILS_ROOT}/app/models/user.rb:13
>>>> (eval):5:in `has_and_belongs_to_many''
>>>> #{RAILS_ROOT}/app/models/training_event.rb:
>>>>
>>>
>>
>
>
> ------------------------------
>
> _______________________________________________
> Rails mailing list
> Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
> http://lists.rubyonrails.org/mailman/listinfo/rails
>
>
> End of Rails Digest, Vol 14, Issue 514
> **************************************
>