search for: eventmatch

Displaying 2 results from an estimated 2 matches for "eventmatch".

Did you mean: eventmatches
2006 Dec 28
2
updating the AUTHORS file
...) rewrite to make compiz.schema regeneration a little easier, and to make it possible to generate schema files for third-party plugins. Include plugin descriptions and dependency information in the schema. add a rule to generate compiz.schemas s/expose/scale/ in dependencies tweak eventMatches slightly to allow extra modifiers to be down when recognizing a modifier keypress. (Eg, don't require the user to release Alt before pressing Control to get window snapping.) new method that replaces EV_KEY and EV_BUTTON. Tests if an event matches a binding, being more precise about modi...
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...