1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- This stylesheet originates from the sample code published with the following book:
-
- Author: Sal Mangano
- Title: XSLT Cookbook
- Publisher: O'Reilly & Associates, Inc.
- ISBN 10: 0-596-00372-2
- ISBN 13: 9780596003722
- http://www.oreilly.com/catalog/xsltckbk
-
- examples: http://examples.oreilly.com/xsltckbk/
-
- Conditions on re-using the sample code:
-
- "
- Unless there is a specific prohibition on a book's catalog page,
- we put programming examples online to be used.
- The source of the code should be noted in any documentation
- and as a comment in the program itself.
- The attribution should include author, title, publisher, and ISBN.
- For further information, see our
- Policy on Re-Use of Code Examples: http://www.oreilly.com/pub/a/oreilly/ask_tim/2001/codepolicy.html.
- "
- -->
- <xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="/ | node() | @* | comment() | processing-instruction()">
- <xsl:copy>
- <xsl:apply-templates select="@* | node()"/>
- </xsl:copy>
- </xsl:template>
- </xsl:stylesheet>
|