forked from dmolchanenko/RedwoodHQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (69 loc) · 3.26 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
67
68
69
70
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>RedwoodHQ</title>
<link rel="stylesheet" type="text/css" href="stylesheets/redwoodtheme/resources/css/azzurra/azzurra-core.css">
<link rel="stylesheet" type="text/css" href="stylesheets/redwoodtheme/resources/css/azzurra/azzurra-ui-all.css">
<script src="extjs/ext-all-debug.js"></script>
<script src="stylesheets/redwoodtheme/resources/js/azzurra.js"></script>
<link rel="stylesheet" href="ux/combofieldbox/ComboFieldBox.css">
<link rel="stylesheet" href="ux/boxselect/BoxSelect.css">
<link rel="stylesheet" href="stylesheets/editoricons.css">
<link rel="stylesheet" type="text/css" href="stylesheets/style.css">
<link rel="stylesheet" href="stylesheets/CheckHeader.css">
<link rel="stylesheet" href="ux/stylesheets/CheckHeader.css">
<script src='ux/pdfmake.min.js'></script>
<script src='ux/vfs_fonts.js'></script>
<script src="ux/CheckColumn.js"></script>
<script src="ux/AutoLinker-min.js"></script>
<script src="ux/combofieldbox/ComboFieldBox.js"></script>
<script src="ux/SearchPlugin.js"></script>
<script src="ux/ComboFieldGridBox.js"></script>
<script src="ux/boxselect/BoxSelect.js"></script>
<script src="ux/ComboGridBox.js"></script>
<script src="ux/SearchField.js"></script>
<script src="ux/FilterCombo.js"></script>
<script src="ux/combofieldbox/ComboView.js"></script>
<script src="javascripts/xregexp.js"></script>
<script src="codemirror/lib/codemirror.js"></script>
<script src="ux/codeeditor/search.js"></script>
<script src="ux/notification/Notification.js"></script>
<script src="codemirror/mode/groovy/groovy.js"></script>
<script src="codemirror/mode/python/python.js"></script>
<script src="codemirror/mode/clike/clike.js"></script>
<script src="codemirror/mode/javascript/javascript.js"></script>
<script src="codemirror/mode/xml/xml.js"></script>
<script src="ux/BoxReorderer.js"></script>
<script src="ux/TabCloseMenu.js"></script>
<script src="ux/TabReorderer.js"></script>
<script src="ux/Terminal.js"></script>
<script src="javascripts/socket.io/socket-io-min.js"></script>
<script src="ux/codeeditor/codeeditorfield.js"></script>
<script src="ux/codeeditor/mergefield.js"></script>
<script src="ux/codeeditor/difffield.js"></script>
<script src="codemirror/addon/search/searchcursor.js"></script>
<script src="codemirror/addon/selection/active-line.js"></script>
<script src="codemirror/addon/edit/closebrackets.js"></script>
<script src="codemirror/addon/edit/matchbrackets.js"></script>
<script src="codemirror/addon/merge/dep/diff_match_patch.js"></script>
<script src="codemirror/addon/merge/merge.js"></script>
<link rel=stylesheet href="codemirror/addon/merge/merge.css">
<link rel="stylesheet" href="codemirror/lib/codemirror.css">
<link rel="stylesheet" href="ux/codeeditor/codemirror.css">
<link rel="stylesheet" href="ux/codeeditor/redwood.css">
<style>
img.x-action-col-icon {
margin-right: 5px;
}
</style>
<script>
Ext.Loader.setConfig({
enabled: true
});
</script>
<script type="text/javascript" src="app.js"> </script>
</head>
<body>
</body>
</html>