home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 2 / Windows / System32 / wbem / rawxml.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2006-09-18  |  623 b   |  14 lines

  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2. <!-- Copyright (c) Microsoft Corporation.  All rights reserved. -->
  3.  
  4.    <!-- Match the root node -->
  5.    <xsl:output method="xml" indent="yes" encoding="utf-16" omit-xml-declaration="yes"/>
  6.   <xsl:template match="/">
  7.       <xsl:apply-templates select="*|@*|node()|comment()|processing-instruction()"/>
  8.    </xsl:template>
  9.  
  10.   <xsl:template match="*|@*|node()|comment()|processing-instruction()">
  11.     <xsl:copy><xsl:apply-templates select="*|@*|node()|comment()|processing-instruction()"/></xsl:copy>
  12.   </xsl:template>
  13. </xsl:stylesheet>
  14.