This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def full_xml | |
the_full_set = full_set | |
ancestry = [build_node(the_full_set.shift)] | |
xml = ancestry.first[:xml] | |
while !the_full_set.empty? | |
next_node = build_node(the_full_set.shift) | |
if next_node[:level] < ancestry.last[:level] | |
while next_node[:level] < ancestry.last[:level] | |
popped_node = ancestry.pop | |
xml << '</node>' if !popped_node[:closed] | |
end | |
xml << next_node[:xml] | |
elsif next_node[:level] == ancestry.last[:level] | |
xml << "</node>#{next_node[:xml]}" | |
ancestry.last[:closed] = true | |
else | |
xml << next_node[:xml] | |
end | |
ancestry << next_node | |
end | |
while !ancestry.empty? | |
next_node = ancestry.pop | |
xml << '</node>' if !next_node[:closed] | |
end | |
xml | |
end | |
def build_node(message) | |
{:xml => "<node label=\"#{message.subject}\">", | |
:level => message.level} | |
end |
hi, im a newbie in rails but in would like to utilize ur method. could u help me? my question is how to get that xml file back from the browser?
ReplyDeletehiow is that connected to the view? could u give a whole example? thx so much!
tomabroad@gmail.com
best tom
Sure Tom how about an action like this:
ReplyDeletedef some_action
@message = Message.find(params[:id])
respond_to do |format|
format.html {}
format.xml {
render :xml => @message.full_xml
}
end
end
That is assuming that a request expecting XML wants this full XML result.