-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 3.12 KB
/
index.html
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
<!DOCTYPE HTML>
<!--
PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
-->
<!--
* Rapid Interface Builder (RIB) - A simple WYSIWYG HTML5 app creator
* Copyright (c) 2011-2012, Intel Corporation.
*
* This program is licensed under the terms and conditions of the
* Apache License, version 2.0. The full text of the Apache License is at
* http://www.apache.org/licenses/LICENSE-2.0
*
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="Origin" content="*">
<link rel="stylesheet" type="text/css" href="src/css/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="src/css/fonts.css" />
<link rel="stylesheet" type="text/css" href="src/css/builder.css" />
<link rel="stylesheet" type="text/css" href="src/css/panel.css" />
<link rel="stylesheet" type="text/css" href="lib/CodeMirror-2.21/lib/codemirror.css"/>
</head>
<body class="vbox fullsize">
<script src="lib/jquery-1.6.4.min.js"></script>
<script src="lib/jquery-ui-1.8.16.custom.min.js"></script>
<script src="src/js/jquery-workarounds.js"></script>
<script src="src/js/msg-box.js"></script>
<script src="src/js/events.js"></script>
<script src="src/js/widgets.js"></script>
<script src="src/js/adm.js"></script>
<script src="src/js/pageTemplate.js"></script>
<script src="src/js/keyHandler.js"></script>
<script src="src/js/fs.js"></script>
<script src="src/js/projects.js"></script>
<script src="src/js/serialize.js"></script>
<!-- New stuff from here ... -->
<script src="src/js/jquery-plugins.js"></script>
<script src="src/js/views/base.js"></script>
<script src="src/js/views/tree.js"></script>
<script src="src/js/views/page.js"></script>
<script src="src/js/views/project.js"></script>
<script src="src/js/views/layout.js"></script>
<script src="src/js/views/code.js"></script>
<script src="src/js/views/live.js"></script>
<script src="src/js/views/outline.js"></script>
<script src="src/js/views/property.js"></script>
<script src="src/js/views/palette.js"></script>
<script src="src/js/views/widget.js"></script>
<script src="src/js/panel.js"></script>
<script src="src/js/main.js"></script>
<!-- ... to here -->
<script src="lib/beautify.js"></script>
<script src="lib/beautify-html.js"></script>
<script src="lib/deflate.js"></script>
<script src="lib/jszip.js"></script>
<script src="lib/zipfile.js"></script>
<script src="lib/CodeMirror-2.21/lib/codemirror.js"></script>
<script src="lib/CodeMirror-2.21/mode/xml/xml.js"></script>
<script src="lib/CodeMirror-2.21/mode/javascript/javascript.js"></script>
<script src="lib/CodeMirror-2.21/mode/css/css.js"></script>
<script src="lib/CodeMirror-2.21/mode/htmlmixed/htmlmixed.js"></script>
<script src="src/js/codeview-mode.js"></script>
</body>
</html>