source: stylesheets/pdf/lfs-index.xsl@ 2def124

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 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 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 2def124 was a9e89d0, checked in by Manuel Canales Esparcia <manuel@…>, 20 years ago

HEAD: StyleSheets - unified the identation to use spaces.

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

  • Property mode set to 100644
File size: 7.8 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?>
2<!DOCTYPE xsl:stylesheet [
3<!ENTITY lowercase "'abcdefghijklmnopqrstuvwxyz'">
4<!ENTITY uppercase "'ABCDEFGHIJKLMNOPQRSTUVWXYZ'">
5<!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas)]))'>
6<!ENTITY secondary 'normalize-space(concat(secondary/@sortas, secondary[not(@sortas)]))'>
7<!ENTITY scope 'count(ancestor::node()|$scope) = count(ancestor::node())'>
8<!ENTITY sep '" "'>
9]>
10
11<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
12 xmlns:fo="http://www.w3.org/1999/XSL/Format"
13 version="1.0">
14
15 <!--Only one column to fit the table layout-->
16 <xsl:param name="column.count.index" select="1"/>
17
18 <!--Title-->
19 <xsl:template match="index" mode="title.markup">
20 <xsl:text>Index of packages and important installed files</xsl:text>
21 </xsl:template>
22
23 <!-- Divisions-->
24 <xsl:template match="indexterm" mode="index-div">
25 <xsl:param name="scope" select="."/>
26 <xsl:variable name="key"
27 select="translate(substring(&primary;, 1, 1),&lowercase;,&uppercase;)"/>
28 <xsl:variable name="divtitle" select="translate($key, &lowercase;, &uppercase;)"/>
29 <xsl:if test="key('letter', $key)[&scope;]
30 [count(.|key('primary', &primary;)[&scope;][1]) = 1]">
31 <fo:block>
32 <xsl:if test="contains(concat(&lowercase;, &uppercase;), $key)">
33 <xsl:call-template name="indexdiv.title">
34 <xsl:with-param name="titlecontent">
35 <xsl:choose>
36 <xsl:when test="$divtitle = 'A'">
37 <xsl:text>Packages</xsl:text>
38 </xsl:when>
39 <xsl:when test="$divtitle = 'B'">
40 <xsl:text>Programs</xsl:text>
41 </xsl:when>
42 <xsl:when test="$divtitle = 'C'">
43 <xsl:text>Libraries</xsl:text>
44 </xsl:when>
45 <xsl:when test="$divtitle = 'D'">
46 <xsl:text>Scripts</xsl:text>
47 </xsl:when>
48 <xsl:when test="$divtitle = 'E'">
49 <xsl:text>Others</xsl:text>
50 </xsl:when>
51 <xsl:otherwise>
52 <xsl:value-of select="$divtitle"/>
53 </xsl:otherwise>
54 </xsl:choose>
55 </xsl:with-param>
56 </xsl:call-template>
57 </xsl:if>
58 <fo:table table-layout="fixed" width="100%">
59 <fo:table-column column-number="1" column-width="11em"/>
60 <fo:table-column column-number="2" column-width="19em"/>
61 <fo:table-column column-number="3"/>
62 <fo:table-body>
63 <xsl:apply-templates select="key('letter', $key)[&scope;]
64 [count(.|key('primary', &primary;)[&scope;][1])=1]"
65 mode="index-primary">
66 <xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/>
67 <xsl:with-param name="scope" select="$scope"/>
68 </xsl:apply-templates>
69 </fo:table-body>
70 </fo:table>
71 </fo:block>
72 </xsl:if>
73 </xsl:template>
74
75 <!-- Dropping the separator from here -->
76 <xsl:template match="indexterm" mode="reference">
77 <xsl:param name="scope" select="."/>
78 <xsl:call-template name="reference">
79 <xsl:with-param name="zones" select="normalize-space(@zone)"/>
80 <xsl:with-param name="scope" select="$scope"/>
81 </xsl:call-template>
82 </xsl:template>
83
84 <!-- Changing the output tags and re-addind the separator-->
85 <xsl:template match="indexterm" mode="index-primary">
86 <xsl:param name="scope" select="."/>
87 <xsl:variable name="key" select="&primary;"/>
88 <xsl:variable name="refs" select="key('primary', $key)[&scope;]"/>
89 <fo:table-row>
90 <fo:table-cell>
91 <fo:block>
92 <xsl:value-of select="primary"/>
93 <xsl:text>: </xsl:text>
94 </fo:block>
95 </fo:table-cell>
96 <xsl:for-each select="$refs[not(see) and not(seealso)
97 and not(secondary)]">
98 <xsl:apply-templates select="." mode="reference">
99 <xsl:with-param name="scope" select="$scope"/>
100 </xsl:apply-templates>
101 </xsl:for-each>
102 </fo:table-row>
103 <xsl:if test="$refs/secondary">
104 <xsl:apply-templates select="$refs[secondary and count(.|key('secondary',
105 concat($key, &sep;, &secondary;))[&scope;][1]) = 1]" mode="index-secondary">
106 <xsl:with-param name="scope" select="$scope"/>
107 <xsl:sort select="translate(&secondary;, &lowercase;, &uppercase;)"/>
108 </xsl:apply-templates>
109 </xsl:if>
110 </xsl:template>
111
112 <xsl:template match="indexterm" mode="index-secondary">
113 <xsl:param name="scope" select="."/>
114 <xsl:variable name="key" select="concat(&primary;, &sep;, &secondary;)"/>
115 <xsl:variable name="refs" select="key('secondary', $key)[&scope;]"/>
116 <fo:table-row>
117 <fo:table-cell>
118 <fo:block start-indent="1pc">
119 <xsl:value-of select="secondary"/>
120 <xsl:text>: </xsl:text>
121 </fo:block>
122 </fo:table-cell>
123 <xsl:for-each select="$refs[not(see) and not(seealso) and not(tertiary)]">
124 <xsl:apply-templates select="." mode="reference">
125 <xsl:with-param name="scope" select="$scope"/>
126 </xsl:apply-templates>
127 </xsl:for-each>
128 </fo:table-row>
129 </xsl:template>
130
131 <!-- Targets titles and bookmarks-->
132 <xsl:template name="reference">
133 <xsl:param name="scope" select="."/>
134 <xsl:param name="zones"/>
135 <xsl:choose>
136 <xsl:when test="contains($zones, ' ')">
137 <xsl:variable name="zone" select="substring-before($zones, ' ')"/>
138 <xsl:variable name="zone2" select="substring-after($zones, ' ')"/>
139 <xsl:variable name="target" select="key('id', $zone)[&scope;]"/>
140 <xsl:variable name="target2" select="key('id', $zone2)[&scope;]"/>
141 <xsl:variable name="id">
142 <xsl:call-template name="object.id">
143 <xsl:with-param name="object" select="$target[1]"/>
144 </xsl:call-template>
145 </xsl:variable>
146 <xsl:variable name="id2">
147 <xsl:call-template name="object.id">
148 <xsl:with-param name="object" select="$target2[1]"/>
149 </xsl:call-template>
150 </xsl:variable>
151 <fo:table-cell>
152 <fo:block>
153 <fo:basic-link internal-destination="{$id}">
154 <xsl:value-of select="$target/title"/>
155 <xsl:apply-templates select="$target" mode="page.citation">
156 <xsl:with-param name="id" select="$id"/>
157 </xsl:apply-templates>
158 </fo:basic-link>
159 </fo:block>
160 </fo:table-cell>
161 <fo:table-cell>
162 <fo:block>
163 <fo:basic-link internal-destination="{$id2}">
164 <xsl:text>description</xsl:text>
165 <xsl:apply-templates select="$target2" mode="page.citation">
166 <xsl:with-param name="id" select="$id2"/>
167 </xsl:apply-templates>
168 </fo:basic-link>
169 </fo:block>
170 </fo:table-cell>
171 </xsl:when>
172 <xsl:otherwise>
173 <xsl:variable name="zone" select="$zones"/>
174 <xsl:variable name="target" select="key('id', $zone)[&scope;]"/>
175 <xsl:variable name="id">
176 <xsl:call-template name="object.id">
177 <xsl:with-param name="object" select="$target[1]"/>
178 </xsl:call-template>
179 </xsl:variable>
180 <fo:table-cell>
181 <fo:block>
182 <fo:basic-link internal-destination="{$id}">
183 <xsl:value-of select="$target/title"/>
184 <xsl:apply-templates select="$target" mode="page.citation">
185 <xsl:with-param name="id" select="$id"/>
186 </xsl:apply-templates>
187 </fo:basic-link>
188 </fo:block>
189 </fo:table-cell>
190 </xsl:otherwise>
191 </xsl:choose>
192 </xsl:template>
193
194</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.