Displaying 2 results from an estimated 2 matches for "eventmatching".
2006 Dec 28
2
updating the AUTHORS file
Hey everyone,
I like to get the AUTHORS file updated before the next release.
I suggest that we add the name and email of anyone who contributed some
piece of code to compiz. For people who have contributed such a
significant piece of code that it can be considered an algorithm or some
functionality (e.g. Mirco's sky dome support in the cube plugin or
S?ren's plane plugin), that should
2006 Mar 19
1
some strange behavior for has_many with STI
...class Activity < ActiveRecord::Base
belongs_to :user
has_many :comments, :conditions => "type = ''Activity''", :foreign_key
=> "type_id"
acts_as_taggable :join_class_name => "TagActivity"
class Event < ActiveRecord::Base
include EventMatching
belongs_to :activity_type
has_and_belongs_to_many :users
has_many :comments, :conditions => "type = ''Event''", :foreign_key => "type_id"
class Comment < ActiveRecord::Base
belongs_to :user
belongs_to :activity, :conditions => "type =...