doc/en/news/includes.xsl
Simon L. B. Nielsen 13856e447f Make news, press, and gnome sections validate as XHTML, by making sure
the id tags generated by the news / story sections does not start with
a number.

PR:		www/55938
Submitted by:	Pav Lucistnik <pav@oook.cz>
2003-08-25 11:36:16 +00:00

26 lines
1,000 B
XML

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- $FreeBSD: www/en/news/includes.xsl,v 1.4 2001/09/18 10:04:32 chris Exp $ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:variable name="newshome">
<a href="{$base}/news/news.html">News Home</a>
</xsl:variable>
<!-- Generate a unique anchor for this event -->
<xsl:template name="generate-event-anchor">
<xsl:text>event</xsl:text>
<xsl:value-of select="ancestor::year/name"/>
<xsl:value-of select="ancestor::month/name"/>
<xsl:value-of select="ancestor::day/name"/>:<xsl:value-of select="count(preceding-sibling::event)"/>
</xsl:template>
<!-- Generate a unique anchor for this story -->
<xsl:template name="generate-story-anchor">
<xsl:text>story</xsl:text>
<xsl:value-of select="ancestor::year/name"/>
<xsl:value-of select="ancestor::month/name"/>:<xsl:text/>
<xsl:value-of select="count(following-sibling::story)"/>
</xsl:template>
</xsl:stylesheet>