view xslt/directive.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 13f4de67fbb6
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="directive">

      <a name="{@name}"/>
        <!-- <center><h4><xsl:value-of select="@name"/> </h4></center> -->

      <div class="directive">

         <table cellspacing="0">

            <xsl:apply-templates select="syntax"/>

            <xsl:apply-templates select="default"/>

            <xsl:apply-templates select="context"/>

         </table>

         <xsl:apply-templates select="appeared-in"/>

      </div>

      <xsl:apply-templates select="para"/>
   </xsl:template>

   <xsl:template match="syntax">

      <xsl:if test="position() = 1">

         <xsl:text disable-output-escaping="yes">
                &lt;tr&gt;
                &lt;td&gt;
            </xsl:text>

         <xsl:value-of select="document(concat($XML, '/i18n.xml'))                        /i18n/text[@lang = $LANG]/item[@id='syntax']"/>

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

         <xsl:text disable-output-escaping="yes">
                &lt;/td&gt;
                &lt;td&gt;
            </xsl:text>
      </xsl:if>

      <code>

         <strong>

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

         </strong>

         <xsl:if test="count(node()) != 0">

            <xsl:text> </xsl:text>
            <xsl:apply-templates/>
         </xsl:if>
         <xsl:choose>

            <xsl:when test="@block = 'yes'">

               <xsl:text> { ... }</xsl:text>
            </xsl:when>

            <xsl:otherwise>

               <xsl:text>;</xsl:text>
            </xsl:otherwise>
         </xsl:choose>

      </code>

      <br/>

      <xsl:if test="position() = last()">

         <xsl:text disable-output-escaping="yes">
                &lt;/td&gt;
                &lt;/tr&gt;
            </xsl:text>
      </xsl:if>
   </xsl:template>

   <xsl:template match="default">

      <xsl:if test="position() = 1">

         <xsl:text disable-output-escaping="yes">
                &lt;tr&gt;
                &lt;td&gt;
            </xsl:text>

         <xsl:value-of select="document(concat($XML, '/i18n.xml'))                        /i18n/text[@lang = $LANG]/item[@id='default']"/>

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

         <xsl:text disable-output-escaping="yes">
                &lt;/td&gt;
                &lt;td&gt;
            </xsl:text>
      </xsl:if>
      <xsl:choose>

         <xsl:when test="count(node()) = 0">
            —</xsl:when>

         <xsl:otherwise>

            <pre>

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

                  <xsl:when test="count(../syntax[@block='yes'])">

                     <xsl:text> {</xsl:text>
                     <xsl:apply-templates/>
                     <xsl:text>}</xsl:text>
                  </xsl:when>

                  <xsl:otherwise>

                     <xsl:text> </xsl:text>
                     <xsl:apply-templates/>
                     <xsl:text>;</xsl:text>
                  </xsl:otherwise>
               </xsl:choose>

            </pre>
         </xsl:otherwise>
      </xsl:choose>

      <xsl:if test="position() = last()">

         <xsl:text disable-output-escaping="yes">
                &lt;/td&gt;
                &lt;/tr&gt;
            </xsl:text>
      </xsl:if>
   </xsl:template>

   <xsl:template match="context">

      <xsl:if test="position() = 1">

         <xsl:text disable-output-escaping="yes">
                &lt;tr&gt;
                &lt;td&gt;
            </xsl:text>

         <xsl:value-of select="document(concat($XML, '/i18n.xml'))                        /i18n/text[@lang = $LANG]/item[@id='context']"/>

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

         <xsl:text disable-output-escaping="yes">
                &lt;/td&gt;
                &lt;td&gt;
            </xsl:text>
      </xsl:if>

      <code>
         <xsl:choose>

            <xsl:when test="count(node()) = 0">

               <xsl:value-of select="document(concat($XML, '/i18n.xml'))                        /i18n/text[@lang = $LANG]/item[@id='context.any']"/>
            </xsl:when>

            <xsl:otherwise>

               <xsl:apply-templates/>
            </xsl:otherwise>
         </xsl:choose>

      </code>
      <xsl:choose>

         <xsl:when test="position() != last()">

            <xsl:text>, </xsl:text>
         </xsl:when>

         <xsl:otherwise>

            <br/>

            <xsl:text disable-output-escaping="yes">
                &lt;/td&gt;
                &lt;/tr&gt;
            </xsl:text>
         </xsl:otherwise>
      </xsl:choose>
   </xsl:template>

   <xsl:template match="appeared-in">
      <xsl:choose>

         <xsl:when test="last() = 1">

            <p>

               <xsl:value-of select="document(concat($XML, '/i18n.xml'))                        /i18n/text[@lang = $LANG]/item                        [@id='directive.version']"/>

               <xsl:text> </xsl:text>

               <xsl:apply-templates/>.

            </p>
         </xsl:when>

         <xsl:otherwise>

            <xsl:choose>
               <xsl:when test="position() = 1">
                  <xsl:text disable-output-escaping="yes">
                        &lt;p&gt;
                    </xsl:text>
                  <xsl:value-of select="document(concat($XML, '/i18n.xml'))                                /i18n/text[@lang = $LANG]/item                                [@id='directive.versions']"/>
                  <xsl:text> </xsl:text>
                  <xsl:apply-templates/>
                  <xsl:if test="last() &gt; 2">
                     <xsl:text>,</xsl:text>
                  </xsl:if>
                  <xsl:text> </xsl:text>
               </xsl:when>
               <xsl:when test="position() != last()">
                  <xsl:apply-templates/>
                  <xsl:text>, </xsl:text>
               </xsl:when>
               <xsl:otherwise>
                  <xsl:value-of select="document(concat($XML, '/i18n.xml'))                                /i18n/text[@lang = $LANG]/item                                [@id='and']"/>
                  <xsl:text> </xsl:text>
                  <xsl:apply-templates/>.
                  <xsl:text disable-output-escaping="yes">
                        &lt;/p&gt;
                    </xsl:text>
               </xsl:otherwise>
            </xsl:choose>
         </xsl:otherwise>
      </xsl:choose>
   </xsl:template>

</xsl:stylesheet>