This repository has been archived by the owner on Jul 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
109 lines (107 loc) · 5.49 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<title>hawtio-jmx</title>
<base href='/hawtio/'></base>
<meta charset="UTF8" />
<!-- CSS -->
<!-- datatables -->
<link rel="stylesheet" href="node_modules/datatables.net-dt/css/jquery.dataTables.css" />
<!-- patternfly 3 -->
<link rel="stylesheet" href="node_modules/patternfly/dist/css/patternfly.min.css">
<link rel="stylesheet" href="node_modules/patternfly/dist/css/patternfly-additions.min.css">
<!-- patternfly 4 -->
<link rel="stylesheet" href="node_modules/@hawtio/core/dist/css/patternfly.css">
<!-- angular-patternfly -->
<link rel="stylesheet" href="node_modules/angular-patternfly/dist/styles/angular-patternfly.min.css" />
<!-- codemirror -->
<link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css" />
<!-- angular-resizable -->
<link rel="stylesheet" href="node_modules/angular-resizable/src/angular-resizable.css" />
<!-- @hawtio/core -->
<link rel="stylesheet" href="node_modules/@hawtio/core/dist/hawtio-core.css">
<!-- @hawtio/ui -->
<link rel="stylesheet" href="node_modules/@hawtio/ui/dist/hawtio-ui.css" />
<!-- @hawtio/jmx -->
<link rel="stylesheet" href="dist/hawtio-jmx.css" />
<!-- JAVASCRIPT -->
<!-- jquery -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<!-- datatables -->
<script src="node_modules/datatables.net/js/jquery.dataTables.js"></script>
<script src="node_modules/datatables.net-select/js/dataTables.select.js"></script>
<!-- bootstrap -->
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- patternfly -->
<script src="node_modules/patternfly/dist/js/patternfly.min.js"></script>
<!-- patternfly-bootstrap-treeview -->
<script src="node_modules/patternfly-bootstrap-treeview/dist/bootstrap-treeview.js"></script>
<!-- angular -->
<script src="node_modules/angular/angular.js"></script>
<!-- angular-animate -->
<script src="node_modules/angular-animate/angular-animate.min.js"></script>
<!-- angular-sanitize -->
<script src="node_modules/angular-sanitize/angular-sanitize.js"></script>
<!-- angular-route -->
<script src="node_modules/angular-route/angular-route.min.js"></script>
<!-- angular-ui-bootstrap -->
<script src="node_modules/angular-ui-bootstrap/dist/ui-bootstrap-tpls.js"></script>
<!-- angular-resizable -->
<script src="node_modules/angular-resizable/angular-resizable.min.js"></script>
<!-- angular-drag-and-drop-lists -->
<script src="node_modules/angular-drag-and-drop-lists/angular-drag-and-drop-lists.min.js"></script>
<!-- angular-datatables -->
<script src="node_modules/angularjs-datatables/dist/angular-datatables.min.js"></script>
<script src="node_modules/angularjs-datatables/dist/plugins/select/angular-datatables.select.min.js"></script>
<!-- angular-patternfly -->
<script src="node_modules/angular-patternfly/dist/angular-patternfly.js"></script>
<!-- c3, d3 -->
<script src="node_modules/c3/c3.min.js"></script>
<script src="node_modules/d3/d3.min.js"></script>
<!-- lodash -->
<script src="node_modules/lodash/lodash.min.js"></script>
<!-- urijs -->
<script src="node_modules/urijs/src/URI.min.js"></script>
<!-- js-logger -->
<script src="node_modules/js-logger/src/logger.min.js"></script>
<!-- marked -->
<script src="node_modules/marked/lib/marked.js"></script>
<!-- clipboard -->
<script src="node_modules/clipboard/dist/clipboard.js"></script>
<!-- js-beautify -->
<script src="node_modules/js-beautify/js/lib/beautify.js"></script>
<script src="node_modules/js-beautify/js/lib/beautify-html.js"></script>
<!-- codemirror -->
<script src="node_modules/codemirror/lib/codemirror.js"></script>
<script src="node_modules/codemirror/addon/edit/closetag.js"></script>
<script src="node_modules/codemirror/addon/edit/continuelist.js"></script>
<script src="node_modules/codemirror/addon/edit/matchbrackets.js"></script>
<script src="node_modules/codemirror/addon/fold/foldcode.js"></script>
<script src="node_modules/codemirror/addon/fold/brace-fold.js"></script>
<script src="node_modules/codemirror/addon/fold/xml-fold.js"></script>
<script src="node_modules/codemirror/mode/javascript/javascript.js"></script>
<script src="node_modules/codemirror/mode/xml/xml.js"></script>
<script src="node_modules/codemirror/mode/css/css.js"></script>
<script src="node_modules/codemirror/mode/htmlmixed/htmlmixed.js"></script>
<script src="node_modules/codemirror/mode/markdown/markdown.js"></script>
<script src="node_modules/codemirror/mode/diff/diff.js"></script>
<script src="node_modules/codemirror/mode/properties/properties.js"></script>
<script src="node_modules/codemirror/mode/clike/clike.js"></script>
<script src="node_modules/codemirror/mode/yaml/yaml.js"></script>
<!-- cubism -->
<script src="node_modules/cubism/cubism.v1.js"></script>
<!-- jolokia -->
<script src="node_modules/jolokia.js/jolokia.js"></script>
<script src="node_modules/jolokia.js/jolokia-simple.js"></script>
<script src="node_modules/jolokia.js/jolokia-cubism.js"></script>
<!-- @hawtio/core -->
<script src="node_modules/@hawtio/core/dist/hawtio-core.js"></script>
<!-- @hawtio/ui -->
<script src="node_modules/@hawtio/ui/dist/hawtio-ui.js"></script>
<!-- @hawtio/jmx -->
<script src="dist/hawtio-jmx.js"></script>
</head>
<body>
<hawtio-app></hawtio-app>
</body>
</html>