Makefile 1.105 -> 1.111 applications.sgml 1.24 -> 1.26 includes.sgml change entries to 5.2.1-RELEASE includes.xsl point to original release notes index.xsl 1.92 -> 1.100 internet.sgml 1.30 -> 1.33 mailto.sgml misc fixes navigation.xml new -> 1.4 news/2002/Makefile 1.1 -> 1.2 news/2002/news.xml 1.1 -> 1.2 news/Makefile 1.38 -> 1.39 news/includes.xsl 1.5 -> 1.6 news/news.xml 1.192 -> 1.216 news/newsflash.xsl 1.9 -> 1.11 news/oldnewsflash.xsl 1.5 -> 1.6 news/press.xml 1.119 -> 1.129 news/press.xsl 1.5 -> 1.8 platforms/amd64.sgml 1.5 -> 1.8 platforms/ia64/index.sgml 1.4 -> 1.5 platforms/ia64/machines.sgml 1.1 -> 1.5 platforms/ia64/refs.sgml 1.5 -> 1.6 platforms/ia64/todo.sgml 1.6 -> 1.7 platforms/mips.sgml 1.3 -> 1.4 platforms/pc98.sgml 1.8 -> 1.10 platforms/ppc.sgml 1.8 -> 1.9 platforms/sparc.sgml 1.17 -> 1.18 releases/index.sgml 1.94 -> 1.97 relnotes.sgml 1.8 -> 1.10 Obtained from: The FreeBSD German Documentation Project
34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
|
|
|
<!--
|
|
$FreeBSD: www/de/news/includes.xsl,v 1.2 2003/08/26 16:08:17 mheinen Exp $
|
|
$FreeBSDde: de-www/news/includes.xsl,v 1.4 2004/05/03 23:53:16 brueffer Exp $
|
|
basiert auf: 1.6
|
|
-->
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<xsl:variable name="newshome">
|
|
<a href="{$base}/news/news.html">FreeBSD Neuigkeiten</a>
|
|
</xsl:variable>
|
|
|
|
<xsl:variable name="presshome">
|
|
<a href="{$base}/news/press.html">FreeBSD Pressemeldungen</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>
|