tahoe-lafs/src/allmydata/web/download-status-timeline.xhtml
Brian Warner b6c0297dee Include unminified versions of d3+jquery. Addresses #2208.
This should hopefully satisfy the Debian requirement to include original
sources. The old minified files for d3 and jquery were 63k and 91k
respectively, while the new unminified files are 133k and 293k.
2014-04-25 16:16:05 -07:00

38 lines
1.3 KiB
HTML

<html xmlns:n="http://nevow.com/ns/nevow/0.1">
<head>
<title>AllMyData - Tahoe - File Download Status Timeline</title>
<link href="/tahoe.css" rel="stylesheet" type="text/css"/>
<link href="/icon.png" rel="shortcut icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="/jquery-1.11.0.js"></script>
<script type="text/javascript" src="/d3-2.4.6.js"></script>
<script type="text/javascript" src="/d3-2.4.6.time.js"></script>
<script type="text/javascript" src="/download_status_timeline.js"></script>
</head>
<body>
<h1>File Download Status</h1>
<ul>
<li>Started: <span n:render="started"/></li>
<li>Storage Index: <span n:render="si"/>,
Total Size: <span n:render="total_size"/></li>
<li>Progress: <span n:render="progress"/>,
Status: <span n:render="status"/></li>
</ul>
<div style="">
<button id="toggle_misc_button">toggle misc events</button>
<button id="zoom_in_button">zoom in</button>
<button id="zoom_out_button">zoom out</button>
<button id="reset_button">reset zoom</button>
<!-- <div id="overview" style="float:right;width:166px;height:100px; border: 1px solid #ddd">overview</div> -->
<div id="timeline" style="border: 1px solid #aaa"></div>
</div>
<div>Return to the <a href="/">Welcome Page</a></div>
</body>
</html>