[openssl-commits] [web] master update

Mark J. Cox mark at openssl.org
Mon Jan 22 09:40:43 UTC 2018


The branch master has been updated
       via  11d98938cac1a3db7c001e497e44fcc07beb3503 (commit)
      from  e18968d4f57b74c5c7cd6dc7c1893377d21a007f (commit)


- Log -----------------------------------------------------------------
commit 11d98938cac1a3db7c001e497e44fcc07beb3503
Author: Mark J. Cox <mark at awe.com>
Date:   Mon Jan 22 09:40:03 2018 +0000

    ToC is getting large and probably isn't ever used anyway, simplify
    so we get more before the break

-----------------------------------------------------------------------

Summary of changes:
 bin/vulnerabilities.xsl | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/bin/vulnerabilities.xsl b/bin/vulnerabilities.xsl
index bf035d3..145a6b0 100644
--- a/bin/vulnerabilities.xsl
+++ b/bin/vulnerabilities.xsl
@@ -48,14 +48,16 @@
       Do not edit this file; edit vulnerabilities.xml
     </xsl:comment>
 
-    <h3><a name="toc">Table of Contents</a></h3>
-    <ul>
+    <p><a name="toc">Jump to year: </a>
       <xsl:for-each select="issue/@public[generate-id()=generate-id(key('unique-date',substring(.,1,4)))]">
 	<xsl:sort select="." order="descending"/>
 	<xsl:variable name="year" select="substring(.,1,4)"/>
-	<li><a href="#y{$year}"><xsl:value-of select="$year"/></a></li>
+        <a href="#y{$year}"><xsl:value-of select="$year"/></a>
+        <xsl:if test="position() != last()">
+  	   <xsl:text>, </xsl:text>
+        </xsl:if>        
       </xsl:for-each>
-    </ul>
+    </p>
 
     <xsl:for-each select="issue/@public[generate-id()=generate-id(key('unique-date',substring(.,1,4)))]">
       <xsl:sort select="." order="descending"/>


More information about the openssl-commits mailing list