- From: David Orchard via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 10 Nov 2006 19:21:34 +0000
- To: public-ws-policy-eds@w3.org
Update of /sources/public/2006/ws/policy
In directory hutz:/tmp/cvs-serv32068
Added Files:
UpdatedBibl.xsl
Log Message:
initial rev, for wsd11elementidentifiers
--- NEW FILE: UpdatedBibl.xsl ---
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<!-- <xsl:import href="http://www.w3.org/2001/tag/doc/xmlspec.xsl"/> -->
<xsl:import href="http://dev.w3.org/cvsweb/~checkout~/spec-prod/html/xmlspec.xsl?rev=1.54"/>
<xsl:template match="bibl">
<dt class="label">
<xsl:if test="@id">
<a name="{@id}" id="{@id}"/>
</xsl:if>
<xsl:choose>
<xsl:when test="@key">
<xsl:value-of select="@key"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@id"/>
</xsl:otherwise>
</xsl:choose>
</dt>
<dd>
<xsl:apply-templates/>
<xsl:if test="@href">
(See <a href="{@href}">
<xsl:value-of select="@href"/>
</a>)
</xsl:if>
</dd>
</xsl:template>
<xsl:template match="latestloc">
<dt>Latest version:</dt>
<dd>
<xsl:apply-templates />
</dd>
</xsl:template>
</xsl:stylesheet>
Received on Friday, 10 November 2006 19:21:46 UTC