You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jc...@apache.org on 2017/07/27 20:26:03 UTC

svn commit: r1803232 - /httpd/site/trunk/content/security/vulnerabilities-httpd.page/securitydb.xsl

Author: jchampion
Date: Thu Jul 27 20:26:02 2017
New Revision: 1803232

URL: http://svn.apache.org/viewvc?rev=1803232&view=rev
Log:
vulns page: replace obsolete <a> anchor with id

HTML5 browsers now complain about the anchor idiom (both the empty <a/>
tag and the use of the obsolete name attribute). Now that we have a
header element, give that an id instead.

Modified:
    httpd/site/trunk/content/security/vulnerabilities-httpd.page/securitydb.xsl

Modified: httpd/site/trunk/content/security/vulnerabilities-httpd.page/securitydb.xsl
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/security/vulnerabilities-httpd.page/securitydb.xsl?rev=1803232&r1=1803231&r2=1803232&view=diff
==============================================================================
--- httpd/site/trunk/content/security/vulnerabilities-httpd.page/securitydb.xsl (original)
+++ httpd/site/trunk/content/security/vulnerabilities-httpd.page/securitydb.xsl Thu Jul 27 20:26:02 2017
@@ -60,9 +60,9 @@ Fixed in Apache httpd <xsl:value-of sele
 
 <xsl:template match="issue">
   <dt>
-  <h3>
+  <h3 id="{cve/@name}">
     <xsl:value-of select="severity"/>:
-    <a name="{cve/@name}" /><name name="{cve/@name}"><xsl:value-of select="title"/></name>
+    <name name="{cve/@name}"><xsl:value-of select="title"/></name>
     (<xsl:apply-templates select="cve"/>)
   </h3>
   </dt>