class CFPropertyList::ReXMLParser

def append_node(parent, child)

def append_node(parent, child)
  if child.is_a?(String) then
    parent.add_text child
  else
    parent.elements << child
  end
  parent
end