view xslt/security.xslt @ 1009:135920b5c61d

Marked strings with entities in japanese translation as literal. This allows to preserve information and produce correct output if the XML parser expands entities on input. The markup is similar to english and russian versions of the document.
author Vladimir Homutov <vl@nginx.com>
date Mon, 11 Nov 2013 11:54:16 +0400
parents f9c687ab1fd2
children c454373427ef
line wrap: on
line source

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

   <xsl:template match="security"> 
      <ul>
         <xsl:apply-templates/>
      </ul>
   </xsl:template>

   <xsl:template match="security/item">

      <li>

         <p>

            <xsl:value-of select="@name"/>
            <br/>
            <xsl:choose>

               <xsl:when test="@severity = 'major'">

                  <xsl:text>Severity: </xsl:text> 
                  <b>
                     <xsl:value-of select="@severity"/>
                  </b>
                  <br/>
               </xsl:when>

               <xsl:otherwise>

                  <xsl:text>Severity: </xsl:text>
                  <xsl:value-of select="@severity"/>
                  <br/>
               </xsl:otherwise>
            </xsl:choose>

            <xsl:if test="@advisory">

               <a href="{@advisory}">
                  <xsl:text>Advisory</xsl:text>
               </a>

               <br/>
            </xsl:if>

            <xsl:if test="@cert">

               <a>

                  <xsl:attribute name="href">

                     <xsl:text>http://www.kb.cert.org/vuls/id/</xsl:text>
                     <xsl:value-of select="@cert"/>
                  </xsl:attribute>

                  <xsl:text>VU#</xsl:text>
                  <xsl:value-of select="@cert"/>

               </a>
            </xsl:if>

            <xsl:if test="@cve">

               <xsl:if test="@cert">

                  <xsl:text>  </xsl:text>
               </xsl:if>

               <a>

                  <xsl:attribute name="href">

                     <xsl:text>http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-</xsl:text>
                     <xsl:value-of select="@cve"/>
                  </xsl:attribute>

                  <xsl:text>CVE-</xsl:text>
                  <xsl:value-of select="@cve"/>

               </a>
            </xsl:if>

            <xsl:if test="@core">

               <xsl:if test="@cert or @cve">

                  <xsl:text>  </xsl:text>
               </xsl:if>

               <a href="{@href}">

                  <xsl:value-of select="@core"/> 
               </a>
            </xsl:if>

            <xsl:if test="@cert or @cve or @core">

               <br/>
            </xsl:if>

            <xsl:text>Not vulnerable: </xsl:text>
            <xsl:value-of select="@good"/>
            <br/>

            <xsl:text>Vulnerable: </xsl:text>
            <xsl:value-of select="@vulnerable"/>

            <xsl:for-each select="patch">

               <br/>

               <a>

                  <xsl:attribute name="href">

                     <xsl:text>/download/</xsl:text>
                     <xsl:value-of select="@name"/>
                  </xsl:attribute>

                  <xsl:text>The patch</xsl:text>

               </a>

               <xsl:text>  </xsl:text>

               <a>

                  <xsl:attribute name="href">

                     <xsl:text>/download/</xsl:text>
                     <xsl:value-of select="@name"/>
                     <xsl:text>.asc</xsl:text>
                  </xsl:attribute>

                  <xsl:text>pgp</xsl:text>

               </a>

               <xsl:if test="@versions">

                  <xsl:text>  (for </xsl:text>
                  <xsl:value-of select="@versions"/>
                  <xsl:text>)</xsl:text>
               </xsl:if>
            </xsl:for-each>

         </p>

      </li>
   </xsl:template>

</xsl:stylesheet>