- From: Hugo Haas via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 02 Aug 2005 10:19:49 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/tools
In directory homer:/tmp/cvs-serv11388
Added Files:
identity-bare.xsl
Log Message:
Identity with doctype
--- NEW FILE: identity-bare.xsl ---
<?xml version="1.0"?>
<!-- $Id: identity-bare.xsl,v 1.1 2005/08/02 10:19:47 hugo Exp $ -->
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output
method="xml"
encoding="utf-8"
omit-xml-declaration="no"
/>
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:transform>
Received on Tuesday, 2 August 2005 10:19:54 UTC