7941e17
7941e17
                xmlns="http://www.w3.org/1999/xhtml"
7941e17
                version="1.0">
7941e17
7941e17
<xsl:output method="xml" doctype-system="location.dtd"/>
7941e17
<xsl:template match="@*|node()">
7941e17
  <xsl:copy>
7941e17
    <xsl:apply-templates select="@*|node()"/>
7941e17
  </xsl:copy>
7941e17
</xsl:template>
7941e17
<xsl:template match="name">
7941e17
  <xsl:choose>
7941e17
    <xsl:when test="@xml:lang">
7941e17
      <xsl:variable name="ctext" select="../name[1]"/>
7941e17
      <xsl:variable name="thistext" select="."/>
7941e17
      <xsl:if test="$ctext != $thistext">
7941e17
        <xsl:copy>
7941e17
          <xsl:apply-templates select="@*|node()"/>
7941e17
        </xsl:copy>
7941e17
      </xsl:if>
7941e17
    </xsl:when>
7941e17
    <xsl:otherwise>
7941e17
      <xsl:copy>
7941e17
        <xsl:apply-templates select="@*|node()"/>
7941e17
      </xsl:copy>
7941e17
    </xsl:otherwise>
7941e17
  </xsl:choose>
7941e17
</xsl:template>
7941e17
7941e17
</xsl:stylesheet>