Warning, /frameworks/kdoctools/src/customization/kde-nochunk.xsl is written in an unsupported language. File is not indexed.

0001 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
0002                 version="1.0">
0003 
0004 <xsl:import href="kde-chunk-common.xsl"/>
0005 <!-- <xsl:include href="kde-print-navig.xsl"/> -->
0006 <xsl:include href="kde-ttlpg.xsl"/>
0007 <xsl:include href="kde-style.xsl"/>
0008 
0009 <xsl:variable name="KDOCTOOLS_XSLT_VERSION">1.13</xsl:variable> 
0010 
0011 <xsl:param name="using.chunker">0</xsl:param>
0012 <xsl:param name="chunk.first.sections" select="0"/>
0013 <xsl:param name="chunk.sections" select="0"/>
0014 <xsl:param name="chunk.section.depth" select="0"/>
0015 
0016 <xsl:param name="use.id.as.filename">0</xsl:param>
0017 <xsl:param name="generate.section.toc">0</xsl:param>
0018 <xsl:param name="generate.component.toc">0</xsl:param>
0019 <xsl:param name="use.extensions">0</xsl:param>
0020 <xsl:param name="admon.graphics">0</xsl:param>
0021 <xsl:param name="kde.common">../common/</xsl:param>
0022 <xsl:param name="html.stylesheet" select="concat($kde.common,'kde-web.css')"/>
0023 <xsl:param name="admon.graphics.path"><xsl:value-of select="kde.common"/></xsl:param>
0024 
0025 
0026 <!-- try with olinks: it nearly works --><!--
0027   <xsl:template match="olink">
0028     <a>
0029       <xsl:attribute name="href">
0030         <xsl:choose>
0031           <xsl:when test="@type = 'kde-installation'">
0032             <xsl:choose>
0033               <xsl:when test="@linkmode = 'kdems-man'">
0034                 <xsl:value-of select="id(@linkmode)"/>
0035                 <xsl:value-of select="@targetdocent"/>
0036                 <xsl:text>(</xsl:text>
0037                 <xsl:value-of select="@localinfo"/>
0038                 <xsl:text>)</xsl:text>
0039               </xsl:when>
0040               <xsl:when test="@linkmode = 'kdems-help'">
0041                 <xsl:value-of select="id(@linkmode)"/>
0042                 <xsl:text>/</xsl:text>
0043                 <xsl:value-of select="@targetdocent"/>
0044 <xsl:variable name="targetdocent" select="@targetdocent"/>
0045 <xsl:value-of select="$targetdocent"/>
0046           <xsl:if test="@targetdocent">
0047             <xsl:value-of select="unparsed-entity-uri(string($targetdocent))"/>
0048           </xsl:if>
0049                 <xsl:for-each select="document('/home/fouvry/kdeutils/doc/kedit/index.docbook')">
0050                   <xsl:value-of select=".//*[@id=$localinfo]"/>
0051                 </xsl:for-each>
0052                 <xsl:text>#</xsl:text>
0053                 <xsl:value-of select="@localinfo"/>
0054               </xsl:when>
0055             </xsl:choose>
0056           </xsl:when>
0057         </xsl:choose>
0058       </xsl:attribute>
0059       <xsl:value-of select="."/>
0060     </a>
0061   </xsl:template>
0062 -->
0063 
0064 </xsl:stylesheet>
0065 
0066