envjs 0.1.7 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.jslintrbrc +29 -0
- data/.project +17 -0
- data/CHANGELOG.rdoc +3 -0
- data/DTD/xhtml-lat1.ent +196 -0
- data/DTD/xhtml-special.ent +80 -0
- data/DTD/xhtml-symbol.ent +237 -0
- data/DTD/xhtml.soc +14 -0
- data/DTD/xhtml1-frameset.dtd +1235 -0
- data/DTD/xhtml1-strict.dtd +978 -0
- data/DTD/xhtml1-transitional.dtd +1201 -0
- data/DTD/xhtml1.dcl +192 -0
- data/Makefile +7 -0
- data/Manifest.txt +287 -0
- data/{README → README.rdoc} +24 -3
- data/Rakefile +196 -0
- data/Wakefile +24 -0
- data/build.properties +9 -0
- data/build.xml +247 -0
- data/gm/jquery.js +6002 -0
- data/gm/mainx.js +2648 -0
- data/gm/sensx.js +135 -0
- data/gm/t.js +6 -0
- data/gm/x.html +76 -0
- data/htmlparser/BrowserTreeBuilder.java +456 -0
- data/htmlparser/README +34 -0
- data/htmlparser/build.sh +38 -0
- data/jsl/jsl +0 -0
- data/jsl/jsl.default.conf +129 -0
- data/jsl/jsl.exe +0 -0
- data/lib/envjs.rb +2 -0
- data/lib/envjs/env.js +22 -3
- data/lib/envjs/event_loop.js +2 -0
- data/lib/envjs/static.js +155 -21
- data/licenses/GPL-LICENSE.txt +278 -0
- data/licenses/MIT-LICENSE.txt +20 -0
- data/src/base64.js +80 -0
- data/src/build.js +6 -0
- data/src/cruft/bad.html +24 -0
- data/src/cruft/dom.js +606 -0
- data/src/cruft/element.js +297 -0
- data/src/cruft/good.html +30 -0
- data/src/cruft/good.js +32 -0
- data/src/cruft/internal.js +81 -0
- data/src/cruft/parser.js +458 -0
- data/src/css/properties.js +293 -0
- data/src/css/rule.js +22 -0
- data/src/css/sizzle.js +717 -0
- data/src/css/stylesheet.js +52 -0
- data/src/dom/attr.js +55 -0
- data/src/dom/cdatasection.js +31 -0
- data/src/dom/characterdata.js +119 -0
- data/src/dom/comment.js +30 -0
- data/src/dom/doctype.js +9 -0
- data/src/dom/document.js +553 -0
- data/src/dom/dom.js +134 -0
- data/src/dom/element.js +217 -0
- data/src/dom/entities.js +273 -0
- data/src/dom/exception.js +28 -0
- data/src/dom/fragment.js +37 -0
- data/src/dom/implementation.js +602 -0
- data/src/dom/instruction.js +51 -0
- data/src/dom/namednodemap.js +374 -0
- data/src/dom/namespace.js +50 -0
- data/src/dom/node.js +618 -0
- data/src/dom/nodelist.js +195 -0
- data/src/dom/parser.js +1207 -0
- data/src/dom/text.js +73 -0
- data/src/event/event.js +39 -0
- data/src/event/mouseevent.js +4 -0
- data/src/event/uievent.js +8 -0
- data/src/html/a.js +110 -0
- data/src/html/anchor.js +80 -0
- data/src/html/area.js +57 -0
- data/src/html/base.js +26 -0
- data/src/html/blockquote-q.js +19 -0
- data/src/html/body.js +19 -0
- data/src/html/button.js +21 -0
- data/src/html/canvas.js +14 -0
- data/src/html/col-colgroup.js +49 -0
- data/src/html/collection.js +72 -0
- data/src/html/cookie.js +151 -0
- data/src/html/del-ins.js +25 -0
- data/src/html/div.js +28 -0
- data/src/html/document.js +359 -0
- data/src/html/element.js +380 -0
- data/src/html/fieldset.js +19 -0
- data/src/html/form.js +484 -0
- data/src/html/frame.js +89 -0
- data/src/html/frameset.js +25 -0
- data/src/html/head.js +44 -0
- data/src/html/html.js +0 -0
- data/src/html/htmlparser.js +340 -0
- data/src/html/iframe.js +26 -0
- data/src/html/image.js +0 -0
- data/src/html/img.js +62 -0
- data/src/html/input-elements.js +307 -0
- data/src/html/input.js +65 -0
- data/src/html/label.js +26 -0
- data/src/html/legend.js +19 -0
- data/src/html/link.js +82 -0
- data/src/html/map.js +22 -0
- data/src/html/meta.js +37 -0
- data/src/html/object.js +89 -0
- data/src/html/optgroup.js +25 -0
- data/src/html/option.js +97 -0
- data/src/html/param.js +38 -0
- data/src/html/script.js +122 -0
- data/src/html/select.js +129 -0
- data/src/html/style.js +31 -0
- data/src/html/table.js +199 -0
- data/src/html/tbody-thead-tfoot.js +91 -0
- data/src/html/td-th.js +18 -0
- data/src/html/textarea.js +25 -0
- data/src/html/title.js +20 -0
- data/src/html/tr.js +114 -0
- data/src/intro.js +141 -0
- data/src/outro.js +70 -0
- data/src/parser/html5.detailed.js +10762 -0
- data/src/parser/html5.min.js +503 -0
- data/src/parser/html5.pretty.js +10815 -0
- data/src/parser/intro.js +42 -0
- data/src/parser/outro.js +9 -0
- data/src/platform/core.js +323 -0
- data/src/platform/johnson.js +479 -0
- data/src/platform/rhino.js +327 -0
- data/src/platform/static/intro.js +41 -0
- data/src/platform/static/outro.js +30 -0
- data/src/profile/aop.js +238 -0
- data/src/profile/profile.js +402 -0
- data/src/serializer/xml.js +21 -0
- data/src/svg/animatedstring.js +25 -0
- data/src/svg/document.js +25 -0
- data/src/svg/element.js +22 -0
- data/src/svg/locatable.js +17 -0
- data/src/svg/rect.js +18 -0
- data/src/svg/rectelement.js +24 -0
- data/src/svg/stylable.js +49 -0
- data/src/svg/svgelement.js +22 -0
- data/src/svg/transformable.js +15 -0
- data/src/window/css.js +15 -0
- data/src/window/dialog.js +16 -0
- data/src/window/document.js +28 -0
- data/src/window/event.js +262 -0
- data/src/window/history.js +62 -0
- data/src/window/location.js +138 -0
- data/src/window/navigator.js +48 -0
- data/src/window/screen.js +53 -0
- data/src/window/timer.js +21 -0
- data/src/window/window.js +284 -0
- data/src/window/xhr.js +127 -0
- data/src/xpath/expression.js +49 -0
- data/src/xpath/implementation.js +2482 -0
- data/src/xpath/result.js +67 -0
- data/src/xpath/util.js +551 -0
- data/src/xpath/xmltoken.js +149 -0
- data/src/xslt/COPYING +34 -0
- data/src/xslt/ajaxslt-0.8.1/AUTHORS +1 -0
- data/src/xslt/ajaxslt-0.8.1/ChangeLog +136 -0
- data/src/xslt/ajaxslt-0.8.1/Makefile +49 -0
- data/src/xslt/ajaxslt-0.8.1/README +102 -0
- data/src/xslt/ajaxslt-0.8.1/TODO +15 -0
- data/src/xslt/ajaxslt-0.8.1/dom.js +566 -0
- data/src/xslt/ajaxslt-0.8.1/dom_unittest.html +24 -0
- data/src/xslt/ajaxslt-0.8.1/dom_unittest.js +131 -0
- data/src/xslt/ajaxslt-0.8.1/simplelog.js +79 -0
- data/src/xslt/ajaxslt-0.8.1/test/xpath.html +18 -0
- data/src/xslt/ajaxslt-0.8.1/test/xpath_script.js +45 -0
- data/src/xslt/ajaxslt-0.8.1/test/xslt.html +58 -0
- data/src/xslt/ajaxslt-0.8.1/test/xslt_script.js +33 -0
- data/src/xslt/ajaxslt-0.8.1/unittestsuite.html +26 -0
- data/src/xslt/ajaxslt-0.8.1/xmltoken.js +149 -0
- data/src/xslt/ajaxslt-0.8.1/xmltoken_unittest.html +18 -0
- data/src/xslt/ajaxslt-0.8.1/xmltoken_unittest.js +811 -0
- data/src/xslt/ajaxslt-0.8.1/xpath_unittest.html +39 -0
- data/src/xslt/ajaxslt-0.8.1/xpath_unittest.js +557 -0
- data/src/xslt/ajaxslt-0.8.1/xpathdebug.js +234 -0
- data/src/xslt/ajaxslt-0.8.1/xslt_unittest.html +138 -0
- data/src/xslt/ajaxslt-0.8.1/xslt_unittest.js +68 -0
- data/src/xslt/implementation.js +625 -0
- data/src/xslt/processor.js +37 -0
- data/src/xslt/util.js +449 -0
- data/test/foo.html +8 -0
- data/test/foo.js +40 -0
- data/test/jquery.js +6002 -0
- data/test/x.js +1 -0
- data/test/y.js +1 -0
- metadata +245 -14
@@ -0,0 +1,37 @@
|
|
1
|
+
/**
|
2
|
+
* @author thatcher
|
3
|
+
*/
|
4
|
+
|
5
|
+
$w.__defineGetter__("XSLTProcessor", function(){
|
6
|
+
return new XSLTProcessor(arguments);
|
7
|
+
});
|
8
|
+
|
9
|
+
var XSLTProcessor = function() {
|
10
|
+
this.__stylesheet__ = null;
|
11
|
+
};
|
12
|
+
__extend__(XSLTProcessor.prototype, {
|
13
|
+
clearParameters: function(){
|
14
|
+
//TODO
|
15
|
+
},
|
16
|
+
getParameter: function(nsuri, name){
|
17
|
+
//TODO
|
18
|
+
},
|
19
|
+
importStyleSheet: function(stylesheet){
|
20
|
+
this.__stylesheet__ = stylesheet;
|
21
|
+
},
|
22
|
+
removeParameter: function(nsuri, name){
|
23
|
+
//TODO
|
24
|
+
},
|
25
|
+
reset: function(){
|
26
|
+
//TODO
|
27
|
+
},
|
28
|
+
setParameter: function(nsuri, name, value){
|
29
|
+
//TODO
|
30
|
+
},
|
31
|
+
transformToDocument: function(sourceNode){
|
32
|
+
return xsltProcess(sourceNode, this.__stylesheet__);
|
33
|
+
},
|
34
|
+
transformToFragment: function(sourceNode, ownerDocument){
|
35
|
+
return xsltProcess(sourceNode, this.__stylesheet__).childNodes;
|
36
|
+
}
|
37
|
+
});
|
data/src/xslt/util.js
ADDED
@@ -0,0 +1,449 @@
|
|
1
|
+
// Copyright 2005 Google
|
2
|
+
//
|
3
|
+
// Author: Steffen Meschkat <mesch@google.com>
|
4
|
+
//
|
5
|
+
// Miscellaneous utility and placeholder functions.
|
6
|
+
|
7
|
+
// Dummy implmentation for the logging functions. Replace by something
|
8
|
+
// useful when you want to debug.
|
9
|
+
function xpathLog(msg) {};
|
10
|
+
function xsltLog(msg) {};
|
11
|
+
function xsltLogXml(msg) {};
|
12
|
+
|
13
|
+
var ajaxsltIsIE6 = navigator.appVersion.match(/MSIE 6.0/);
|
14
|
+
|
15
|
+
// Throws an exception if false.
|
16
|
+
function assert(b) {
|
17
|
+
if (!b) {
|
18
|
+
throw "Assertion failed";
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
// Splits a string s at all occurrences of character c. This is like
|
23
|
+
// the split() method of the string object, but IE omits empty
|
24
|
+
// strings, which violates the invariant (s.split(x).join(x) == s).
|
25
|
+
function stringSplit(s, c) {
|
26
|
+
var a = s.indexOf(c);
|
27
|
+
if (a == -1) {
|
28
|
+
return [ s ];
|
29
|
+
}
|
30
|
+
var parts = [];
|
31
|
+
parts.push(s.substr(0,a));
|
32
|
+
while (a != -1) {
|
33
|
+
var a1 = s.indexOf(c, a + 1);
|
34
|
+
if (a1 != -1) {
|
35
|
+
parts.push(s.substr(a + 1, a1 - a - 1));
|
36
|
+
} else {
|
37
|
+
parts.push(s.substr(a + 1));
|
38
|
+
}
|
39
|
+
a = a1;
|
40
|
+
}
|
41
|
+
return parts;
|
42
|
+
}
|
43
|
+
|
44
|
+
// The following function does what document.importNode(node, true)
|
45
|
+
// would do for us here; however that method is broken in Safari/1.3,
|
46
|
+
// so we have to emulate it.
|
47
|
+
function xmlImportNode(doc, node) {
|
48
|
+
if (node.nodeType == DOM_TEXT_NODE) {
|
49
|
+
return domCreateTextNode(doc, node.nodeValue);
|
50
|
+
|
51
|
+
} else if (node.nodeType == DOM_CDATA_SECTION_NODE) {
|
52
|
+
return domCreateCDATASection(doc, node.nodeValue);
|
53
|
+
|
54
|
+
} else if (node.nodeType == DOM_ELEMENT_NODE) {
|
55
|
+
var newNode = domCreateElement(doc, node.nodeName);
|
56
|
+
for (var i = 0; i < node.attributes.length; ++i) {
|
57
|
+
var an = node.attributes[i];
|
58
|
+
var name = an.nodeName;
|
59
|
+
var value = an.nodeValue;
|
60
|
+
domSetAttribute(newNode, name, value);
|
61
|
+
}
|
62
|
+
|
63
|
+
for (var c = node.firstChild; c; c = c.nextSibling) {
|
64
|
+
var cn = arguments.callee(doc, c);
|
65
|
+
domAppendChild(newNode, cn);
|
66
|
+
}
|
67
|
+
|
68
|
+
return newNode;
|
69
|
+
|
70
|
+
} else {
|
71
|
+
return domCreateComment(doc, node.nodeName);
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
// A set data structure. It can also be used as a map (i.e. the keys
|
76
|
+
// can have values other than 1), but we don't call it map because it
|
77
|
+
// would be ambiguous in this context. Also, the map is iterable, so
|
78
|
+
// we can use it to replace for-in loops over core javascript Objects.
|
79
|
+
// For-in iteration breaks when Object.prototype is modified, which
|
80
|
+
// some clients of the maps API do.
|
81
|
+
//
|
82
|
+
// NOTE(mesch): The set keys by the string value of its element, NOT
|
83
|
+
// by the typed value. In particular, objects can't be used as keys.
|
84
|
+
//
|
85
|
+
// @constructor
|
86
|
+
function Set() {
|
87
|
+
this.keys = [];
|
88
|
+
}
|
89
|
+
|
90
|
+
Set.prototype.size = function() {
|
91
|
+
return this.keys.length;
|
92
|
+
}
|
93
|
+
|
94
|
+
// Adds the entry to the set, ignoring if it is present.
|
95
|
+
Set.prototype.add = function(key, opt_value) {
|
96
|
+
var value = opt_value || 1;
|
97
|
+
if (!this.contains(key)) {
|
98
|
+
this[':' + key] = value;
|
99
|
+
this.keys.push(key);
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
// Sets the entry in the set, adding if it is not yet present.
|
104
|
+
Set.prototype.set = function(key, opt_value) {
|
105
|
+
var value = opt_value || 1;
|
106
|
+
if (!this.contains(key)) {
|
107
|
+
this[':' + key] = value;
|
108
|
+
this.keys.push(key);
|
109
|
+
} else {
|
110
|
+
this[':' + key] = value;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
// Increments the key's value by 1. This works around the fact that
|
115
|
+
// numbers are always passed by value, never by reference, so that we
|
116
|
+
// can't increment the value returned by get(), or the iterator
|
117
|
+
// argument. Sets the key's value to 1 if it doesn't exist yet.
|
118
|
+
Set.prototype.inc = function(key) {
|
119
|
+
if (!this.contains(key)) {
|
120
|
+
this[':' + key] = 1;
|
121
|
+
this.keys.push(key);
|
122
|
+
} else {
|
123
|
+
this[':' + key]++;
|
124
|
+
}
|
125
|
+
}
|
126
|
+
|
127
|
+
Set.prototype.get = function(key) {
|
128
|
+
if (this.contains(key)) {
|
129
|
+
return this[':' + key];
|
130
|
+
} else {
|
131
|
+
var undefined;
|
132
|
+
return undefined;
|
133
|
+
}
|
134
|
+
}
|
135
|
+
|
136
|
+
// Removes the entry from the set.
|
137
|
+
Set.prototype.remove = function(key) {
|
138
|
+
if (this.contains(key)) {
|
139
|
+
delete this[':' + key];
|
140
|
+
removeFromArray(this.keys, key, true);
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
// Tests if an entry is in the set.
|
145
|
+
Set.prototype.contains = function(entry) {
|
146
|
+
return typeof this[':' + entry] != 'undefined';
|
147
|
+
}
|
148
|
+
|
149
|
+
// Gets a list of values in the set.
|
150
|
+
Set.prototype.items = function() {
|
151
|
+
var list = [];
|
152
|
+
for (var i = 0; i < this.keys.length; ++i) {
|
153
|
+
var k = this.keys[i];
|
154
|
+
var v = this[':' + k];
|
155
|
+
list.push(v);
|
156
|
+
}
|
157
|
+
return list;
|
158
|
+
}
|
159
|
+
|
160
|
+
|
161
|
+
// Invokes function f for every key value pair in the set as a method
|
162
|
+
// of the set.
|
163
|
+
Set.prototype.map = function(f) {
|
164
|
+
for (var i = 0; i < this.keys.length; ++i) {
|
165
|
+
var k = this.keys[i];
|
166
|
+
f.call(this, k, this[':' + k]);
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
Set.prototype.clear = function() {
|
171
|
+
for (var i = 0; i < this.keys.length; ++i) {
|
172
|
+
delete this[':' + this.keys[i]];
|
173
|
+
}
|
174
|
+
this.keys.length = 0;
|
175
|
+
}
|
176
|
+
|
177
|
+
|
178
|
+
// Applies the given function to each element of the array, preserving
|
179
|
+
// this, and passing the index.
|
180
|
+
function mapExec(array, func) {
|
181
|
+
for (var i = 0; i < array.length; ++i) {
|
182
|
+
func.call(this, array[i], i);
|
183
|
+
}
|
184
|
+
}
|
185
|
+
|
186
|
+
// Returns an array that contains the return value of the given
|
187
|
+
// function applied to every element of the input array.
|
188
|
+
function mapExpr(array, func) {
|
189
|
+
var ret = [];
|
190
|
+
for (var i = 0; i < array.length; ++i) {
|
191
|
+
ret.push(func(array[i]));
|
192
|
+
}
|
193
|
+
return ret;
|
194
|
+
};
|
195
|
+
|
196
|
+
// Reverses the given array in place.
|
197
|
+
function reverseInplace(array) {
|
198
|
+
for (var i = 0; i < array.length / 2; ++i) {
|
199
|
+
var h = array[i];
|
200
|
+
var ii = array.length - i - 1;
|
201
|
+
array[i] = array[ii];
|
202
|
+
array[ii] = h;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
|
206
|
+
// Removes value from array. Returns the number of instances of value
|
207
|
+
// that were removed from array.
|
208
|
+
function removeFromArray(array, value, opt_notype) {
|
209
|
+
var shift = 0;
|
210
|
+
for (var i = 0; i < array.length; ++i) {
|
211
|
+
if (array[i] === value || (opt_notype && array[i] == value)) {
|
212
|
+
array.splice(i--, 1);
|
213
|
+
shift++;
|
214
|
+
}
|
215
|
+
}
|
216
|
+
return shift;
|
217
|
+
}
|
218
|
+
|
219
|
+
// Shallow-copies an array to the end of another array
|
220
|
+
// Basically Array.concat, but works with other non-array collections
|
221
|
+
function copyArray(dst, src) {
|
222
|
+
if (!src) return;
|
223
|
+
var dstLength = dst.length;
|
224
|
+
for (var i = src.length - 1; i >= 0; --i) {
|
225
|
+
dst[i+dstLength] = src[i];
|
226
|
+
}
|
227
|
+
}
|
228
|
+
|
229
|
+
/**
|
230
|
+
* This is an optimization for copying attribute lists in IE. IE includes many
|
231
|
+
* extraneous properties in its DOM attribute lists, which take require
|
232
|
+
* significant extra processing when evaluating attribute steps. With this
|
233
|
+
* function, we ignore any such attributes that has an empty string value.
|
234
|
+
*/
|
235
|
+
function copyArrayIgnoringAttributesWithoutValue(dst, src)
|
236
|
+
{
|
237
|
+
if (!src) return;
|
238
|
+
for (var i = src.length - 1; i >= 0; --i) {
|
239
|
+
// this test will pass so long as the attribute has a non-empty string
|
240
|
+
// value, even if that value is "false", "0", "undefined", etc.
|
241
|
+
if (src[i].nodeValue) {
|
242
|
+
dst.push(src[i]);
|
243
|
+
}
|
244
|
+
}
|
245
|
+
}
|
246
|
+
|
247
|
+
// Returns the text value of a node; for nodes without children this
|
248
|
+
// is the nodeValue, for nodes with children this is the concatenation
|
249
|
+
// of the value of all children.
|
250
|
+
function xmlValue(node) {
|
251
|
+
if (!node) {
|
252
|
+
return '';
|
253
|
+
}
|
254
|
+
|
255
|
+
var ret = '';
|
256
|
+
if (node.nodeType == DOM_TEXT_NODE ||
|
257
|
+
node.nodeType == DOM_CDATA_SECTION_NODE) {
|
258
|
+
ret += node.nodeValue;
|
259
|
+
|
260
|
+
} else if (node.nodeType == DOM_ATTRIBUTE_NODE) {
|
261
|
+
if (ajaxsltIsIE6) {
|
262
|
+
ret += xmlValueIE6Hack(node);
|
263
|
+
} else {
|
264
|
+
ret += node.nodeValue;
|
265
|
+
}
|
266
|
+
} else if (node.nodeType == DOM_ELEMENT_NODE ||
|
267
|
+
node.nodeType == DOM_DOCUMENT_NODE ||
|
268
|
+
node.nodeType == DOM_DOCUMENT_FRAGMENT_NODE) {
|
269
|
+
for (var i = 0; i < node.childNodes.length; ++i) {
|
270
|
+
ret += arguments.callee(node.childNodes[i]);
|
271
|
+
}
|
272
|
+
}
|
273
|
+
return ret;
|
274
|
+
}
|
275
|
+
|
276
|
+
function xmlValueIE6Hack(node) {
|
277
|
+
// Issue 19, IE6 mangles href attribute when it's a javascript: url
|
278
|
+
var nodeName = node.nodeName;
|
279
|
+
var nodeValue = node.nodeValue;
|
280
|
+
if (nodeName.length != 4) return nodeValue;
|
281
|
+
if (!/^href$/i.test(nodeName)) return nodeValue;
|
282
|
+
if (!/^javascript:/.test(nodeValue)) return nodeValue;
|
283
|
+
return unescape(nodeValue);
|
284
|
+
}
|
285
|
+
|
286
|
+
// Returns the representation of a node as XML text.
|
287
|
+
function xmlText(node, opt_cdata) {
|
288
|
+
var buf = [];
|
289
|
+
xmlTextR(node, buf, opt_cdata);
|
290
|
+
return buf.join('');
|
291
|
+
}
|
292
|
+
|
293
|
+
function xmlTextR(node, buf, cdata) {
|
294
|
+
if (node.nodeType == DOM_TEXT_NODE) {
|
295
|
+
buf.push(xmlEscapeText(node.nodeValue));
|
296
|
+
|
297
|
+
} else if (node.nodeType == DOM_CDATA_SECTION_NODE) {
|
298
|
+
if (cdata) {
|
299
|
+
buf.push(node.nodeValue);
|
300
|
+
} else {
|
301
|
+
buf.push('<![CDATA[' + node.nodeValue + ']]>');
|
302
|
+
}
|
303
|
+
|
304
|
+
} else if (node.nodeType == DOM_COMMENT_NODE) {
|
305
|
+
buf.push('<!--' + node.nodeValue + '-->');
|
306
|
+
|
307
|
+
} else if (node.nodeType == DOM_ELEMENT_NODE) {
|
308
|
+
buf.push('<' + xmlFullNodeName(node));
|
309
|
+
for (var i = 0; i < node.attributes.length; ++i) {
|
310
|
+
var a = node.attributes[i];
|
311
|
+
if (a && a.nodeName && a.nodeValue) {
|
312
|
+
buf.push(' ' + xmlFullNodeName(a) + '="' +
|
313
|
+
xmlEscapeAttr(a.nodeValue) + '"');
|
314
|
+
}
|
315
|
+
}
|
316
|
+
|
317
|
+
if (node.childNodes.length == 0) {
|
318
|
+
buf.push('/>');
|
319
|
+
} else {
|
320
|
+
buf.push('>');
|
321
|
+
for (var i = 0; i < node.childNodes.length; ++i) {
|
322
|
+
arguments.callee(node.childNodes[i], buf, cdata);
|
323
|
+
}
|
324
|
+
buf.push('</' + xmlFullNodeName(node) + '>');
|
325
|
+
}
|
326
|
+
|
327
|
+
} else if (node.nodeType == DOM_DOCUMENT_NODE ||
|
328
|
+
node.nodeType == DOM_DOCUMENT_FRAGMENT_NODE) {
|
329
|
+
for (var i = 0; i < node.childNodes.length; ++i) {
|
330
|
+
arguments.callee(node.childNodes[i], buf, cdata);
|
331
|
+
}
|
332
|
+
}
|
333
|
+
}
|
334
|
+
|
335
|
+
function xmlFullNodeName(n) {
|
336
|
+
if (n.prefix && n.nodeName.indexOf(n.prefix + ':') != 0) {
|
337
|
+
return n.prefix + ':' + n.nodeName;
|
338
|
+
} else {
|
339
|
+
return n.nodeName;
|
340
|
+
}
|
341
|
+
}
|
342
|
+
|
343
|
+
// Escape XML special markup chracters: tag delimiter < > and entity
|
344
|
+
// reference start delimiter &. The escaped string can be used in XML
|
345
|
+
// text portions (i.e. between tags).
|
346
|
+
function xmlEscapeText(s) {
|
347
|
+
return ('' + s).replace(/&/g, '&').replace(/</g, '<').
|
348
|
+
replace(/>/g, '>');
|
349
|
+
}
|
350
|
+
|
351
|
+
// Escape XML special markup characters: tag delimiter < > entity
|
352
|
+
// reference start delimiter & and quotes ". The escaped string can be
|
353
|
+
// used in double quoted XML attribute value portions (i.e. in
|
354
|
+
// attributes within start tags).
|
355
|
+
function xmlEscapeAttr(s) {
|
356
|
+
return xmlEscapeText(s).replace(/\"/g, '"');
|
357
|
+
}
|
358
|
+
|
359
|
+
// Escape markup in XML text, but don't touch entity references. The
|
360
|
+
// escaped string can be used as XML text (i.e. between tags).
|
361
|
+
function xmlEscapeTags(s) {
|
362
|
+
return s.replace(/</g, '<').replace(/>/g, '>');
|
363
|
+
}
|
364
|
+
|
365
|
+
/**
|
366
|
+
* Wrapper function to access the owner document uniformly for document
|
367
|
+
* and other nodes: for the document node, the owner document is the
|
368
|
+
* node itself, for all others it's the ownerDocument property.
|
369
|
+
*
|
370
|
+
* @param {Node} node
|
371
|
+
* @return {Document}
|
372
|
+
*/
|
373
|
+
function xmlOwnerDocument(node) {
|
374
|
+
if (node.nodeType == DOM_DOCUMENT_NODE) {
|
375
|
+
return node;
|
376
|
+
} else {
|
377
|
+
return node.ownerDocument;
|
378
|
+
}
|
379
|
+
}
|
380
|
+
|
381
|
+
// Wrapper around DOM methods so we can condense their invocations.
|
382
|
+
function domGetAttribute(node, name) {
|
383
|
+
return node.getAttribute(name);
|
384
|
+
}
|
385
|
+
|
386
|
+
function domSetAttribute(node, name, value) {
|
387
|
+
return node.setAttribute(name, value);
|
388
|
+
}
|
389
|
+
|
390
|
+
function domRemoveAttribute(node, name) {
|
391
|
+
return node.removeAttribute(name);
|
392
|
+
}
|
393
|
+
|
394
|
+
function domAppendChild(node, child) {
|
395
|
+
return node.appendChild(child);
|
396
|
+
}
|
397
|
+
|
398
|
+
function domRemoveChild(node, child) {
|
399
|
+
return node.removeChild(child);
|
400
|
+
}
|
401
|
+
|
402
|
+
function domReplaceChild(node, newChild, oldChild) {
|
403
|
+
return node.replaceChild(newChild, oldChild);
|
404
|
+
}
|
405
|
+
|
406
|
+
function domInsertBefore(node, newChild, oldChild) {
|
407
|
+
return node.insertBefore(newChild, oldChild);
|
408
|
+
}
|
409
|
+
|
410
|
+
function domRemoveNode(node) {
|
411
|
+
return domRemoveChild(node.parentNode, node);
|
412
|
+
}
|
413
|
+
|
414
|
+
function domCreateTextNode(doc, text) {
|
415
|
+
return doc.createTextNode(text);
|
416
|
+
}
|
417
|
+
|
418
|
+
function domCreateElement(doc, name) {
|
419
|
+
return doc.createElement(name);
|
420
|
+
}
|
421
|
+
|
422
|
+
function domCreateAttribute(doc, name) {
|
423
|
+
return doc.createAttribute(name);
|
424
|
+
}
|
425
|
+
|
426
|
+
function domCreateCDATASection(doc, data) {
|
427
|
+
return doc.createCDATASection(data);
|
428
|
+
}
|
429
|
+
|
430
|
+
function domCreateComment(doc, text) {
|
431
|
+
return doc.createComment(text);
|
432
|
+
}
|
433
|
+
|
434
|
+
function domCreateDocumentFragment(doc) {
|
435
|
+
return doc.createDocumentFragment();
|
436
|
+
}
|
437
|
+
|
438
|
+
function domGetElementById(doc, id) {
|
439
|
+
return doc.getElementById(id);
|
440
|
+
}
|
441
|
+
|
442
|
+
// Same for window methods.
|
443
|
+
function windowSetInterval(win, fun, time) {
|
444
|
+
return win.setInterval(fun, time);
|
445
|
+
}
|
446
|
+
|
447
|
+
function windowClearInterval(win, id) {
|
448
|
+
return win.clearInterval(id);
|
449
|
+
}
|