envjs19 0.3.8.20101029121421
Sign up to get free protection for your applications and to get access to all the features.
- data/.jslintrbrc +30 -0
- data/.project +17 -0
- data/CHANGELOG.rdoc +57 -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 +280 -0
- data/README.rdoc +65 -0
- data/Rakefile +196 -0
- data/Wakefile +11 -0
- data/bin/envjsrb +257 -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 +35 -0
- data/lib/envjs/event_loop.js +206 -0
- data/lib/envjs/net.rb +3 -0
- data/lib/envjs/net/cgi.rb +94 -0
- data/lib/envjs/net/file.rb +69 -0
- data/lib/envjs/options.rb +11 -0
- data/lib/envjs/runtime.rb +346 -0
- data/lib/envjs/tempfile.rb +24 -0
- 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 +1023 -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 +140 -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 +47 -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 +153 -0
- data/src/html/del-ins.js +25 -0
- data/src/html/div.js +28 -0
- data/src/html/document.js +364 -0
- data/src/html/element.js +382 -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 +103 -0
- data/src/html/param.js +38 -0
- data/src/html/script.js +122 -0
- data/src/html/select.js +132 -0
- data/src/html/style.js +31 -0
- data/src/html/table.js +199 -0
- data/src/html/tbody-thead-tfoot.js +92 -0
- data/src/html/td-th.js +18 -0
- data/src/html/textarea.js +31 -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 +484 -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 +265 -0
- data/src/window/history.js +62 -0
- data/src/window/location.js +156 -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 +135 -0
- data/src/xpath/expression.js +49 -0
- data/src/xpath/implementation.js +2505 -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/base64.js +80 -0
- data/test/call-load-test.js +15 -0
- data/test/data.js +45 -0
- data/test/debug.js +53 -0
- data/test/firebug/errorIcon.png +0 -0
- data/test/firebug/firebug.css +209 -0
- data/test/firebug/firebug.html +23 -0
- data/test/firebug/firebug.js +672 -0
- data/test/firebug/firebugx.js +10 -0
- data/test/firebug/infoIcon.png +0 -0
- data/test/firebug/warningIcon.png +0 -0
- data/test/fixtures/html/events.html +171 -0
- data/test/fixtures/html/iframe1.html +46 -0
- data/test/fixtures/html/iframe1a.html +46 -0
- data/test/fixtures/html/iframe2.html +45 -0
- data/test/fixtures/html/iframe3.html +28 -0
- data/test/fixtures/html/iframeN.html +57 -0
- data/test/fixtures/html/malformed.html +181 -0
- data/test/fixtures/html/scope.html +81 -0
- data/test/fixtures/html/trivial.html +19 -0
- data/test/fixtures/html/with_js.html +26 -0
- data/test/fixtures/images/icon-blue.png +0 -0
- data/test/fixtures/js/external_script.js +1 -0
- data/test/fixtures/js/script.js +1 -0
- data/test/fixtures/js/script_error.js +2 -0
- data/test/foo.html +8 -0
- data/test/foo.js +40 -0
- data/test/html/events.html +171 -0
- data/test/html/iframe1.html +46 -0
- data/test/html/iframe1a.html +46 -0
- data/test/html/iframe2.html +45 -0
- data/test/html/iframe3.html +30 -0
- data/test/html/iframeN.html +57 -0
- data/test/html/malformed.html +181 -0
- data/test/html/scope.html +87 -0
- data/test/html/script.js +1 -0
- data/test/html/trivial.html +19 -0
- data/test/html/with_js.html +26 -0
- data/test/index.html +328 -0
- data/test/java-prototype.js +9 -0
- data/test/jquery.js +6002 -0
- data/test/primary-tests.js +26 -0
- data/test/prototype-test.js +13 -0
- data/test/qunit.js +61 -0
- data/test/qunit/qunit/qunit.css +17 -0
- data/test/qunit/qunit/qunit.js +997 -0
- data/test/scope.html +19 -0
- data/test/scope.rb +24 -0
- data/test/smp/dmathieu/index.html +8 -0
- data/test/specs/dist/env.spec.js +1534 -0
- data/test/specs/envjs.spec.css +46 -0
- data/test/specs/parser/html.js +31 -0
- data/test/specs/parser/spec.html +40 -0
- data/test/specs/parser/xml.js +31 -0
- data/test/specs/qunit.bdd.js +210 -0
- data/test/specs/qunit.css +17 -0
- data/test/specs/qunit.js +997 -0
- data/test/specs/template/spec-0.js +31 -0
- data/test/specs/template/spec-1.js +31 -0
- data/test/specs/template/spec.html +40 -0
- data/test/specs/window/css.js +23 -0
- data/test/specs/window/dialog.js +25 -0
- data/test/specs/window/document.js +23 -0
- data/test/specs/window/event.js +25 -0
- data/test/specs/window/history.js +34 -0
- data/test/specs/window/location.js +34 -0
- data/test/specs/window/navigator.js +71 -0
- data/test/specs/window/screen.js +42 -0
- data/test/specs/window/spec.html +48 -0
- data/test/specs/window/timer.js +26 -0
- data/test/specs/window/window.js +53 -0
- data/test/specs/xhr/spec.html +47 -0
- data/test/specs/xhr/xhr.js +31 -0
- data/test/test.js +10 -0
- data/test/unit/dom.js +44 -0
- data/test/unit/elementmembers.js +92 -0
- data/test/unit/events.js +195 -0
- data/test/unit/fixtures/external_script.js +1 -0
- data/test/unit/form.js +40 -0
- data/test/unit/iframe.js +234 -0
- data/test/unit/insertion.js +23 -0
- data/test/unit/multi-window.js +212 -0
- data/test/unit/nu.validator.js +34 -0
- data/test/unit/onload.js +90 -0
- data/test/unit/parser.js +122 -0
- data/test/unit/prototypecompat.js +22 -0
- data/test/unit/proxy.js +6 -0
- data/test/unit/scope.js +209 -0
- data/test/unit/timer.js +115 -0
- data/test/unit/window.js +57 -0
- data/test/x.js +1 -0
- data/test/y.js +1 -0
- metadata +367 -0
data/test/unit/timer.js
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
module("timer");
|
2
|
+
|
3
|
+
test("runnable callbacks are run later with timeout of 0", function() {
|
4
|
+
expect(2);
|
5
|
+
var occurred = 0;
|
6
|
+
setTimeout(function(){
|
7
|
+
occurred = Date.now();
|
8
|
+
}, 0);
|
9
|
+
ok( occurred === 0, "Timeout callback was not executed immediatly" );
|
10
|
+
setTimeout(function(){
|
11
|
+
ok( occurred !== 0, "Timeout callback executed" );
|
12
|
+
start();
|
13
|
+
},100);
|
14
|
+
stop();
|
15
|
+
});
|
16
|
+
|
17
|
+
test("runnable callbacks are run later with timeout more than 0", function() {
|
18
|
+
expect(3);
|
19
|
+
var occurred = 0;
|
20
|
+
setTimeout(function(){
|
21
|
+
occurred = Date.now();
|
22
|
+
}, 1000);
|
23
|
+
ok( occurred === 0, "Timeout callback was not executed immediatly" );
|
24
|
+
var now = Date.now();
|
25
|
+
setTimeout(function(){
|
26
|
+
ok( occurred !== 0, "Timeout callback was executed" );
|
27
|
+
ok( Date.now()-now >= 1500, "Timeout callback was not executed too early" );
|
28
|
+
start();
|
29
|
+
},1500);
|
30
|
+
stop();
|
31
|
+
});
|
32
|
+
|
33
|
+
test("clearTimeout cancels execution of setTimeout callback", function() {
|
34
|
+
expect(2);
|
35
|
+
var occurred = 0;
|
36
|
+
var id = setTimeout(function(){
|
37
|
+
occurred = Date.now();
|
38
|
+
ok( false, "callback should not executed after clearTimeout" );
|
39
|
+
}, 1000);
|
40
|
+
ok( occurred === 0, "Timeout callback was not executed immediatly" );
|
41
|
+
clearTimeout(id);
|
42
|
+
setTimeout(function(){
|
43
|
+
ok( occurred === 0, "Timeout callback was not executed" );
|
44
|
+
start();
|
45
|
+
},3000);
|
46
|
+
stop();
|
47
|
+
});
|
48
|
+
|
49
|
+
test("setTimeout callbacks that throw run once", function() {
|
50
|
+
expect(2);
|
51
|
+
stop();
|
52
|
+
var called = 0;
|
53
|
+
var id = setTimeout(function(){
|
54
|
+
ok( called == 0, "timeout called once" );
|
55
|
+
called++;
|
56
|
+
throw "an expected error";
|
57
|
+
}, 10);
|
58
|
+
setTimeout(function(){
|
59
|
+
ok( called == 1, "called timeout once double checked" );
|
60
|
+
clearTimeout(id);
|
61
|
+
start();
|
62
|
+
},100);
|
63
|
+
});
|
64
|
+
|
65
|
+
test("setInterval callbacks that are delayed execute immediately", function() {
|
66
|
+
expect(3);
|
67
|
+
stop();
|
68
|
+
var iteration = 0;
|
69
|
+
var last = Date.now();
|
70
|
+
var id = setInterval(function(){
|
71
|
+
var now = Date.now();
|
72
|
+
var since_last = now - last;
|
73
|
+
switch(iteration) {
|
74
|
+
case 0:
|
75
|
+
ok( since_last > 60 && since_last < 140, "first interval was correct" );
|
76
|
+
while( (Date.now() - last ) < 400 ) {}
|
77
|
+
break;
|
78
|
+
case 1:
|
79
|
+
ok( since_last < 40, "second interval was correct" );
|
80
|
+
break;
|
81
|
+
default:
|
82
|
+
ok( since_last > 60 && since_last < 140, "third interval was correct" );
|
83
|
+
clearInterval(id);
|
84
|
+
start();
|
85
|
+
}
|
86
|
+
last = Date.now();
|
87
|
+
iteration++;
|
88
|
+
}, 100);
|
89
|
+
});
|
90
|
+
|
91
|
+
test("wait(n) waits at least n and then continues with nothing in the future", function() {
|
92
|
+
stop();
|
93
|
+
expect(1);
|
94
|
+
var now = Date.now();
|
95
|
+
Envjs.wait(1000);
|
96
|
+
ok( Date.now() - now > 1000, "wait waited long enough" );
|
97
|
+
start();
|
98
|
+
});
|
99
|
+
|
100
|
+
test("wait(n) waits at least n and then continues with stuff in the future", function() {
|
101
|
+
stop();
|
102
|
+
expect(2);
|
103
|
+
var now = Date.now();
|
104
|
+
var t = setTimeout(function(){
|
105
|
+
},2000);
|
106
|
+
Envjs.wait(1000);
|
107
|
+
ok( Date.now() - now > 1000, "wait waited long enough" );
|
108
|
+
ok( Date.now() - now < 2000, "wait didn't wait too long" );
|
109
|
+
start();
|
110
|
+
});
|
111
|
+
|
112
|
+
// Local Variables:
|
113
|
+
// espresso-indent-level:4
|
114
|
+
// c-basic-offset:4
|
115
|
+
// End:
|
data/test/unit/window.js
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
module("window");
|
2
|
+
|
3
|
+
test("Window Global Scope Equivalence", function() {
|
4
|
+
expect(7);
|
5
|
+
|
6
|
+
window.foo = "abc";
|
7
|
+
ok( window.foo == foo, "Property created on the window is available in global scope." );
|
8
|
+
delete window.foo;
|
9
|
+
|
10
|
+
try{
|
11
|
+
$$$$$;
|
12
|
+
}catch(e){
|
13
|
+
ok( true, "Property is not in global scope." );
|
14
|
+
}
|
15
|
+
ok( window.$$$$$ === undefined, "Property is not in window scope." );
|
16
|
+
load("test/unit/fixtures/external_script.js");
|
17
|
+
ok( $$$$$ === "12345", "Property is in global scope." );
|
18
|
+
ok( window.$$$$$ === "12345", "Property is in window scope." );
|
19
|
+
|
20
|
+
try{ ok(window.Math === Math,
|
21
|
+
"'window' object provides common global object facilities");
|
22
|
+
}catch(e){print(e);}
|
23
|
+
try{ ok(Math.sqrt(4) == 2,
|
24
|
+
"'window' provides Math.* when referenced implicitly/global");
|
25
|
+
}catch(e){print(e);}
|
26
|
+
});
|
27
|
+
|
28
|
+
|
29
|
+
test("References to the window object", function() {
|
30
|
+
expect(3);
|
31
|
+
|
32
|
+
try{ ok(window == window.window,
|
33
|
+
"'window' is property of the window object");
|
34
|
+
}catch(e){print(e);}
|
35
|
+
try{ ok(window == self,
|
36
|
+
"'self' refers to the current window");
|
37
|
+
}catch(e){print(e);}
|
38
|
+
try{ ok(window == window.top,
|
39
|
+
"for top-level document 'window.top' refers to itself");
|
40
|
+
}catch(e){print(e);}
|
41
|
+
});
|
42
|
+
|
43
|
+
test("Allows to change the window.location.hash parameter w/o hash", function() {
|
44
|
+
expect(1);
|
45
|
+
try {
|
46
|
+
window.location.hash = 'test';
|
47
|
+
ok(window.location.hash === '#test');
|
48
|
+
}catch(e){print(e);}
|
49
|
+
});
|
50
|
+
|
51
|
+
test("Allows to change the window.location.hash parameter w/hash", function() {
|
52
|
+
expect(1);
|
53
|
+
try {
|
54
|
+
window.location.hash = '#test';
|
55
|
+
ok(window.location.hash === '#test');
|
56
|
+
}catch(e){print(e);}
|
57
|
+
});
|
data/test/x.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
debug("**");
|
data/test/y.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
debug("**2");
|
metadata
ADDED
@@ -0,0 +1,367 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: envjs19
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.8.20101029121421
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- John Resig
|
9
|
+
- Chris Thatcher
|
10
|
+
- Steven Parkes
|
11
|
+
- Anurag Mohanty
|
12
|
+
autorequire:
|
13
|
+
bindir: bin
|
14
|
+
cert_chain: []
|
15
|
+
date: 2010-10-29 00:00:00.000000000Z
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
18
|
+
name: johnson19
|
19
|
+
requirement: &70286835481180 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - ! '>='
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 2.0.0.pre3
|
25
|
+
type: :runtime
|
26
|
+
prerelease: false
|
27
|
+
version_requirements: *70286835481180
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: hoe
|
30
|
+
requirement: &70286835480300 !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
32
|
+
requirements:
|
33
|
+
- - ! '>='
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 2.6.2
|
36
|
+
type: :development
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: *70286835480300
|
39
|
+
description: ! 'A browser environment for javascript interpreters.
|
40
|
+
|
41
|
+
|
42
|
+
This is a fork of the env.js project (http://github.com/thatcher/env-js/). See that
|
43
|
+
link for env.js details.
|
44
|
+
|
45
|
+
This fork is based on the Johnson Ruby gem
|
46
|
+
|
47
|
+
(http://github.com/jbarnette/johnson).'
|
48
|
+
email:
|
49
|
+
- jeresig@gmail.com
|
50
|
+
- thatcher.christopher@gmail.com
|
51
|
+
- smparkes@smparkes.net
|
52
|
+
- tevren@gmail.com
|
53
|
+
executables:
|
54
|
+
- envjsrb
|
55
|
+
extensions: []
|
56
|
+
extra_rdoc_files:
|
57
|
+
- Manifest.txt
|
58
|
+
- licenses/GPL-LICENSE.txt
|
59
|
+
- licenses/MIT-LICENSE.txt
|
60
|
+
- CHANGELOG.rdoc
|
61
|
+
- README.rdoc
|
62
|
+
files:
|
63
|
+
- .jslintrbrc
|
64
|
+
- .project
|
65
|
+
- CHANGELOG.rdoc
|
66
|
+
- DTD/xhtml-lat1.ent
|
67
|
+
- DTD/xhtml-special.ent
|
68
|
+
- DTD/xhtml-symbol.ent
|
69
|
+
- DTD/xhtml.soc
|
70
|
+
- DTD/xhtml1-frameset.dtd
|
71
|
+
- DTD/xhtml1-strict.dtd
|
72
|
+
- DTD/xhtml1-transitional.dtd
|
73
|
+
- DTD/xhtml1.dcl
|
74
|
+
- Makefile
|
75
|
+
- Manifest.txt
|
76
|
+
- README.rdoc
|
77
|
+
- Rakefile
|
78
|
+
- Wakefile
|
79
|
+
- bin/envjsrb
|
80
|
+
- build.properties
|
81
|
+
- build.xml
|
82
|
+
- gm/jquery.js
|
83
|
+
- gm/mainx.js
|
84
|
+
- gm/sensx.js
|
85
|
+
- gm/t.js
|
86
|
+
- gm/x.html
|
87
|
+
- htmlparser/BrowserTreeBuilder.java
|
88
|
+
- htmlparser/README
|
89
|
+
- htmlparser/build.sh
|
90
|
+
- jsl/jsl
|
91
|
+
- jsl/jsl.default.conf
|
92
|
+
- jsl/jsl.exe
|
93
|
+
- lib/envjs.rb
|
94
|
+
- lib/envjs/event_loop.js
|
95
|
+
- lib/envjs/net.rb
|
96
|
+
- lib/envjs/net/cgi.rb
|
97
|
+
- lib/envjs/net/file.rb
|
98
|
+
- lib/envjs/options.rb
|
99
|
+
- lib/envjs/runtime.rb
|
100
|
+
- lib/envjs/tempfile.rb
|
101
|
+
- licenses/GPL-LICENSE.txt
|
102
|
+
- licenses/MIT-LICENSE.txt
|
103
|
+
- src/base64.js
|
104
|
+
- src/build.js
|
105
|
+
- src/cruft/bad.html
|
106
|
+
- src/cruft/dom.js
|
107
|
+
- src/cruft/element.js
|
108
|
+
- src/cruft/good.html
|
109
|
+
- src/cruft/good.js
|
110
|
+
- src/cruft/internal.js
|
111
|
+
- src/cruft/parser.js
|
112
|
+
- src/css/properties.js
|
113
|
+
- src/css/rule.js
|
114
|
+
- src/css/sizzle.js
|
115
|
+
- src/css/stylesheet.js
|
116
|
+
- src/dom/attr.js
|
117
|
+
- src/dom/cdatasection.js
|
118
|
+
- src/dom/characterdata.js
|
119
|
+
- src/dom/comment.js
|
120
|
+
- src/dom/doctype.js
|
121
|
+
- src/dom/document.js
|
122
|
+
- src/dom/dom.js
|
123
|
+
- src/dom/element.js
|
124
|
+
- src/dom/entities.js
|
125
|
+
- src/dom/exception.js
|
126
|
+
- src/dom/fragment.js
|
127
|
+
- src/dom/implementation.js
|
128
|
+
- src/dom/instruction.js
|
129
|
+
- src/dom/namednodemap.js
|
130
|
+
- src/dom/namespace.js
|
131
|
+
- src/dom/node.js
|
132
|
+
- src/dom/nodelist.js
|
133
|
+
- src/dom/parser.js
|
134
|
+
- src/dom/text.js
|
135
|
+
- src/event/event.js
|
136
|
+
- src/event/mouseevent.js
|
137
|
+
- src/event/uievent.js
|
138
|
+
- src/html/a.js
|
139
|
+
- src/html/anchor.js
|
140
|
+
- src/html/area.js
|
141
|
+
- src/html/base.js
|
142
|
+
- src/html/blockquote-q.js
|
143
|
+
- src/html/body.js
|
144
|
+
- src/html/button.js
|
145
|
+
- src/html/canvas.js
|
146
|
+
- src/html/col-colgroup.js
|
147
|
+
- src/html/collection.js
|
148
|
+
- src/html/cookie.js
|
149
|
+
- src/html/del-ins.js
|
150
|
+
- src/html/div.js
|
151
|
+
- src/html/document.js
|
152
|
+
- src/html/element.js
|
153
|
+
- src/html/fieldset.js
|
154
|
+
- src/html/form.js
|
155
|
+
- src/html/frame.js
|
156
|
+
- src/html/frameset.js
|
157
|
+
- src/html/head.js
|
158
|
+
- src/html/html.js
|
159
|
+
- src/html/htmlparser.js
|
160
|
+
- src/html/iframe.js
|
161
|
+
- src/html/image.js
|
162
|
+
- src/html/img.js
|
163
|
+
- src/html/input-elements.js
|
164
|
+
- src/html/input.js
|
165
|
+
- src/html/label.js
|
166
|
+
- src/html/legend.js
|
167
|
+
- src/html/link.js
|
168
|
+
- src/html/map.js
|
169
|
+
- src/html/meta.js
|
170
|
+
- src/html/object.js
|
171
|
+
- src/html/optgroup.js
|
172
|
+
- src/html/option.js
|
173
|
+
- src/html/param.js
|
174
|
+
- src/html/script.js
|
175
|
+
- src/html/select.js
|
176
|
+
- src/html/style.js
|
177
|
+
- src/html/table.js
|
178
|
+
- src/html/tbody-thead-tfoot.js
|
179
|
+
- src/html/td-th.js
|
180
|
+
- src/html/textarea.js
|
181
|
+
- src/html/title.js
|
182
|
+
- src/html/tr.js
|
183
|
+
- src/intro.js
|
184
|
+
- src/outro.js
|
185
|
+
- src/parser/html5.detailed.js
|
186
|
+
- src/parser/html5.min.js
|
187
|
+
- src/parser/html5.pretty.js
|
188
|
+
- src/parser/intro.js
|
189
|
+
- src/parser/outro.js
|
190
|
+
- src/platform/core.js
|
191
|
+
- src/platform/johnson.js
|
192
|
+
- src/platform/rhino.js
|
193
|
+
- src/platform/static/intro.js
|
194
|
+
- src/platform/static/outro.js
|
195
|
+
- src/profile/aop.js
|
196
|
+
- src/profile/profile.js
|
197
|
+
- src/serializer/xml.js
|
198
|
+
- src/svg/animatedstring.js
|
199
|
+
- src/svg/document.js
|
200
|
+
- src/svg/element.js
|
201
|
+
- src/svg/locatable.js
|
202
|
+
- src/svg/rect.js
|
203
|
+
- src/svg/rectelement.js
|
204
|
+
- src/svg/stylable.js
|
205
|
+
- src/svg/svgelement.js
|
206
|
+
- src/svg/transformable.js
|
207
|
+
- src/window/css.js
|
208
|
+
- src/window/dialog.js
|
209
|
+
- src/window/document.js
|
210
|
+
- src/window/event.js
|
211
|
+
- src/window/history.js
|
212
|
+
- src/window/location.js
|
213
|
+
- src/window/navigator.js
|
214
|
+
- src/window/screen.js
|
215
|
+
- src/window/timer.js
|
216
|
+
- src/window/window.js
|
217
|
+
- src/window/xhr.js
|
218
|
+
- src/xpath/expression.js
|
219
|
+
- src/xpath/implementation.js
|
220
|
+
- src/xpath/result.js
|
221
|
+
- src/xpath/util.js
|
222
|
+
- src/xpath/xmltoken.js
|
223
|
+
- src/xslt/COPYING
|
224
|
+
- src/xslt/ajaxslt-0.8.1/AUTHORS
|
225
|
+
- src/xslt/ajaxslt-0.8.1/ChangeLog
|
226
|
+
- src/xslt/ajaxslt-0.8.1/Makefile
|
227
|
+
- src/xslt/ajaxslt-0.8.1/README
|
228
|
+
- src/xslt/ajaxslt-0.8.1/TODO
|
229
|
+
- src/xslt/ajaxslt-0.8.1/dom.js
|
230
|
+
- src/xslt/ajaxslt-0.8.1/dom_unittest.html
|
231
|
+
- src/xslt/ajaxslt-0.8.1/dom_unittest.js
|
232
|
+
- src/xslt/ajaxslt-0.8.1/simplelog.js
|
233
|
+
- src/xslt/ajaxslt-0.8.1/test/xpath.html
|
234
|
+
- src/xslt/ajaxslt-0.8.1/test/xpath_script.js
|
235
|
+
- src/xslt/ajaxslt-0.8.1/test/xslt.html
|
236
|
+
- src/xslt/ajaxslt-0.8.1/test/xslt_script.js
|
237
|
+
- src/xslt/ajaxslt-0.8.1/unittestsuite.html
|
238
|
+
- src/xslt/ajaxslt-0.8.1/xmltoken.js
|
239
|
+
- src/xslt/ajaxslt-0.8.1/xmltoken_unittest.html
|
240
|
+
- src/xslt/ajaxslt-0.8.1/xmltoken_unittest.js
|
241
|
+
- src/xslt/ajaxslt-0.8.1/xpath_unittest.html
|
242
|
+
- src/xslt/ajaxslt-0.8.1/xpath_unittest.js
|
243
|
+
- src/xslt/ajaxslt-0.8.1/xpathdebug.js
|
244
|
+
- src/xslt/ajaxslt-0.8.1/xslt_unittest.html
|
245
|
+
- src/xslt/ajaxslt-0.8.1/xslt_unittest.js
|
246
|
+
- src/xslt/implementation.js
|
247
|
+
- src/xslt/processor.js
|
248
|
+
- src/xslt/util.js
|
249
|
+
- test/base64.js
|
250
|
+
- test/call-load-test.js
|
251
|
+
- test/data.js
|
252
|
+
- test/debug.js
|
253
|
+
- test/smp/dmathieu/index.html
|
254
|
+
- test/firebug/errorIcon.png
|
255
|
+
- test/firebug/firebug.css
|
256
|
+
- test/firebug/firebug.html
|
257
|
+
- test/firebug/firebug.js
|
258
|
+
- test/firebug/firebugx.js
|
259
|
+
- test/firebug/infoIcon.png
|
260
|
+
- test/firebug/warningIcon.png
|
261
|
+
- test/fixtures/html/events.html
|
262
|
+
- test/fixtures/html/iframe1.html
|
263
|
+
- test/fixtures/html/iframe1a.html
|
264
|
+
- test/fixtures/html/iframe2.html
|
265
|
+
- test/fixtures/html/iframe3.html
|
266
|
+
- test/fixtures/html/iframeN.html
|
267
|
+
- test/fixtures/html/malformed.html
|
268
|
+
- test/fixtures/html/scope.html
|
269
|
+
- test/fixtures/html/trivial.html
|
270
|
+
- test/fixtures/html/with_js.html
|
271
|
+
- test/fixtures/images/icon-blue.png
|
272
|
+
- test/fixtures/js/external_script.js
|
273
|
+
- test/fixtures/js/script.js
|
274
|
+
- test/fixtures/js/script_error.js
|
275
|
+
- test/foo.html
|
276
|
+
- test/foo.js
|
277
|
+
- test/html/events.html
|
278
|
+
- test/html/iframe1.html
|
279
|
+
- test/html/iframe1a.html
|
280
|
+
- test/html/iframe2.html
|
281
|
+
- test/html/iframe3.html
|
282
|
+
- test/html/iframeN.html
|
283
|
+
- test/html/malformed.html
|
284
|
+
- test/html/scope.html
|
285
|
+
- test/html/script.js
|
286
|
+
- test/html/trivial.html
|
287
|
+
- test/html/with_js.html
|
288
|
+
- test/index.html
|
289
|
+
- test/java-prototype.js
|
290
|
+
- test/jquery.js
|
291
|
+
- test/primary-tests.js
|
292
|
+
- test/prototype-test.js
|
293
|
+
- test/qunit.js
|
294
|
+
- test/qunit/qunit/qunit.css
|
295
|
+
- test/qunit/qunit/qunit.js
|
296
|
+
- test/scope.html
|
297
|
+
- test/scope.rb
|
298
|
+
- test/specs/dist/env.spec.js
|
299
|
+
- test/specs/envjs.spec.css
|
300
|
+
- test/specs/parser/html.js
|
301
|
+
- test/specs/parser/spec.html
|
302
|
+
- test/specs/parser/xml.js
|
303
|
+
- test/specs/qunit.bdd.js
|
304
|
+
- test/specs/qunit.css
|
305
|
+
- test/specs/qunit.js
|
306
|
+
- test/specs/template/spec-0.js
|
307
|
+
- test/specs/template/spec-1.js
|
308
|
+
- test/specs/template/spec.html
|
309
|
+
- test/specs/window/css.js
|
310
|
+
- test/specs/window/dialog.js
|
311
|
+
- test/specs/window/document.js
|
312
|
+
- test/specs/window/event.js
|
313
|
+
- test/specs/window/history.js
|
314
|
+
- test/specs/window/location.js
|
315
|
+
- test/specs/window/navigator.js
|
316
|
+
- test/specs/window/screen.js
|
317
|
+
- test/specs/window/spec.html
|
318
|
+
- test/specs/window/timer.js
|
319
|
+
- test/specs/window/window.js
|
320
|
+
- test/specs/xhr/spec.html
|
321
|
+
- test/specs/xhr/xhr.js
|
322
|
+
- test/test.js
|
323
|
+
- test/unit/dom.js
|
324
|
+
- test/unit/elementmembers.js
|
325
|
+
- test/unit/events.js
|
326
|
+
- test/unit/fixtures/external_script.js
|
327
|
+
- test/unit/form.js
|
328
|
+
- test/unit/iframe.js
|
329
|
+
- test/unit/insertion.js
|
330
|
+
- test/unit/multi-window.js
|
331
|
+
- test/unit/nu.validator.js
|
332
|
+
- test/unit/onload.js
|
333
|
+
- test/unit/parser.js
|
334
|
+
- test/unit/prototypecompat.js
|
335
|
+
- test/unit/proxy.js
|
336
|
+
- test/unit/scope.js
|
337
|
+
- test/unit/timer.js
|
338
|
+
- test/unit/window.js
|
339
|
+
- test/x.js
|
340
|
+
- test/y.js
|
341
|
+
homepage: http://github.com/smparkes/env-js
|
342
|
+
licenses: []
|
343
|
+
post_install_message:
|
344
|
+
rdoc_options:
|
345
|
+
- --main
|
346
|
+
- README.rdoc
|
347
|
+
require_paths:
|
348
|
+
- lib
|
349
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
350
|
+
none: false
|
351
|
+
requirements:
|
352
|
+
- - ! '>='
|
353
|
+
- !ruby/object:Gem::Version
|
354
|
+
version: '0'
|
355
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
356
|
+
none: false
|
357
|
+
requirements:
|
358
|
+
- - ! '>='
|
359
|
+
- !ruby/object:Gem::Version
|
360
|
+
version: '0'
|
361
|
+
requirements: []
|
362
|
+
rubyforge_project: envjs
|
363
|
+
rubygems_version: 1.8.10
|
364
|
+
signing_key:
|
365
|
+
specification_version: 3
|
366
|
+
summary: A browser environment for javascript interpreters
|
367
|
+
test_files: []
|