diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-04-18 17:30:42 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-04-18 17:30:42 -0500 |
commit | d6ee27dacd1a96ef9e5819695c7eb62720e738bc (patch) | |
tree | 895dad88ec12a3e9ccbe1dcb6e70e40bd6931d53 /kdoctools/customization/kde-nochunk.xsl | |
parent | a37d43794f4369915068f585f6ff4720e93dd2af (diff) | |
download | tdelibs-d6ee27dacd1a96ef9e5819695c7eb62720e738bc.tar.gz tdelibs-d6ee27dacd1a96ef9e5819695c7eb62720e738bc.zip |
Update files and references in support of bug report 1446.
Diffstat (limited to 'kdoctools/customization/kde-nochunk.xsl')
-rw-r--r-- | kdoctools/customization/kde-nochunk.xsl | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/kdoctools/customization/kde-nochunk.xsl b/kdoctools/customization/kde-nochunk.xsl deleted file mode 100644 index 9e05f8342..000000000 --- a/kdoctools/customization/kde-nochunk.xsl +++ /dev/null @@ -1,88 +0,0 @@ -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - version="1.0"> - -<xsl:import href="../docbook/xsl/html/autoidx.xsl"/> -<xsl:import href="../docbook/xsl/html/docbook.xsl"/> -<!-- <xsl:include href="kde-print-navig.xsl"/> --> -<xsl:include href="kde-ttlpg.xsl"/> -<xsl:include href="kde-style.xsl"/> - -<xsl:variable name="TDE_VERSION">1.13</xsl:variable> - -<xsl:param name="using.chunker">0</xsl:param> -<xsl:param name="chunk.first.sections" select="0"/> -<xsl:param name="chunk.sections" select="0"/> -<xsl:param name="chunk.section.depth" select="0"/> - -<xsl:param name="use.id.as.filename">0</xsl:param> -<xsl:param name="generate.section.toc">0</xsl:param> -<xsl:param name="generate.component.toc">0</xsl:param> -<xsl:param name="use.extensions">0</xsl:param> -<xsl:param name="admon.graphics">0</xsl:param> -<xsl:param name="kde.common">../common/</xsl:param> -<xsl:param name="html.stylesheet" select="concat($kde.common,'kde-web.css')"/> -<xsl:param name="admon.graphics.path"><xsl:value-of select="kde.common"/></xsl:param> -<xsl:param name="callout.graphics.path"><xsl:value-of select="kde.common"/></xsl:param> - - -<xsl:template name="dbhtml-filename"> -<xsl:choose> - <xsl:when test=". != /*"> - <xsl:value-of select="@id"/> - <xsl:value-of select="$html.ext"/> - </xsl:when> - <xsl:otherwise> - <xsl:text>index.html</xsl:text> - </xsl:otherwise> -</xsl:choose> -</xsl:template> - -<xsl:template name="dbhtml-dir"> -</xsl:template> - -<xsl:template name="user.head.content"> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> - <meta name="GENERATOR" content="TDE XSL Stylesheet V{$TDE_VERSION} using libxslt"/> -</xsl:template> - -<!-- try with olinks: it nearly works --><!-- - <xsl:template match="olink"> - <a> - <xsl:attribute name="href"> - <xsl:choose> - <xsl:when test="@type = 'kde-installation'"> - <xsl:choose> - <xsl:when test="@linkmode = 'kdems-man'"> - <xsl:value-of select="id(@linkmode)"/> - <xsl:value-of select="@targetdocent"/> - <xsl:text>(</xsl:text> - <xsl:value-of select="@localinfo"/> - <xsl:text>)</xsl:text> - </xsl:when> - <xsl:when test="@linkmode = 'kdems-help'"> - <xsl:value-of select="id(@linkmode)"/> - <xsl:text>/</xsl:text> - <xsl:value-of select="@targetdocent"/> -<xsl:variable name="targetdocent" select="@targetdocent"/> -<xsl:value-of select="$targetdocent"/> - <xsl:if test="@targetdocent"> - <xsl:value-of select="unparsed-entity-uri(string($targetdocent))"/> - </xsl:if> - <xsl:for-each select="document('/home/fouvry/tdeutils/doc/kedit/index.docbook')"> - <xsl:value-of select=".//*[@id=$localinfo]"/> - </xsl:for-each> - <xsl:text>#</xsl:text> - <xsl:value-of select="@localinfo"/> - </xsl:when> - </xsl:choose> - </xsl:when> - </xsl:choose> - </xsl:attribute> - <xsl:value-of select="."/> - </a> - </xsl:template> ---> - -</xsl:stylesheet> - - |