-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
101 lines (82 loc) · 4.88 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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<script src="bower_dep/jquery/dist/jquery.min.js"></script>
<script src="bower_dep/jquery-ui/jquery-ui.min.js"></script>
<script src="bower_dep/angular/angular.min.js"></script>
<script src="bower_dep/d3/d3.min.js"></script>
<script src="bower_dep/angular-nvd3/dist/angular-nvd3.min.js"></script>
<script src="bower_dep/angularjs-nvd3-directives/dist/angularjs-nvd3-directives.min.js"></script>
<script src="bower_dep/angular-toasty/dist/angular-toasty.min.js"></script>
<script src="bower_dep/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_dep/nvd3/build/nv.d3.min.js"></script>
<script src="bower_dep/angular-bootstrap/ui-bootstrap.min.js"></script>
<script src="bower_dep/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<script src="bower_dep/angular-confirm-modal/angular-confirm.js"></script>
<script src="bower_dep/stomp-websocket/lib/stomp.js"></script>
<script src="libs/angular-component.min.js"></script> <!-- TODO: remove when/if Angular 1.5.0+ will be used in the project -->
<script src="JS/AMQApp.js"></script>
<script src="JS/Factories/AMQInfoFact.js"></script>
<script src="JS/Factories/AMQClientFact.js"></script>
<script src="JS/Factories/Base64Fact.js"></script>
<script src="JS/Factories/httpRequestInterceptorFact.js"></script>
<script src="JS/Factories/SendMessageFact.js"></script>
<script src="JS/Factories/PreferencesFact.js"></script>
<script src="JS/Factories/ProcessorFact.js"></script>
<script src="JS/Controllers/InfoCtrl.js"></script>
<script src="JS/Controllers/TabsCtrl.js"></script>
<script src="JS/Controllers/QueuesCtrl.js"></script>
<script src="JS/Controllers/QueueTopicStatsCtrl.js"></script>
<script src="JS/Controllers/TopicsCtrl.js"></script>
<script src="JS/Controllers/SubscribersCtrl.js"></script>
<script src="JS/Controllers/ConnectionsCtrl.js"></script>
<script src="JS/Controllers/ClientCtrl.js"></script>
<script src="JS/Controllers/LoginCtrl.js"></script>
<script src="JS/Controllers/SendCtrl.js"></script>
<script src="JS/Directives/Resizer.js"></script>
<link rel="stylesheet" type="text/css" href="bower_dep/bootstrap/dist/css/bootstrap.min.css"></link>
<link rel="stylesheet" type="text/css" href="bower_dep/angular-toasty/dist/angular-toasty.min.css"></link>
<link rel="stylesheet" type="text/css" href="bower_dep/nvd3/build/nv.d3.min.css"></link>
<link rel="stylesheet" type="text/css" href="CSS/AMQApp.css"></link>
</head>
<body>
<div ng-app="AMQApp" class="AMQApp">
<div ng-include="'Templates/Login.html'">
</div>
<div id="tabs" ng-controller="TabsCtrl" ng-show="amqInfo.connected">
<div>
<div class="filterField" ng-show="currentTab.hasFilter">
Filter: <input type="text" autocomplete="off" ng-model="filterField[currentTab.id]" autofocus/>
</div>
<nav class="navbar-default">
<div class="container-fluid">
<div>
<ul class="nav nav-pills ">
<li ng-repeat="tab in tabs"
ng-class="{active:isActiveTab(tab.url)}"
ng-show="(!amqInfo.stompOnly) || (tab.id=='client')"
ng-click="onClickTab(tab)"><a href="#">{{tab.title}}</a></li>
</ul>
</div>
</div>
</nav>
<div id="mainView">
<div ng-include="currentTab.url"></div>
</div>
<div id="footerView">
<button class="btn btn-primary btn-sm" ng-show="prefs.autoRefreshInterval==0" ng-click="refreshAll()">Refresh <span class="glyphicon glyphicon-refresh" aria-hidden="true"></button>
<button class="btn btn-danger btn-sm" ng-click="disconnectAMQ()">Disconnect <span class="glyphicon glyphicon-off" aria-hidden="true"></span></button>
</div>
</div>
<div id="version">
v1.11 May 2018 ({{amqInfo.brokerip}}) [{{amqInfo.updates}}]
<div ng-show="amqInfo.connecting" class="connection_square connection_square_{{refresh}}" ng-repeat="refresh in amqInfo.currentlyRefreshing track by $index"></div>
<img ng-show="amqInfo.connecting" src="./Images/ajax-loader.gif" ></div>
</div>
<toasty></toasty>
<div id="github"><a href="https://github.com/snuids/AMQC/wiki" target="_blank">Git Hub Repo</a></div>
</div>
</body>
</html>