How to see xml without debug devkit?
This is an open discussion with 7 replies, filed under General.
Search
You could simply use <xsl:comment><xsl:copy-of select="/" /></xsl:comment>
on the page in question. The XML will then appear in a comment block in your HTML-source.
It isn`t flexible solution for developing xslt-template. Is there any other way?
Yes, use the debug devkit. That's what it's for.
safari web inspector or firefox firefly?
I want to use safari xml view plugin instead debug devkit. But seems no solutions for that^^.
You could always just use a URL parameter to switch between output and your template:
<xsl:variable name="url-show-xml" select="'false'"/> <xsl:apply-templates match="/"> <xsl:choose> <xsl:when test="$url-show-xml = 'true'"> <xsl:copy-of select="/"/> </xsl:when> <xsl:otherwise> <!-- Normal stuff here --> </xsl:otherwise> </xsl:choose> </xsl:apply-templates>
I think using the Debug DevKit makes more sense, but whatever floats your boat.
It sounds more like you're trying to hack someone else's Symphony site... :-)
Create an account or sign in to comment.
Hi, guys. How to see xml without debug devkit, just in browser? Thanks.