source: trunk/src/allmydata/web/publish-status.xhtml

Last change on this file was 9e200fc, checked in by Sajith Sasidharan <sajith@…>, at 2020-05-11T15:43:04Z

Render publish problems only when there are problems

  • Property mode set to 100644
File size: 1.7 KB
Line 
1<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
2
3  <head>
4    <title>Tahoe-LAFS - Mutable File Publish Status</title>
5    <link href="/tahoe.css" rel="stylesheet" type="text/css"/>
6    <link href="/icon.png" rel="shortcut icon" />
7    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8  </head>
9
10  <body>
11
12    <h1>Mutable File Publish Status</h1>
13
14    <ul>
15      <li>Started: <span t:render="started"/></li>
16      <li>Storage Index: <span t:render="si"/></li>
17      <li>Helper?: <span t:render="helper"/></li>
18      <li>Current Size: <span t:render="current_size"/></li>
19      <li>Progress: <span t:render="progress"/></li>
20      <li>Status: <span t:render="status"/></li>
21    </ul>
22
23    <h2>Publish Results</h2>
24
25    <ul>
26      <li t:render="encoding" />
27      <t:transparent t:render="problems" />
28      <li t:render="sharemap" />
29      <li>Timings:</li>
30      <ul>
31        <li>Total: <span t:render="time_total" />
32          (<span t:render="rate_total" />)</li>
33        <ul>
34          <li>Setup: <span t:render="time_setup" /></li>
35          <li>Encrypting: <span t:render="time_encrypt" />
36            (<span t:render="rate_encrypt" />)</li>
37          <li>Encoding: <span t:render="time_encode" />
38            (<span t:render="rate_encode" />)</li>
39          <li>Packing Shares: <span t:render="time_pack" />
40            (<span t:render="rate_pack" />)
41            <ul>
42              <li>RSA Signature: <span t:render="time_sign" /></li>
43          </ul></li>
44
45          <li>Pushing: <span t:render="time_push" />
46            (<span t:render="rate_push" />)</li>
47        </ul>
48        <li t:render="server_timings" />
49      </ul>
50    </ul>
51
52    <div>Return to the <a href="/">Welcome Page</a></div>
53
54  </body>
55
56</html>
Note: See TracBrowser for help on using the repository browser.