<?xml version="1.0"?>

<!-- $Id: identityxmlspec.xsl,v 1.3 2005/08/02 07:43:59 hugo Exp $ -->

<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
               version="1.0">

  <xsl:param name="year" select="''"/>

  <xsl:output
    method="xml"
    encoding="utf-8"
    omit-xml-declaration="no"
    doctype-public="-//W3C//DTD Specification V2.2+Addr//EN"
    doctype-system="xmlspec.dtd"
              />

  <xsl:template match="/">
    <xsl:comment>
/*
 * Copyright © <xsl:value-of select="$year"/> World Wide Web Consortium,
 *
 * (Massachusetts Institute of Technology, European Research Consortium for
 * Informatics and Mathematics, Keio University). All Rights Reserved. This
 * work is distributed under the W3C® Document License [1] in the hope that
 * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * [1] http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231
 */
    </xsl:comment>
    <xsl:apply-templates />
  </xsl:template>
  
  <xsl:template match="inform-div1[@id='Change-log']">
  </xsl:template>
  
  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>

</xsl:transform>

