-
Notifications
You must be signed in to change notification settings - Fork 35
/
swjz.xsl
144 lines (130 loc) · 4.38 KB
/
swjz.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"
version="2.0">
<!--xsl:output method="html"/-->
<xsl:output method="xml"/>
<xsl:template match="//chapter">
<xsl:variable name="filename"
select="concat('swjz/',chaptertitle/@id,'.html')" />
<!--xsl:value-of select="$filename" /--> <!-- 表示用 -->
<xsl:result-document href="{$filename}">
<xsl:text>
</xsl:text>
<html xmlns="http://www.w3.org/1999/xhtml"><xsl:text>
</xsl:text>
<head><xsl:text>
</xsl:text>
<title><xsl:value-of select="chaptertitle/text()"/></title><xsl:text>
</xsl:text>
<link rel="stylesheet" href="swjz.css" type="text/css" /><xsl:text>
</xsl:text>
</head><xsl:text>
</xsl:text>
<body><xsl:text>
</xsl:text>
<xsl:apply-templates/>
</body><xsl:text>
</xsl:text>
</html>
</xsl:result-document>
</xsl:template>
<xsl:template match="shuowen">
<table>
<xsl:apply-templates select="wordhead"/>
</table><xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="shuowen/wordhead">
<tr>
<xsl:element name="td">
<xsl:attribute name="class">wordhead</xsl:attribute>
<xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute>
<xsl:element name="img">
<xsl:attribute name="src">swjz-img/<xsl:value-of select="@img"/>s.png</xsl:attribute>
<xsl:attribute name="alt"><xsl:value-of select="."/></xsl:attribute>
<!--xsl:attribute name="width">40%</xsl:attribute-->
</xsl:element>
<font style="font-size:50%;"><xsl:value-of select="."/></font>
</xsl:element>
<!--td class="wordhead"><xsl:apply-templates/></td-->
<td class="body">
<xsl:variable name="current_head">
<xsl:number level="single" count="*"/>
</xsl:variable>
<xsl:variable name="next_head">
<xsl:for-each select="following-sibling::wordhead[1]">
<xsl:number level="single" count="*"/>
</xsl:for-each>
</xsl:variable>
<xsl:choose>
<xsl:when test="$next_head != '' and $next_head > 0">
<xsl:apply-templates select="../*[(position() < $next_head) and (position() > $current_head)]"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="following-sibling::*"/>
</xsl:otherwise>
</xsl:choose>
</td>
</tr><xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="explanation">
<!--span class="explanation"-->
<xsl:apply-templates/>
<!--/span-->
</xsl:template>
<xsl:template match="duan_note">
<span class="note"><xsl:apply-templates/></span>
</xsl:template>
<!-- template for part_wordnum -->
<xsl:template match="part_wordnum">
<table class="part_wordnum">
<tr>
<td width="10%"></td>
<td width="90%">
<xsl:apply-templates mode="normal_text"/>
</td>
</tr><xsl:text>
</xsl:text>
</table><xsl:text>
</xsl:text>
</xsl:template>
<xsl:template mode="normal_text" match="text()">
<font class="explanation"><xsl:value-of select="."/></font>
</xsl:template>
<xsl:template mode="normal_text" match="duan_note">
<span class="note"><xsl:value-of select="."/></span>
</xsl:template>
<!-- misc templates-->
<xsl:template match="chaptertitle">
<h3><xsl:apply-templates/></h3>
</xsl:template>
<xsl:template match="author">
<h4 style='text-align:right'><xsl:apply-templates/></h4>
</xsl:template>
<xsl:template match="publishdate">
<h4><xsl:apply-templates/></h4>
</xsl:template>
<xsl:template match="endchapter">
<h3><xsl:apply-templates/></h3>
</xsl:template>
<xsl:template match="shuowen2">
<p><xsl:apply-templates/></p>
</xsl:template>
<xsl:template match="section">
<table><xsl:apply-templates/></table>
</xsl:template>
<xsl:template match="section_num">
<tr><th><xsl:apply-templates/></th></tr>
</xsl:template>
<xsl:template match="part_word">
<tr><td><xsl:apply-templates/></td></tr>
</xsl:template>
<xsl:template match="part_word/wordhead">
<span class="explanation"><xsl:apply-templates/></span>
</xsl:template>
<xsl:template match="volume_wordnum">
<p><xsl:apply-templates/></p>
</xsl:template>
</xsl:stylesheet>