blob: 10611a900b06da3b558d39bb6537d63cdd5ca655 (
plain)
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
Sablotron XSLT Extensions Readme File
=====================================
1. Building
----------------------------------------
Extension elements and functions as defined by XSLT 1.0 are
implemented in Sablotron since the version 0.80. Sablotron recognizes
the extension element <http://www.exslt.org/functions/script> as
suggested by exslt.org. There are some exceptions described later in
this document. Please note, that this feature is still supposed to be
EXPERIMENTAL.
If you want to benefit form this feature, you have to install
JavaScript engine from mozilla.org (SpiderMonkey). You have to do it
even when you have Mozilla browser installed, because the binary
browser installation doesn't include essential header files.
An alternative way to get all neccessary JS files is to download and
install Charlie application framework (see gingerall.org).
All you need to do on Sablotron side is to run the configure script
with --enable-javascript option. To use JS engine from Charlie
installation, type: ./configure --enable-javascript --enable-perlconnect
If you have installed JS libraries into non-standard directories, you
need to set (and export) CPLUS_INCLUDE_PATH/LIBRARY_PATH to point to
directories where the header files/lib files (e.g. libjs.so) can be found.
The default name for the linked library is 'js' (-ljs switch) - if you
need to override this value, you may set SABLOT_JSLIB environment
variable - the configure script uses -l$(SABLOT_JSLIB) in this case.
2. What is working
----------------------------------------
Sablotron supports JavaScript (ECMA) scripting as described in XSTL WD
1.1. with few exceptions:
- DOM functions handling namespaces (with NS in their name) are not
supported (throw NOT_SUPPORTED exception)
- DOM model is read only (as supported, may be changed later)
- XSLTContext.stringValue is not supported
- Document.getElementsByTagName{NS} are not supported
- Element.getElementsByTagName{NS} are not supported
- DTD definition nodes are not supported
The following summarizes what IS supported:
- exslt:script element support
- XSLTContext object
- DOM2 acces to a processed document
- type mapping between XPath and JavaScript including the XSLT
external object support
- function-available() function
- element-available() function
3. Sample stylesheet
----------------------------------------
<?xml version='1.0'?>
<xsl:stylesheet version='1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
xmlns:exslt='http://www.exslt.org/functions'
xmlns:my='http://gingerall.org/sablot/myfunc'
extension-element-prefixes='exslt'
exclude-result-prefixes='my'>
<xsl:output method='xml' indent='yes'/>
<exslt:script language='javascript' implements-prefix='my'>
<![CDATA[
function getNodeNames(nodeList)
{
ret = '';
for (i = 0; i < nodeList.length; i++)
{
ret += nodeList[i].nodeName + " ";
}
return ret;
}
]]>
</exslt:script>
<xsl:template match='/'>
<output>
<xsl:value-of select='my:getNodeNames(*)'/>
</output>
</xsl:template>
</xsl:stylesheet>
|