summaryrefslogtreecommitdiff
path: root/index.html
blob: a0ddf032e5ec0741e616819ae14cb7c0dca57c82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html><head>
<title>Simpleops Backend Comparison</title>
<script language="JavaScript" src="difftable.js"></script>
<link xmlns="http://www.w3.org/1999/xhtml" rel="stylesheet" type="text/css" href="difftable.css" media="all" />
<script langauge="Javascript">
function initPage() {
    if (window.location.search[0] != '?')
	alert("USAGE: ...?target");
    else
	multidiff(document.getElementById('diffTable'),
		  window.location.search.slice(1));
}
</script>
</head>
<body onload="initPage()">
<table id="diffTable" class="difftable"></table>
</body>
</html>