segment.from_node = Node.find(segment.node_a.to_i)
segment.to_node = Node.find(segment.node_b.to_i)
- unless segment.precondtions_ok? # are the nodes visible?
+ unless segment.preconditions_ok? # are the nodes visible?
render :nothing => true, :status => 412
end
if way
way.user_id = @user.id
- unless way.precondtions_ok? # are the segments (and their nodes) visible?
+ unless way.preconditions_ok? # are the segments (and their nodes) visible?
render :nothing => true, :status => 412
return
end
has_many :old_segments, :foreign_key => :id
belongs_to :user
- has_one :from_node, :class_name => 'Node', :foreign_key => 'node_a'
- has_one :to_node, :class_name => 'Node', :foreign_key => 'node_b'
+ has_one :from_node, :class_name => 'Node', :foreign_key => 'id'
+ has_one :to_node, :class_name => 'Node', :foreign_key => 'id'
def self.from_xml(xml, create=false)
p = XML::Parser.new
end
end
- def precondtions_ok?
+ def preconditions_ok?
from_node and from_node.visible and to_node and to_node.visible
end