aboutsummaryrefslogtreecommitdiffstats
path: root/stylesheets/lfs-xsl/docbook-xsl-1.78.1/manpages/inline.xsl
diff options
context:
space:
mode:
authorPierre Labastie <pieere@linuxfromscratch.org>2020-03-13 09:20:45 +0000
committerPierre Labastie <pieere@linuxfromscratch.org>2020-03-13 09:20:45 +0000
commit2e524f93fc03353e6fb05333d8041505948959eb (patch)
tree0e2f8a60e47c994d49152b300f0d698a7eb29c4f /stylesheets/lfs-xsl/docbook-xsl-1.78.1/manpages/inline.xsl
parentcc98817b6165e5307c1fc38328cdc2a1cc2de257 (diff)
Since LFS started using docbook-1.78.1, there is a lot of unused data
in the stylesheet directory. Basically, a whole docbook-stylesheet is there, while we need only fo and xhtml (+ some common dirs). Each time we checkout the repo, we have to download this whole thing, which is by far the biggest part of the repo (~33 M). By removing unused cruft, this could be down to ~12 M. Of course, it would be even better to remove completely the stylesheets and use host ones (repo size down to 2M). but let's do this first, it is easier :) git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11778 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'stylesheets/lfs-xsl/docbook-xsl-1.78.1/manpages/inline.xsl')
-rw-r--r--stylesheets/lfs-xsl/docbook-xsl-1.78.1/manpages/inline.xsl219
1 files changed, 0 insertions, 219 deletions
diff --git a/stylesheets/lfs-xsl/docbook-xsl-1.78.1/manpages/inline.xsl b/stylesheets/lfs-xsl/docbook-xsl-1.78.1/manpages/inline.xsl
deleted file mode 100644
index 56ca4c506..000000000
--- a/stylesheets/lfs-xsl/docbook-xsl-1.78.1/manpages/inline.xsl
+++ /dev/null
@@ -1,219 +0,0 @@
-<?xml version='1.0'?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:exsl="http://exslt.org/common"
- version='1.0'>
-
-<!-- ********************************************************************
- $Id: inline.xsl 7897 2008-03-10 15:46:03Z xmldoc $
- ********************************************************************
-
- This file is part of the XSL DocBook Stylesheet distribution.
- See ../README or http://docbook.sf.net/release/xsl/current/ for
- copyright and other information.
-
- ******************************************************************** -->
-
-<!-- ==================================================================== -->
-
-<xsl:template match="replaceable|varname|structfield">
- <xsl:if test="$man.hyphenate.computer.inlines = 0">
- <xsl:call-template name="suppress.hyphenation"/>
- </xsl:if>
- <xsl:call-template name="italic">
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="context" select="."/>
- </xsl:call-template>
-</xsl:template>
-
-<xsl:template match="option|userinput|envar|errorcode|constant|markup">
- <xsl:if test="$man.hyphenate.computer.inlines = 0">
- <xsl:call-template name="suppress.hyphenation"/>
- </xsl:if>
- <xsl:call-template name="bold">
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="context" select="."/>
- </xsl:call-template>
-</xsl:template>
-
-<xsl:template match="classname">
- <xsl:if test="$man.hyphenate.computer.inlines = 0">
- <xsl:call-template name="suppress.hyphenation"/>
- </xsl:if>
- <xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="command">
- <xsl:if test="$man.hyphenate.computer.inlines = 0">
- <xsl:call-template name="suppress.hyphenation"/>
- </xsl:if>
- <xsl:call-template name="bold">
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="context" select="."/>
- </xsl:call-template>
-</xsl:template>
-
-<xsl:template match="type[not(ancestor::cmdsynopsis) and
- not(ancestor::funcsynopsis)]">
- <xsl:if test="$man.hyphenate.computer.inlines = 0">
- <xsl:call-template name="suppress.hyphenation"/>
- </xsl:if>
- <xsl:call-template name="bold">
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="context" select="."/>
- </xsl:call-template>
-</xsl:template>
-
-<xsl:template match="function[not(ancestor::cmdsynopsis) and
- not(ancestor::funcsynopsis)]">
- <xsl:if test="$man.hyphenate.computer.inlines = 0">
- <xsl:call-template name="suppress.hyphenation"/>
- </xsl:if>
- <xsl:call-template name="bold">
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="context" select="."/>
- </xsl:call-template>
-</xsl:template>
-
-<xsl:template match="parameter[not(ancestor::cmdsynopsis) and
- not(ancestor::funcsynopsis)]">
- <xsl:if test="$man.hyphenate.computer.inlines = 0">
- <xsl:call-template name="suppress.hyphenation"/>
- </xsl:if>
- <xsl:call-template name="italic">
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="context" select="."/>
- </xsl:call-template>
-</xsl:template>
-
-<xsl:template match="filename">
- <!-- * add hyphenation suppression in Filename output only if -->
- <!-- * break.after.slash is also non-zero -->
- <xsl:if test="$man.hyphenate.filenames = 0 and
- $man.break.after.slash = 0">
- <xsl:call-template name="suppress.hyphenation"/>
- </xsl:if>
- <!-- * part of the old man(7) man page, now man-pages(7), says, -->
- <!-- * "Filenames (whether pathnames, or references to files in the -->
- <!-- * /usr/include directory) are always in italics". But that's dumb, -->
- <!-- * and looks like crap in PS/printed/PDF output, and there's no -->
- <!-- * sound rationale for it, so we don't do it. -->
- <xsl:call-template name="inline.monoseq"/>
-</xsl:template>
-
-<xsl:template match="emphasis">
- <xsl:choose>
- <xsl:when test="
- @role = 'bold' or
- @role = 'strong' or
- @remap = 'B'">
- <xsl:call-template name="bold">
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="context" select="."/>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:call-template name="italic">
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="context" select="."/>
- </xsl:call-template>
- </xsl:otherwise>
- </xsl:choose>
-</xsl:template>
-
-<xsl:template match="optional">
- <xsl:value-of select="$arg.choice.opt.open.str"/>
- <xsl:apply-templates/>
- <xsl:value-of select="$arg.choice.opt.close.str"/>
-</xsl:template>
-
-<xsl:template name="do-citerefentry">
- <xsl:param name="refentrytitle" select="''"/>
- <xsl:param name="manvolnum" select="''"/>
- <xsl:variable name="title">
- <xsl:value-of select="$refentrytitle"/>
- </xsl:variable>
- <xsl:call-template name="bold">
- <xsl:with-param name="node" select="exsl:node-set($title)"/>
- <xsl:with-param name="context" select="."/>
- </xsl:call-template>
- <xsl:text>(</xsl:text>
- <xsl:value-of select="$manvolnum"/>
- <xsl:text>)</xsl:text>
-</xsl:template>
-
-<xsl:template match="citerefentry">
- <xsl:call-template name="do-citerefentry">
- <xsl:with-param name="refentrytitle" select="refentrytitle"/>
- <xsl:with-param name="manvolnum" select="manvolnum"/>
- </xsl:call-template>
-</xsl:template>
-
-<xsl:template match="trademark|productname">
- <xsl:apply-templates/>
- <xsl:choose>
- <!-- * Just use true Unicode chars for copyright, trademark, etc., -->
- <!-- * symbols (by default, we later automatically translate them -->
- <!-- * with the apply-string-subst-map template, or with the -->
- <!-- * default character map, if man.charmap.enabled is true). -->
- <xsl:when test="@class = 'copyright'">
- <xsl:text>&#x00a9;</xsl:text>
- </xsl:when>
- <xsl:when test="@class = 'registered'">
- <xsl:text>&#x00ae;</xsl:text>
- </xsl:when>
- <xsl:when test="@class = 'service'">
- <xsl:text>&#x2120;</xsl:text>
- </xsl:when>
- <xsl:when test="@class = 'trade'">
- <xsl:text>&#x2122;</xsl:text>
- </xsl:when>
- <!-- * for Trademark element, render a trademark symbol by default -->
- <!-- * even if no "class" value is specified -->
- <xsl:when test="self::trademark" >
- <xsl:text>&#x2122;</xsl:text>
- </xsl:when>
- <xsl:otherwise>
- <!-- * otherwise we have a Productname with no value for the -->
- <!-- * "class" attribute, so don't render any symbol by default -->
- </xsl:otherwise>
- </xsl:choose>
-</xsl:template>
-
-<!-- * span seems to sneak through into output sometimes, possibly due -->
-<!-- * to failed Olink processing; so we need to catch it -->
-<xsl:template match="span">
- <xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="inlinemediaobject">
- <xsl:apply-templates/>
-</xsl:template>
-
-<!-- * indexterm instances produce groff comments like this: -->
-<!-- * .\" primary: secondary: tertiary -->
-<xsl:template match="indexterm">
- <xsl:text>.\" </xsl:text>
- <xsl:apply-templates/>
- <xsl:text>&#10;</xsl:text>
-</xsl:template>
-
-<xsl:template match="primary">
- <xsl:value-of select="normalize-space(.)"/>
-</xsl:template>
-
-<xsl:template match="secondary|tertiary">
- <xsl:text>: </xsl:text>
- <xsl:value-of select="normalize-space(.)"/>
-</xsl:template>
-
-<!-- * non-empty remark instances produce groff comments -->
-<xsl:template match="remark">
- <xsl:variable name="content" select="normalize-space(.)"/>
- <xsl:if test="not($content = '')">
- <xsl:text>.\" </xsl:text>
- <xsl:value-of select="$content"/>
- <xsl:text>&#10;</xsl:text>
- </xsl:if>
-</xsl:template>
-
-</xsl:stylesheet>