-
Notifications
You must be signed in to change notification settings - Fork 2
/
webcompare.html
70 lines (65 loc) · 3.35 KB
/
webcompare.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 PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>
WebCompare Results Analyzer
</title>
<!--
You can't serve from file:/// URLs due to security restrictions:
"Unable to load webcompare data: 0:communications failure" and
"XMLHttpRequest cannot load file:///.... Origin null is not
allowed by Access-Control-Allow-Origin."
Save the output as 'webcompare.json' and put all files into some
web-served directory like ~/public_html/webcompare/ or (on OS X)
~/Sites/webcompare/.
Then access like:
http://localhost/~myusername/webcompare/webcompare.html
-->
<!--
Combo-handled YUI CDN dependencies from:
http://developer.yahoo.com/yui/articles/hosting/?connectioncore&datasource&datatable&dragdrop&get&json&logger&reset&DEBUG&norollup
-->
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?2.8.0r4/build/reset/reset-min.css&2.8.0r4/build/datatable/assets/skins/sam/datatable.css&2.8.0r4/build/logger/assets/skins/sam/logger.css">
<script type="text/javascript" src="http://yui.yahooapis.com/combo?2.8.0r4/build/yahoo/yahoo-debug.js&2.8.0r4/build/event/event-debug.js&2.8.0r4/build/connection/connection_core-debug.js&2.8.0r4/build/datasource/datasource-debug.js&2.8.0r4/build/dom/dom-debug.js&2.8.0r4/build/dragdrop/dragdrop-debug.js&2.8.0r4/build/element/element-debug.js&2.8.0r4/build/datatable/datatable-debug.js&2.8.0r4/build/get/get-debug.js&2.8.0r4/build/json/json-debug.js&2.8.0r4/build/logger/logger-debug.js"></script>
<link rel="stylesheet" href="webcompare.css" type="text/css" media="screen" charset="utf-8">
<script src="webcompare.js" type="text/javascript" charset="utf-8"></script>
</head>
<body class="yui-skin-sam">
<div id="container">
<noscript>
<p style="font-size: xx-large; font-weight: bold; color: red; text-align: center">
You must have JavaScript enabled to use WebCompare
</p></noscript>
<h1>
Result Sets
</h1>
<h2>
PHB Statistics for your TPS Report
</h2>
<div id="statsTable">
Status table should go here
</div>
<h2>
Result Details
</h2>
<p>
Select which types of result you want to view and click the Filter! button.
</p>
<p>
<input type="checkbox" id="GoodResult">Good
<input type="checkbox" id="ErrorResult" checked="checked">Error
<input type="checkbox" id="BadOriginResult">Bad Origin
<input type="checkbox" id="BadTargetResult" checked="checked">Bad Target
<input type="submit" id="filter" value="Filter!">
</p>
<p>
Click Origin/Target Code to see the page, and Origin/Target Errors count to display a list of the errors.
</p>
<div id="resultlist">
Result List should go here
</div>
</div>
</body>
</html>