Hello,
I have the following code:
xml.instruct! :xml, :version=>“1.0”
xml.instruct! ‘xml-stylesheet’, :href=>’/stylesheets/java_app.xsl’
xml.blueman do
xml.response do
xml.code(@response.code)
@response.url ||= “”
xml.url(@response.url)
@response.message ||= “”
xml.message(@response.message)
end
end
But when this prints out its not including my xsl in the page.
Actually I’m displaying this in an iframe. I hope that doesn’t matter.
Any ideas why this isn’t working. I thought the xml builder would have
an easy link tag like javascript_include_tag etc etc, but can’t find
one