blob: 4d299feedca09caa2710054ec2973facdee38110 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2002 Douglas Gregor <doug.gregor -at- gmail.com>
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:key name="library-categories" match="library"
use="libraryinfo/librarycategory/@name"/>
<xsl:template match="librarylist">
<itemizedlist spacing="compact">
<xsl:apply-templates select="//library"
mode="build-library-list">
<xsl:sort select="@name"/>
</xsl:apply-templates>
</itemizedlist>
</xsl:template>
<xsl:template name="library.link">
<xsl:param name="node" select="."/>
<xsl:param name="name" select="$node/attribute::name"/>
<xsl:choose>
<xsl:when test="$node/attribute::html-only = 1">
<xsl:variable name="url">
<xsl:choose>
<xsl:when test="$node/attribute::url">
<xsl:value-of select="$node/attribute::url"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat($boost.root,
'/libs/',
$node/attribute::dirname,
'/index.html')"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<ulink>
<xsl:attribute name="url">
<xsl:value-of select="$url"/>
</xsl:attribute>
<xsl:value-of select="$name"/>
</ulink>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="internal-link">
<xsl:with-param name="to">
<xsl:choose>
<xsl:when test="$node/attribute::id">
<xsl:value-of select="$node/attribute::id"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="generate.id">
<xsl:with-param name="node" select="$node"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="text" select="$name"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="library" mode="build-library-list">
<listitem>
<simpara>
<xsl:call-template name="library.link"/>
<xsl:text> - </xsl:text>
<xsl:apply-templates select="libraryinfo/librarypurpose"
mode="build-library-list"/>
</simpara>
</listitem>
</xsl:template>
<xsl:template match="librarypurpose" mode="build-library-list">
<xsl:apply-templates/>
<xsl:text>, from </xsl:text>
<xsl:apply-templates select="../author" mode="display-author-list"/>
</xsl:template>
<xsl:template match="author" mode="display-author-list">
<xsl:if test="(position() > 1) and (count(../author) > 2)">
<xsl:text>, </xsl:text>
</xsl:if>
<xsl:if test="(position() = count(../author)) and (position() > 1)">
<xsl:if test="position() < 3">
<xsl:text> </xsl:text>
</xsl:if>
<xsl:text>and </xsl:text>
</xsl:if>
<xsl:apply-templates select="firstname/text()"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="surname/text()"/>
<xsl:if test="(position() = count(../author))">
<xsl:text>.</xsl:text>
</xsl:if>
</xsl:template>
<xsl:template match="librarycategorylist">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="librarycategorydef">
<section>
<title><xsl:apply-templates/></title>
<xsl:variable name="name" select="@name"/>
<itemizedlist spacing="compact">
<xsl:apply-templates select="key('library-categories', $name)"
mode="build-library-list">
<xsl:sort select="@name"/>
</xsl:apply-templates>
</itemizedlist>
</section>
</xsl:template>
<xsl:template match="libraryinfo">
<chapterinfo>
<xsl:apply-templates select="author|authorgroup/author|copyright|legalnotice"/>
</chapterinfo>
</xsl:template>
<xsl:template match="librarypurpose|librarycategory"/>
</xsl:stylesheet>
|