validates_presence_of :user_id, :name, :timestamp
validates_presence_of :description, :on => :create
+ validates_length_of :name, :maximum => 255
+ validates_length_of :description, :maximum => 255
# validates_numericality_of :latitude, :longitude
validates_inclusion_of :public, :inserted, :in => [ true, false]
end
def tagstring
- return tags.collect {|tt| tt.tag}.join(" ")
+ return tags.collect {|tt| tt.tag}.join(", ")
end
def tagstring=(s)
- self.tags = s.split().collect {|tag|
- tt = Tracetag.new
- tt.tag = tag
- tt
- }
+ if s.include?','
+ self.tags = s.split(/\s*,\s*/).collect {|tag|
+ tt = Tracetag.new
+ tt.tag = tag
+ tt
+ }
+ else
+ #do as before for backwards compatibility:
+ self.tags = s.split().collect {|tag|
+ tt = Tracetag.new
+ tt.tag = tag
+ tt
+ }
+ end
end
def large_picture= (data)