forked from gentoo/devmanual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
depend.xsl
45 lines (41 loc) · 1.67 KB
/
depend.xsl
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
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
xmlns:str="http://exslt.org/strings"
xmlns:exslt="http://exslt.org/common"
extension-element-prefixes="str exslt xsl"
exclude-result-prefixes="str exslt xsl">
<xsl:import href="devbook.xsl"/>
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:variable name="refs">
<!-- all descendants -->
<xsl:call-template name="contentsTree"/>
<!-- all ancestors -->
<xsl:call-template name="printParentDocs"/>
<!-- previous and next documents -->
<xsl:call-template name="findPrevious"/>
<xsl:call-template name="findNext"/>
</xsl:variable>
<xsl:variable name="self" select="/guide/@self"/>
<xsl:value-of select="concat($self, 'index.html:')"/>
<xsl:for-each select="exslt:node-set($refs)//a/@href[. != '#']">
<xsl:text> </xsl:text>
<xsl:variable name="path" select="substring-before(., 'index.html')"/>
<!-- At this point, $path can start with zero or more ".." components
and is relative to $self. Convert it to an absolute path. -->
<xsl:variable name="up" select="count(str:tokenize($path, '/')[. = '..'])"/>
<xsl:for-each select="str:tokenize($self, '/')[position() <= last() - $up]">
<xsl:value-of select="concat(., '/')"/>
</xsl:for-each>
<xsl:for-each select="str:tokenize($path, '/')[position() > $up]">
<xsl:value-of select="concat(., '/')"/>
</xsl:for-each>
<xsl:text>text.xml</xsl:text>
</xsl:for-each>
<xsl:value-of select="$newline"/>
</xsl:template>
</xsl:stylesheet>
<!-- Local Variables: -->
<!-- indent-tabs-mode: nil -->
<!-- fill-column: 120 -->
<!-- End: -->