source: stylesheets/lfs-xsl/docbook-xsl-1.78.1/fo/fo.xsl@ 15c7d39

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 7.5 7.6 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 15c7d39 was 15c7d39, checked in by Matthew Burgess <matthew@…>, 11 years ago

Update stylesheets to docbook-xsl-1.78.1.

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

  • Property mode set to 100644
File size: 4.4 KB
Line 
1<?xml version='1.0'?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:fo="http://www.w3.org/1999/XSL/Format"
4 version='1.0'>
5
6<!-- ********************************************************************
7 $Id: fo.xsl 9720 2013-01-31 18:24:47Z bobstayton $
8 ********************************************************************
9
10 This file is part of the XSL DocBook Stylesheet distribution.
11 See ../README or http://docbook.sf.net/release/xsl/current/ for
12 copyright and other information.
13
14 ******************************************************************** -->
15
16<!-- These variables set the margin-left or -right attribute value for FO output based on
17 the writing-mode specified in the gentext file for the document's lang. -->
18
19<xsl:param name="direction.align.start">
20 <xsl:choose>
21 <!-- FOP does not support writing-mode="rl-tb" -->
22 <xsl:when test="$fop.extensions != 0">left</xsl:when>
23 <xsl:when test="$fop1.extensions != 0">left</xsl:when>
24 <xsl:when test="starts-with($writing.mode, 'lr')">left</xsl:when>
25 <xsl:when test="starts-with($writing.mode, 'rl')">right</xsl:when>
26 <xsl:when test="starts-with($writing.mode, 'tb')">top</xsl:when>
27 <xsl:otherwise>left</xsl:otherwise>
28 </xsl:choose>
29</xsl:param>
30
31<xsl:param name="direction.align.end">
32 <xsl:choose>
33 <xsl:when test="$fop.extensions != 0">right</xsl:when>
34 <xsl:when test="$fop1.extensions != 0">right</xsl:when>
35 <xsl:when test="starts-with($writing.mode, 'lr')">right</xsl:when>
36 <xsl:when test="starts-with($writing.mode, 'rl')">left</xsl:when>
37 <xsl:when test="starts-with($writing.mode, 'tb')">bottom</xsl:when>
38 <xsl:otherwise>right</xsl:otherwise>
39 </xsl:choose>
40</xsl:param>
41
42<xsl:param name="direction.mode">
43 <xsl:choose>
44 <xsl:when test="$fop.extensions != 0 and
45 starts-with($writing.mode, 'rl')">
46 <xsl:message>WARNING: FOP does not support right-to-left writing-mode</xsl:message>
47 <xsl:text>lr-tb</xsl:text>
48 </xsl:when>
49 <xsl:when test="$fop1.extensions != 0 and
50 starts-with($writing.mode, 'rl')">
51 <xsl:message>WARNING: FOP does not support right-to-left writing-mode</xsl:message>
52 <xsl:text>lr-tb</xsl:text>
53 </xsl:when>
54 <xsl:when test="starts-with($writing.mode, 'lr')">lr-tb</xsl:when>
55 <xsl:when test="starts-with($writing.mode, 'rl')">rl-tb</xsl:when>
56 <xsl:when test="starts-with($writing.mode, 'tb')">tb-rl</xsl:when>
57 <xsl:otherwise>lr-tb</xsl:otherwise>
58 </xsl:choose>
59</xsl:param>
60
61
62<xsl:template name="anchor">
63 <xsl:param name="node" select="."/>
64 <xsl:param name="conditional" select="1"/>
65 <xsl:variable name="id">
66 <xsl:call-template name="object.id">
67 <xsl:with-param name="object" select="$node"/>
68 </xsl:call-template>
69 </xsl:variable>
70 <xsl:if test="$conditional = 0 or $node/@id or $node/@xml:id">
71 <xsl:attribute name="id"><xsl:value-of select="$id"/></xsl:attribute>
72 </xsl:if>
73</xsl:template>
74
75<xsl:template name="dingbat">
76 <xsl:param name="dingbat">bullet</xsl:param>
77 <xsl:variable name="symbol">
78 <xsl:choose>
79 <xsl:when test="$dingbat='bullet'">o</xsl:when>
80 <xsl:when test="$dingbat='copyright'">&#x00A9;</xsl:when>
81 <xsl:when test="$dingbat='trademark'">&#x2122;</xsl:when>
82 <xsl:when test="$dingbat='trade'">&#x2122;</xsl:when>
83 <xsl:when test="$dingbat='registered'">&#x00AE;</xsl:when>
84 <xsl:when test="$dingbat='service'">(SM)</xsl:when>
85 <xsl:when test="$dingbat='ldquo'">"</xsl:when>
86 <xsl:when test="$dingbat='rdquo'">"</xsl:when>
87 <xsl:when test="$dingbat='lsquo'">'</xsl:when>
88 <xsl:when test="$dingbat='rsquo'">'</xsl:when>
89 <xsl:when test="$dingbat='em-dash'">&#x2014;</xsl:when>
90 <xsl:when test="$dingbat='en-dash'">-</xsl:when>
91 <xsl:otherwise>o</xsl:otherwise>
92 </xsl:choose>
93 </xsl:variable>
94
95 <xsl:choose>
96 <xsl:when test="$dingbat.fontset = ''">
97 <xsl:copy-of select="$symbol"/>
98 </xsl:when>
99 <xsl:otherwise>
100 <fo:inline font-family="{$dingbat.fontset}">
101 <xsl:copy-of select="$symbol"/>
102 </fo:inline>
103 </xsl:otherwise>
104 </xsl:choose>
105</xsl:template>
106
107<xsl:template name="href.target">
108 <xsl:param name="context" select="."/>
109 <xsl:param name="object" select="."/>
110 <xsl:text>#</xsl:text>
111 <xsl:call-template name="object.id">
112 <xsl:with-param name="object" select="$object"/>
113 </xsl:call-template>
114</xsl:template>
115
116</xsl:stylesheet>
117
Note: See TracBrowser for help on using the repository browser.