[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Part A - Generic parse.allXML function
Below is the XSL for (almost) parsing any incoming XML and displaying it indented and highlighted. The script stopped working in the final release of IE5.0 becuase the nodename and attribute functions it was using disappeared!!? I hacked at it to at least get something running - giving my time / knowledge constraints and what I could find syntax wise at Microsofts web site. Does anyone have a better version of the below??? Would great appreciate same. Thanks, DW. ======================================================== <!-- Generic stylesheet for viewing XML --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"> <xsl:script> </xsl:script> <xsl:template><xsl:apply-templates/></xsl:template> <xsl:template match="*"> <DIV STYLE="margin-left:1em; color:red"> <<xsl:apply-templates for="@*"/>/> </DIV> </xsl:template> <xsl:template match="*[node()]"> <DIV STYLE="margin-left:1em"> <SPAN STYLE="color:blue">< <xsl:apply-templates select="@*"/> <xsl:attribute/> > </SPAN> <xsl:apply-templates select="node()"/> <SPAN STYLE="color:green"></<xsl:attribute /> /></SPAN> </DIV> </xsl:template> <xsl:template match="@*"> <SPAN STYLE="color:navy"> ="<SPAN STYLE="color:black"></SPAN>"</SPAN> </xsl:template> <xsl:template match="pi()"> <DIV STYLE="margin-left:1em; color:maroon">< <xsl:attribute/> <xsl:apply-templates select="@*"/> <xsl:value-of/> ></DIV> </xsl:template> <xsl:template match="cdata()"><pre><![CDATA[]]></pre></xsl:template> <xsl:template match="textnode()"> <xsl:value-of/> </xsl:template> <xsl:template match="/"> <HTML><TITLE>XML via XSL sample</TITLE> <BODY> <H1 STYLE="Font-family: Arial; color: blue"> <img src="xmledi.gif" align="middle"/> XML via XSL sample </H1> <xsl:apply-templates/> </BODY></HTML> </xsl:template> </xsl:stylesheet> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|