UNPKG

3.05 kBHTMLView Raw
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <title>Debug Console</title>
5 <meta http-equiv="Content-Language" content="en-us">
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 <link href="{{ endpoint }}/css/prettify.css" rel="stylesheet">
8 <link href="{{ endpoint }}/css/style.css" rel="stylesheet">
9 <script language="javascript">
10 var host = '{{ host }}';
11 var port = {{ port }};
12 </script>
13 <style class="cursor-styles"></style>
14 </head>
15 <body>
16 <div id="textPage">
17 <div id="sessionWrapper" class="clearfix">
18 <h1 id="heading">Interactive Debug Console</h1>
19 <form class="subscribe-form">
20 <label class="subscribe-label">Debug ID:</label>
21 <input type="text" id="session" value="*" class="subscribe-input" />
22 <button id="subscribe" class="subscribe-btn">Subscribe</button>
23 <span id="active-subscriber" class="active-subscriber">
24 <span class="visuallyhidden">Active</span>
25 </span>
26 </form>
27 <form id="tagList">
28 </form>
29 <label id="group-responses"><input type="checkbox"> Group Rows by Request</label>
30 <button type="button" class="btn-link" id="reset-columns">Reset Columns</button>
31 </div>
32
33 <table class="table table-striped">
34 <colgroup>
35 <col>
36 <col>
37 <col>
38 <col>
39 <col>
40 </colgroup>
41
42 <thead class="table-header">
43 <tr>
44 <th>&nbsp;</th>
45 <th>&nbsp;</th>
46 <th>&nbsp;</th>
47 <th>&nbsp;</th>
48 <th>&nbsp;</th>
49 </tr>
50 </thead>
51
52 <tbody class="table-body">
53
54 </tbody>
55 </table>
56
57 </div>
58 <div id="templates"></div>
59 <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
60 <script type="text/javascript" src="{{ endpoint }}/js/lodash.js"></script>
61 <script type="text/javascript" src="{{ endpoint }}/js/handlebars.js"></script>
62 <script type="text/javascript" src="{{ endpoint }}/js/prettify.js"></script>
63 <script type="text/javascript" src="{{ endpoint }}/js/interact.js"></script>
64 <script type="text/javascript" src="{{ endpoint }}/js/ui.js"></script>
65 <script type="text/javascript">
66 $(function() {
67 $('#templates').load('{{ endpoint }}/templates/index.html', function () {
68 $.tv.register({
69 host: host,
70 port: port
71 });
72 });
73 });
74 </script>
75 </body>
76</html>
\No newline at end of file