home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 2 / Windows / System32 / wbem / en-US / xml.xsl < prev   
Encoding:
Extensible Markup Language  |  2008-01-19  |  1.7 KB  |  39 lines

  1. <?xml version="1.0"?>
  2. <!-- Copyright (c) Microsoft Corporation.  All rights reserved. -->
  3. <!-- Generic stylesheet for viewing XML -->
  4. <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  5.   <!-- This template will always be executed, even if this stylesheet is not run on the document root -->
  6.   <xsl:template>
  7.     <DIV STYLE="font-family:Courier; font-size:10pt; margin-bottom:2em">
  8.       <!-- Scoped templates are used so they don't interfere with the "kick-off" template. -->
  9.       <xsl:apply-templates select=".">
  10.         <xsl:template><xsl:apply-templates/></xsl:template>
  11.  
  12.         <xsl:template match="*">
  13.           <DIV STYLE="margin-left:1em; color:gray">
  14.             <<xsl:node-name/><xsl:apply-templates select="@*"/>/>
  15.           </DIV>
  16.         </xsl:template>
  17.  
  18.         <xsl:template match="*[node()]">
  19.           <DIV STYLE="margin-left:1em">
  20.             <SPAN STYLE="color:gray"><<xsl:node-name/><xsl:apply-templates select="@*"/>></SPAN><xsl:apply-templates select="node()"/><SPAN STYLE="color:gray"></<xsl:node-name/>></SPAN>
  21.           </DIV>
  22.         </xsl:template>
  23.  
  24.         <xsl:template match="@*">
  25.           <SPAN STYLE="color:navy"> <xsl:node-name/>="<SPAN STYLE="color:black"><xsl:value-of/></SPAN>"</SPAN>
  26.         </xsl:template>
  27.  
  28.         <xsl:template match="pi()">
  29.           <DIV STYLE="margin-left:1em; color:maroon"><?<xsl:node-name/><xsl:apply-templates select="@*"/>?></DIV>
  30.         </xsl:template>
  31.  
  32.         <xsl:template match="cdata()"><pre><![CDATA[<xsl:value-of/>]]></pre></xsl:template>
  33.  
  34.         <xsl:template match="textNode()"><xsl:value-of/></xsl:template>
  35.       </xsl:apply-templates>
  36.     </DIV>
  37.   </xsl:template>
  38. </xsl:stylesheet>
  39.