rails API support for history of node/segment/way + various bugfixes and cleanups

This commit is contained in:
Steve Coast 2006-11-30 18:44:40 +00:00
parent 8ef8761fa5
commit e799022131
13 changed files with 145 additions and 69 deletions

View file

@ -15,4 +15,14 @@ class OldSegment < ActiveRecord::Base
return old_segment
end
def to_xml_node
el1 = XML::Node.new 'segment'
el1['id'] = self.id.to_s
el1['from'] = self.node_a.to_s
el1['to'] = self.node_b.to_s
Segment.split_tags(el1, self.tags)
el1['visible'] = self.visible.to_s
el1['timestamp'] = self.timestamp.xmlschema
return el1
end
end