forked from apache/jena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxml-to-html-plain.xsl
187 lines (156 loc) · 4.57 KB
/
xml-to-html-plain.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?xml version="1.0"?>
<!--
XSLT script to format SPARQL Query Results XML Format into xhtml
Copyright © 2004, 2005 World Wide Web Consortium, (Massachusetts
Institute of Technology, European Research Consortium for
Informatics and Mathematics, Keio University). All Rights
Reserved. This work is distributed under the W3C® Software
License [1] in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.
[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
Version 1 : Dave Beckett (DAWG)
Version 2 : Jeen Broekstra (DAWG)
Customization for SPARQler: Andy Seaborne
Fix:
> - <xsl:for-each select="//res:head/res:variable">
> + <xsl:for-each select="/res:sparql/res:head/res:variable">
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:res="http://www.w3.org/2005/sparql-results#"
exclude-result-prefixes="res xsl">
<!--
<xsl:output
method="html"
media-type="text/html"
doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
indent="yes"
encoding="UTF-8"/>
-->
<!-- or this? -->
<xsl:output
method="xml"
indent="yes"
encoding="UTF-8"
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
omit-xml-declaration="no" />
<xsl:template name="header">
<div>
<h2>Header</h2>
<xsl:for-each select="res:head/res:link">
<p>Link to <xsl:value-of select="@href"/></p>
</xsl:for-each>
</div>
</xsl:template>
<xsl:template name="boolean-result">
<div>
<!--
<h2>Boolean Result</h2>
-->
<p>ASK => <xsl:value-of select="res:boolean"/></p>
</div>
</xsl:template>
<xsl:template name="vb-result">
<div>
<!--
<h2>Variable Bindings Result</h2>
<p>Ordered: <xsl:value-of select="res:results/@ordered"/></p>
<p>Distinct: <xsl:value-of select="res:results/@distinct"/></p>
-->
<table>
<xsl:text>
</xsl:text>
<tr>
<xsl:for-each select="res:head/res:variable">
<th><xsl:value-of select="@name"/></th>
</xsl:for-each>
</tr>
<xsl:text>
</xsl:text>
<xsl:for-each select="res:results/res:result">
<tr>
<xsl:apply-templates select="."/>
</tr>
</xsl:for-each>
</table>
</div>
</xsl:template>
<xsl:template match="res:result">
<xsl:variable name="current" select="."/>
<xsl:for-each select="/res:sparql/res:head/res:variable">
<xsl:variable name="name" select="@name"/>
<td>
<xsl:choose>
<xsl:when test="$current/res:binding[@name=$name]">
<!-- apply template for the correct value type (bnode, uri, literal) -->
<xsl:apply-templates select="$current/res:binding[@name=$name]"/>
</xsl:when>
<xsl:otherwise>
<!-- no binding available for this variable in this solution -->
</xsl:otherwise>
</xsl:choose>
</td>
</xsl:for-each>
</xsl:template>
<xsl:template match="res:bnode">
<xsl:text>_:</xsl:text>
<xsl:value-of select="text()"/>
</xsl:template>
<xsl:template match="res:uri">
<xsl:variable name="uri" select="text()"/>
<xsl:text><</xsl:text>
<xsl:value-of select="$uri"/>
<xsl:text>></xsl:text>
</xsl:template>
<xsl:template match="res:literal">
<xsl:text>"</xsl:text>
<xsl:value-of select="text()"/>
<xsl:text>"</xsl:text>
<xsl:choose>
<xsl:when test="@datatype">
<!-- datatyped literal value -->
^^<<xsl:value-of select="@datatype"/>>
</xsl:when>
<xsl:when test="@xml:lang">
<!-- lang-string -->
@<xsl:value-of select="@xml:lang"/>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match="res:sparql">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>SPARQLer Query Results</title>
<style>
<![CDATA[
h1 { font-size: 150% ; }
h2 { font-size: 125% ; }
table { border-collapse: collapse ; border: 1px solid black ; }
td, th
{ border: 1px solid black ;
padding-left:0.5em; padding-right: 0.5em;
padding-top:0.2ex ; padding-bottom:0.2ex
}
]]>
</style>
</head>
<body>
<h1>SPARQLer Query Results</h1>
<xsl:if test="res:head/res:link">
<xsl:call-template name="header"/>
</xsl:if>
<xsl:choose>
<xsl:when test="res:boolean">
<xsl:call-template name="boolean-result" />
</xsl:when>
<xsl:when test="res:results">
<xsl:call-template name="vb-result" />
</xsl:when>
</xsl:choose>
</body>
</html>
</xsl:template>
</xsl:stylesheet>