X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/bf29550db840c97cafffbe1e836750bef6c7942d..9afb533280268427cc86ab949525c9ff20605225:/app/models/trace.rb diff --git a/app/models/trace.rb b/app/models/trace.rb index 1b44e2187..7f2607b0f 100644 --- a/app/models/trace.rb +++ b/app/models/trace.rb @@ -3,8 +3,8 @@ class Trace < ActiveRecord::Base validates_presence_of :user_id, :name, :timestamp validates_presence_of :description, :on => :create - validates_length_of :name, :within => 1..255 - validates_length_of :description, :within => 1..255 + 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] @@ -20,15 +20,24 @@ class Trace < ActiveRecord::Base 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)