-
Notifications
You must be signed in to change notification settings - Fork 28
/
article.xsls
59 lines (42 loc) · 1.21 KB
/
article.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
<!--
Copyright (C) Igor Sysoev
Copyright (C) Nginx, Inc.
-->
X:stylesheet {
X:output method="html" version="4.0" indent="no" encoding="utf-8";
X:strip-space elements = "article section";
<!--
-- a current directory of a XSLT script is where the script is stored,
-- but not where XSLT processor has been started to run the script
-->
X:param XML = "'../xml'";
X:param YEAR;
X:param ORIGIN;
X:param TRANS;
X:var LINK = "/article/@link | /module/@link";
X:var LANG = "/article/@lang | /module/@lang";
X:include href = "dirname.xslt";
X:include href = "link.xslt";
X:include href = "style.xslt";
X:include href = "body.xslt";
X:include href = "menu.xslt";
X:include href = "content.xslt";
X:include href = "books.xslt";
X:include href = "directive.xslt";
X:include href = "donate.xslt";
X:include href = "download.xslt";
X:include href = "security.xslt";
X:include href = "versions.xslt";
X:include href = "projects.xslt";
X:template = "/article | /module" {
<html>
X:if "@lang = 'he'" { X:attribute "dir" { X:text{rtl} } }
X:if "@lang = 'cn'" { X:attribute "lang" { X:text{zh-CN} } }
<head>
<title> !{@name} </title>
!style (lang="@lang")
</head>
!body (lang="@lang")
</html>
}
}