| 1 | <html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1"> |
|---|
| 2 | <head> |
|---|
| 3 | <title>Tahoe-LAFS - File Uploaded</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>Uploading File... <t:transparent t:render="done" /></h1> |
|---|
| 11 | |
|---|
| 12 | <h2>Upload Results:</h2> |
|---|
| 13 | <ul> |
|---|
| 14 | <li>URI: <tt><span><t:transparent t:render="uri" /></span></tt></li> |
|---|
| 15 | <li>Download link: <t:transparent t:render="download_link" /></li> |
|---|
| 16 | <li>Sharemap: <t:transparent t:render="sharemap" /></li> |
|---|
| 17 | <li>Servermap: <t:transparent t:render="servermap" /></li> |
|---|
| 18 | <li>Timings:</li> |
|---|
| 19 | <ul> |
|---|
| 20 | <li>File Size: <t:transparent t:render="file_size" /> bytes</li> |
|---|
| 21 | <li>Total: <t:transparent t:render="time_total" /> |
|---|
| 22 | (<t:transparent t:render="rate_total" />)</li> |
|---|
| 23 | <ul> |
|---|
| 24 | <li>Storage Index: <t:transparent t:render="time_storage_index" /> |
|---|
| 25 | (<t:transparent t:render="rate_storage_index" />)</li> |
|---|
| 26 | <li>[Contacting Helper]: <t:transparent t:render="time_contacting_helper" /></li> |
|---|
| 27 | <li>[Upload Ciphertext To Helper]: <t:transparent t:render="time_cumulative_fetch" /> |
|---|
| 28 | (<t:transparent t:render="rate_ciphertext_fetch" />)</li> |
|---|
| 29 | |
|---|
| 30 | <li>Peer Selection: <t:transparent t:render="time_peer_selection" /></li> |
|---|
| 31 | <li>Encode And Push: <t:transparent t:render="time_total_encode_and_push" /> |
|---|
| 32 | (<t:transparent t:render="rate_encode_and_push" />)</li> |
|---|
| 33 | <ul> |
|---|
| 34 | <li>Cumulative Encoding: <t:transparent t:render="time_cumulative_encoding" /> |
|---|
| 35 | (<t:transparent t:render="rate_encode" />)</li> |
|---|
| 36 | <li>Cumulative Pushing: <t:transparent t:render="time_cumulative_sending" /> |
|---|
| 37 | (<t:transparent t:render="rate_push" />)</li> |
|---|
| 38 | <li>Send Hashes And Close: <t:transparent t:render="time_hashes_and_close" /></li> |
|---|
| 39 | </ul> |
|---|
| 40 | <li>[Helper Total]: <t:transparent t:render="time_helper_total" /></li> |
|---|
| 41 | </ul> |
|---|
| 42 | </ul> |
|---|
| 43 | </ul> |
|---|
| 44 | |
|---|
| 45 | <div>Return to the <a href="/">Welcome Page</a></div> |
|---|
| 46 | |
|---|
| 47 | </body> |
|---|
| 48 | </html> |
|---|