rails API support for history of node/segment/way + various bugfixes and cleanups
This commit is contained in:
parent
8ef8761fa5
commit
e799022131
13 changed files with 145 additions and 69 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue