- Allow generating only PGP fingerprints
This commit is contained in:
parent
2fb105f2e7
commit
42293fc096
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=44165
2 changed files with 23 additions and 5 deletions
|
@ -8,10 +8,23 @@
|
|||
|
||||
<xsl:output method="text"/>
|
||||
|
||||
<xsl:param name="generate.fingerprint.only" select="0"/>
|
||||
|
||||
<xsl:template match="/">
|
||||
<xsl:for-each select="//db:programlisting[@role='pgpkey']">
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:text>
</xsl:text>
|
||||
</xsl:for-each>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$generate.fingerprint.only">
|
||||
<xsl:for-each select="//db:programlisting[@role='pgpfingerprint']">
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:text>
</xsl:text>
|
||||
</xsl:for-each>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:otherwise>
|
||||
<xsl:for-each select="//db:programlisting[@role='pgpkey' or @role='pgpfingerprint']">
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:text>
</xsl:text>
|
||||
</xsl:for-each>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue