Changeset ea66eb9 for stylesheets/xhtml


Ignore:
Timestamp:
01/04/2005 02:15:35 PM (20 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Children:
8a2465b8
Parents:
c3f7012
Message:

Updated testing to DocBook-XSL-1.67.2

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4485 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/xhtml/lfs-mixed.xsl

    rc3f7012 rea66eb9  
    9494    </a>
    9595  </xsl:template>
     96 
     97    <!-- The <code> xhtml tag have look issues in some browsers, like Konqueror and.
     98      isn't semantically correct (a filename isn't a code fragment) We will use <tt> for now. -->
     99  <xsl:template name="inline.monoseq">
     100    <xsl:param name="content">
     101      <xsl:call-template name="anchor"/>
     102      <xsl:call-template name="simple.xlink">
     103        <xsl:with-param name="content">
     104          <xsl:apply-templates/>
     105        </xsl:with-param>
     106      </xsl:call-template>
     107    </xsl:param>
     108    <tt class="{local-name(.)}">
     109      <xsl:if test="@dir">
     110        <xsl:attribute name="dir">
     111          <xsl:value-of select="@dir"/>
     112        </xsl:attribute>
     113      </xsl:if>
     114      <xsl:copy-of select="$content"/>
     115    </tt>
     116  </xsl:template>
     117 
     118  <xsl:template name="inline.boldmonoseq">
     119    <xsl:param name="content">
     120      <xsl:call-template name="anchor"/>
     121      <xsl:call-template name="simple.xlink">
     122        <xsl:with-param name="content">
     123          <xsl:apply-templates/>
     124        </xsl:with-param>
     125      </xsl:call-template>
     126    </xsl:param>
     127    <!-- don't put <strong> inside figure, example, or table titles -->
     128    <!-- or other titles that may already be represented with <strong>'s. -->
     129    <xsl:choose>
     130      <xsl:when test="local-name(..) = 'title' and (local-name(../..) = 'figure'
     131              or local-name(../..) = 'example' or local-name(../..) = 'table' or local-name(../..) = 'formalpara')">
     132        <tt class="{local-name(.)}">
     133          <xsl:if test="@dir">
     134            <xsl:attribute name="dir">
     135              <xsl:value-of select="@dir"/>
     136            </xsl:attribute>
     137          </xsl:if>
     138          <xsl:copy-of select="$content"/>
     139        </tt>
     140      </xsl:when>
     141      <xsl:otherwise>
     142        <strong class="{local-name(.)}">
     143          <tt>
     144            <xsl:if test="@dir">
     145              <xsl:attribute name="dir">
     146                <xsl:value-of select="@dir"/>
     147              </xsl:attribute>
     148            </xsl:if>
     149            <xsl:copy-of select="$content"/>
     150          </tt>
     151        </strong>
     152      </xsl:otherwise>
     153    </xsl:choose>
     154  </xsl:template>
     155 
     156  <xsl:template name="inline.italicmonoseq">
     157    <xsl:param name="content">
     158      <xsl:call-template name="anchor"/>
     159      <xsl:call-template name="simple.xlink">
     160        <xsl:with-param name="content">
     161          <xsl:apply-templates/>
     162        </xsl:with-param>
     163      </xsl:call-template>
     164    </xsl:param>
     165    <em class="{local-name(.)}">
     166      <tt>
     167        <xsl:if test="@dir">
     168          <xsl:attribute name="dir">
     169            <xsl:value-of select="@dir"/>
     170          </xsl:attribute>
     171        </xsl:if>
     172        <xsl:copy-of select="$content"/>
     173      </tt>
     174    </em>
     175  </xsl:template>
    96176
    97177
Note: See TracChangeset for help on using the changeset viewer.