-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconsole.html
87 lines (86 loc) · 2.81 KB
/
console.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
<!--///////////////////////////////////////////////////////////////////////
// //
// Switchy! Chrome Proxy Manager and Switcher //
// Copyright (c) 2009 Mohammad Hejazi (mohammadhi at gmail d0t com) //
// Dual licensed under the MIT and GPL licenses. //
// //
////////////////////////////////////////////////////////////////////////-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Switchy! Log</title>
<link rel="stylesheet" href="assets/styles/options.css" type="text/css">
<script src="assets/libs/jquery-1.4.min.js" type="text/javascript"></script>
<script src="assets/scripts/console.js" type="text/javascript"></script>
</head>
<body onload="init()">
<table id="optionsTable">
<tr>
<td>
<div id="header">
<table>
<tr>
<td width="100%">
<img src="assets/images/icon-128.png" width="50" class="title" />
<span class="title">Switchy! Log</span>
</td>
<td width="100">
<img src="assets/images/close.png" class="close" title="Close" onclick="closeWindow();" />
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td>
<div id="logger" class="tab">
<div class="note">
If Switchy! stopped working after auto update, please restart Chrome.
</div>
<div>
<div class="title">Test Summary</div>
<table id="logSummary">
<tr id="test1">
<td class="icon"></td>
<td class="title inactive"><b>1.</b> Loading Switchy Plugin</td>
<td class="description"></td>
</tr>
<tr id="test2">
<td class="icon"></td>
<td class="title inactive"><b>2.</b> Plugin Functionality</td>
<td class="description"></td>
</tr>
<tr id="test3">
<td class="icon"></td>
<td class="title inactive"><b>3.</b> System Environment</td>
<td class="description"></td>
</tr>
</table>
</div>
<hr />
<div>
<div class="title">Error Log</div>
<table>
<tr>
<td colspan="2">
<textarea id="console"></textarea>
</td>
</tr>
<tr>
<td width="100%">
<button id="btnClearLog" class="button" onclick="clearLog();">Clear Log</button>
<!--button id="btnSendLog" class="button" onclick="sendLog();">** Send Error Log</button-->
</td>
<td nowrap="nowrap">
<button id="btnDiagnose" class="button" onclick="diagnose();">Diagnose</button>
<button id="btnReset" class="button" onclick="resetOptions();">Reset Options</button>
</td>
</tr>
</table>
</div>
</div>
</td>
</tr>
</table>
</body>
</html>