22 lines
706 B
XML
22 lines
706 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:import href="../../fsfe.xsl" />
|
|
|
|
<xsl:template match="signatories">
|
|
|
|
<div class="indent">
|
|
<b><xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'osig'" /></xsl:call-template></b>
|
|
<ul>
|
|
<xsl:apply-templates select="/buildinfo/document/set/osig/node()" />
|
|
</ul>
|
|
|
|
<b><xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'isig'" /></xsl:call-template></b>
|
|
<ul>
|
|
<xsl:apply-templates select="/buildinfo/document/set/isig/node()" />
|
|
</ul>
|
|
</div>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|