Details
Description
Currently office importer is generating following xwiki 1.0 code for presentation imports:
#set ($url = $xwiki.zipexplorer.getFileLink($doc, "presentation.zip", "output.html")) <iframe src="$url" frameborder=0 width=800px height=600px></iframe>
But this can be easily replaced with xwiki2.0 syntax using velocity macro and html macro as bellow:
{{velocity}}
#set ($url = $xwiki.zipexplorer.getFileLink($doc, "presentation.zip", "output.html"))
{{html}}
<iframe src="$url" frameborder=0 width=800px height=600px></iframe>
{{/html}}
{{/velocity}}