Sonny Sukumar wrote:

> I'd like a browser that 
> can show an XML 
> document in tree form--preferably clickable.  

Consider using an XSLT in Cocoon to transform the XML to an HTML representation of the 
XML. I have seen some stylesheets for doing this but I'm not sure where ... it would 
be easy to write in any case. Then you can view it in whatever browser you like. 

e.g. something like:


<xsl:template match="/">
        <html><body>
                <xsl:apply-templates/>
        </body></html>
</xsl:template>

<xsl:template match="*">
        <p>&lt;<xsl:value-of select="name()"/>
        <xsl:apply-templates select="@*"/>
        &gt;</p>
</xsl:template>

<xsl:template match="@*">
        <xsl:value-of select="name()"/>="<xsl:value-of select="."/>"
</xsl:template>

etc.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to