-
Notifications
You must be signed in to change notification settings - Fork 32
/
menu.xsls
82 lines (66 loc) · 2.15 KB
/
menu.xsls
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
<!--
Copyright (C) Igor Sysoev
Copyright (C) Nginx, Inc.
-->
X:stylesheet {
X:template = "menu/item" {
<!--
-- variables are not allowed in a template match predicate,
-- therefore, we have to use ugly "if"s instead of elegant
-- "menu/item[@href = $LINK]", etc.
-->
<li>
X:if "@href = $LINK" {
!{ normalize-space(text()) }<br/>
} else {
<!--
-- If a menu item has the switchlang attribute, then it will point
-- to the same document in the specified language.
-->
X:if "$TRANS and @switchlang" {
<!--
-- Check if list of available translations ($TRANS) contains
-- the language we are going to generate link to.
-- If yes - generate link, otherwise just name the language.
-->
X:if "contains($TRANS, @switchlang)" {
<a>
X:attribute "href" {
!{ concat($ROOT, '/', @switchlang, '/',
substring-after($LINK, concat('/', $LANG, '/'))) }
}
!{ normalize-space(text()) }
</a>
} else {
<a class="notrans"> !{ normalize-space(text()) } </a>
}
} else {
<a>
X:attribute "href" {
X:if "starts-with(@href, $DIRNAME)" {
X:if "substring-after(@href, $DIRNAME) = ''" {
X:text {./}
} else {
!{ substring-after(@href, $DIRNAME) }
}
} else {
!{ concat($ROOT, @href) }
}
}
!{ normalize-space(text()) }
</a>
X:if "@lang" { X:text { [} !{@lang} X:text {]}}
}
}
</li>
}
X:template = "menu/item[starts-with(@href, 'http://') or starts-with(@href, 'https://')]" {
<li>
<a href="{@href}"> !{ normalize-space(text()) } </a>
X:if "@lang" { X:text { [} !{@lang} X:text {]}}
</li>
}
X:template = "menu/item[not(@href)]" {
<li>!{ normalize-space(text()) } <br/></li>
}
}