-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheos_debug.html
More file actions
77 lines (64 loc) · 2.93 KB
/
eos_debug.html
File metadata and controls
77 lines (64 loc) · 2.93 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html manifest="os/jeneric.manifest">
<head>
<!-- LICENSE: GPL v.3 or later (C) 2010 Andrew Gryaznov [email protected], [email protected] -->
<title>Jeneric OS</title>
<meta http-equiv="X-UA-Compatible" content="chrome=1"/> <!-- bye bye mr.Ballmer -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- misc util -->
<script type="text/javascript" src="ratbird/DataRequestor.js"></script>
<script type="text/javascript" src="ratbird/json2.js"></script>
<script type="text/javascript" src="os/ierange-m2.js"></script>
<script type="text/javascript" src="os/fixed.js"></script>
<script type="text/javascript" src="os/excanvas.js"></script>
<script type="text/javascript" src="os/md5.js"></script>
<link href="os/fauxconsole.css" rel="stylesheet" type="text/css" />
<!-- kernel -->
<script type="text/javascript" src="ratbird/jsdefs.js"></script>
<script type="text/javascript" src="ratbird/jsparse.js"></script>
<script type="text/javascript" src="ratbird/objj.js"></script>
<script type="text/javascript" src="ratbird/jsexec.js"></script>
<!-- we need gears here-->
<script type="text/javascript" src="os/gears_init.js"></script>
<script type="text/javascript" src="os/jsobject.js"></script>
<!-- orbited init -->
<script src="os/Orbited.js"></script>
<!-- full dom wrapper: orbited is needed for btoa wrapper -->
<script type="text/javascript" src="os/xmlsax.js"></script>
<script type="text/javascript" src="os/jsdom2.js"></script>
<script type="text/javascript" src="os/jsdom.js"></script>
<script type="text/javascript" src="os/canvaswrapper.js"></script>
<script>
TCPSocket = Orbited.TCPSocket;
</script>
<script src="static/protocols/stomp/stomp.js"></script>
<script type="text/javascript" src="os/eosinit.js"></script>
</head>
<body>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"> </script>
<script>
if(navigator.userAgent.indexOf("MSIE 8") == -1) CFInstall.check({});
</script>
<!-- IE debug -->
<script type="text/javascript" src="os/fauxconsole.js"></script>
<script type="text/javascript" src="os/jnext/jnext.js"></script>
<script type="text/javascript" src="os/jnext/sockets.js"></script>
<script>
function goodbye(e) {
if(!e) e = window.event;
//e.cancelBubble is supported by IE - this will kill the bubbling process.
e.cancelBubble = true;
var rv = 'You sure you want to shut down jeneric?'; //This is displayed on the dialog
e.returnValue = rv;
//e.stopPropagation works in Firefox.
if (e.stopPropagation) {
e.stopPropagation();
e.preventDefault();
}
return rv;
}
window.onbeforeunload=goodbye;
jeneric_init(document.body); // init Jeneric with output attached directly to body
</script>
</body>
</html>