2020-04-27 21:53:42 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2003-02-03 07:57:26 +00:00
|
|
|
|
2020-04-27 21:53:42 +02:00
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
2013-01-17 23:13:14 +00:00
|
|
|
<xsl:import href="../fsfe.xsl" />
|
2003-02-03 07:57:26 +00:00
|
|
|
|
2013-01-17 23:13:14 +00:00
|
|
|
<xsl:template match="associates">
|
|
|
|
<xsl:for-each select="/buildinfo/document/set/associate">
|
|
|
|
<xsl:sort select="@id" />
|
|
|
|
<h3>
|
|
|
|
<xsl:call-template name="generate-id-attribute">
|
|
|
|
<xsl:with-param name="title" select="name" />
|
|
|
|
</xsl:call-template>
|
|
|
|
<a href="{link}"><xsl:value-of select="name" /></a>
|
|
|
|
</h3>
|
|
|
|
<xsl:apply-templates select="description/node()" />
|
|
|
|
</xsl:for-each>
|
2003-02-03 07:57:26 +00:00
|
|
|
</xsl:template>
|
2020-04-27 21:53:42 +02:00
|
|
|
|
2003-02-03 07:57:26 +00:00
|
|
|
</xsl:stylesheet>
|
|
|
|
|