1 | <html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1"> |
---|
2 | <head> |
---|
3 | <title>Tahoe-LAFS - File Upload Status</title> |
---|
4 | <link href="/tahoe.css" rel="stylesheet" type="text/css"/> |
---|
5 | <link href="/icon.png" rel="shortcut icon" /> |
---|
6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
---|
7 | </head> |
---|
8 | <body> |
---|
9 | |
---|
10 | <h1>File Upload Status</h1> |
---|
11 | |
---|
12 | <ul> |
---|
13 | <li>Started: <t:transparent t:render="started"/></li> |
---|
14 | <li>Storage Index: <t:transparent t:render="si"/></li> |
---|
15 | <li>Helper?: <t:transparent t:render="helper"/></li> |
---|
16 | <li>Total Size: <t:transparent t:render="total_size"/></li> |
---|
17 | <li>Progress (Hash): <t:transparent t:render="progress_hash"/></li> |
---|
18 | <li>Progress (Ciphertext): <t:transparent t:render="progress_ciphertext"/></li> |
---|
19 | <li>Progress (Encode+Push): <t:transparent t:render="progress_encode_push"/></li> |
---|
20 | <li>Status: <t:transparent t:render="status"/></li> |
---|
21 | </ul> |
---|
22 | |
---|
23 | <div t:render="results"> |
---|
24 | <h2>Upload Results</h2> |
---|
25 | <ul> |
---|
26 | <li>Shares Pushed: <t:transparent t:render="pushed_shares" /></li> |
---|
27 | <li>Shares Already Present: <t:transparent t:render="preexisting_shares" /></li> |
---|
28 | <li>Sharemap: <t:transparent t:render="sharemap" /></li> |
---|
29 | <li>Servermap: <t:transparent t:render="servermap" /></li> |
---|
30 | <li>Timings:</li> |
---|
31 | <ul> |
---|
32 | <li>File Size: <t:transparent t:render="file_size" /> bytes</li> |
---|
33 | <li>Total: <t:transparent t:render="time_total" /> |
---|
34 | (<t:transparent t:render="rate_total" />)</li> |
---|
35 | <ul> |
---|
36 | <li>Storage Index: <t:transparent t:render="time_storage_index" /> |
---|
37 | (<t:transparent t:render="rate_storage_index" />)</li> |
---|
38 | <li>[Contacting Helper]: <t:transparent t:render="time_contacting_helper" /></li> |
---|
39 | <li>[Upload Ciphertext To Helper]: <t:transparent t:render="time_cumulative_fetch" /> |
---|
40 | (<t:transparent t:render="rate_ciphertext_fetch" />)</li> |
---|
41 | |
---|
42 | <li>Peer Selection: <t:transparent t:render="time_peer_selection" /></li> |
---|
43 | <li>Encode And Push: <t:transparent t:render="time_total_encode_and_push" /> |
---|
44 | (<t:transparent t:render="rate_encode_and_push" />)</li> |
---|
45 | <ul> |
---|
46 | <li>Cumulative Encoding: <t:transparent t:render="time_cumulative_encoding" /> |
---|
47 | (<t:transparent t:render="rate_encode" />)</li> |
---|
48 | <li>Cumulative Pushing: <t:transparent t:render="time_cumulative_sending" /> |
---|
49 | (<t:transparent t:render="rate_push" />)</li> |
---|
50 | <li>Send Hashes And Close: <t:transparent t:render="time_hashes_and_close" /></li> |
---|
51 | </ul> |
---|
52 | <li>[Helper Total]: <t:transparent t:render="time_helper_total" /></li> |
---|
53 | </ul> |
---|
54 | </ul> |
---|
55 | </ul> |
---|
56 | </div> |
---|
57 | |
---|
58 | <div>Return to the <a href="/">Welcome Page</a></div> |
---|
59 | |
---|
60 | </body> |
---|
61 | </html> |
---|