]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/trace.rb
Introducing comma as tag separator (if present, otherwise it behaves as before),...
[rails.git] / app / models / trace.rb
index 03dbeb0b35d53206753972cc3da8f3422f15d3cc..692c20fc63a02e27581a71eee04181d4650c4941 100644 (file)
@@ -20,15 +20,23 @@ 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
+      self.tags = s.split().collect {|tag|
+        tt = Tracetag.new
+        tt.tag = tag
+        tt
+      }
+    end
   end
   
   def large_picture= (data)