1 | <html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1"> |
---|
2 | <head> |
---|
3 | <title>Tahoe-LAFS - Deep Check Results</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 | <meta t:render="refresh" /> |
---|
8 | </head> |
---|
9 | <body> |
---|
10 | |
---|
11 | <h1>Deep-Check-And-Repair Results for root |
---|
12 | SI=<span t:render="root_storage_index" /></h1> |
---|
13 | |
---|
14 | <h2 t:render="reload" /> |
---|
15 | |
---|
16 | <p>Counters:</p> |
---|
17 | <ul> |
---|
18 | <li>Objects Checked: <span><t:transparent t:render="objects_checked" /></span></li> |
---|
19 | |
---|
20 | <li>Objects Healthy (before repair): <span><t:transparent t:render="objects_healthy" /></span></li> |
---|
21 | <li>Objects Unhealthy (before repair): <span><t:transparent t:render="objects_unhealthy" /></span></li> |
---|
22 | <li>Corrupt Shares (before repair): <span><t:transparent t:render="corrupt_shares" /></span></li> |
---|
23 | |
---|
24 | <li>Repairs Attempted: <span><t:transparent t:render="repairs_attempted" /></span></li> |
---|
25 | <li>Repairs Successful: <span><t:transparent t:render="repairs_successful" /></span></li> |
---|
26 | <li>Repairs Unsuccessful: <span><t:transparent t:render="repairs_unsuccessful" /></span></li> |
---|
27 | |
---|
28 | <li>Objects Healthy (after repair): <span><t:transparent t:render="objects_healthy_post" /></span></li> |
---|
29 | <li>Objects Unhealthy (after repair): <span><t:transparent t:render="objects_unhealthy_post" /></span></li> |
---|
30 | <li>Corrupt Shares (after repair): <span><t:transparent t:render="corrupt_shares_post" /></span></li> |
---|
31 | |
---|
32 | </ul> |
---|
33 | |
---|
34 | <div t:render="pre_repair_problems_p"> |
---|
35 | <h2>Files/Directories That Had Problems:</h2> |
---|
36 | |
---|
37 | <ul t:render="pre_repair_problems"> |
---|
38 | <li t:render="item"> |
---|
39 | <t:slot name="problem" /> |
---|
40 | </li> |
---|
41 | <li t:render="empty">None</li> |
---|
42 | </ul> |
---|
43 | </div> |
---|
44 | |
---|
45 | |
---|
46 | <div t:render="post_repair_problems_p"> |
---|
47 | <h2>Files/Directories That Still Have Problems:</h2> |
---|
48 | <ul t:render="post_repair_problems"> |
---|
49 | <li t:render="item"> |
---|
50 | <t:slot name="problem" /> |
---|
51 | </li> |
---|
52 | <li t:render="empty">None</li> |
---|
53 | </ul> |
---|
54 | </div> |
---|
55 | |
---|
56 | <div t:render="servers_with_corrupt_shares_p"> |
---|
57 | <h2>Servers on which corrupt shares were found</h2> |
---|
58 | <ul t:render="servers_with_corrupt_shares"> |
---|
59 | <li t:render="item"> |
---|
60 | <t:slot name="problem" /> |
---|
61 | </li> |
---|
62 | <li t:render="empty">None</li> |
---|
63 | </ul> |
---|
64 | </div> |
---|
65 | |
---|
66 | <div t:render="remaining_corrupt_shares_p"> |
---|
67 | <h2>Remaining Corrupt Shares</h2> |
---|
68 | <p>These shares need to be manually inspected and removed.</p> |
---|
69 | <ul t:render="post_repair_corrupt_shares"> |
---|
70 | <li t:render="item"> |
---|
71 | <t:slot name="share" /> |
---|
72 | </li> |
---|
73 | <li t:render="empty">None</li> |
---|
74 | </ul> |
---|
75 | </div> |
---|
76 | |
---|
77 | <div t:render="return_to" /> |
---|
78 | |
---|
79 | <div> |
---|
80 | <table t:render="all_objects"> |
---|
81 | <tr t:render="header"> |
---|
82 | <th>Relative Path</th> |
---|
83 | <th>Healthy Pre-Repair</th> |
---|
84 | <th>Recoverable Pre-Repair</th> |
---|
85 | <th>Healthy Post-Repair</th> |
---|
86 | <th>Storage Index</th> |
---|
87 | <th>Summary</th> |
---|
88 | </tr> |
---|
89 | <tr t:render="item"> |
---|
90 | <td><t:slot name="path"/></td> |
---|
91 | <td><t:slot name="healthy_pre_repair"/></td> |
---|
92 | <td><t:slot name="recoverable_pre_repair"/></td> |
---|
93 | <td><t:slot name="healthy_post_repair"/></td> |
---|
94 | <td><t:slot name="storage_index"/></td> |
---|
95 | <td><t:slot name="summary"/></td> |
---|
96 | </tr> |
---|
97 | <tr t:render="empty"> |
---|
98 | <td>Nothing to report yet.</td> |
---|
99 | </tr> |
---|
100 | </table> |
---|
101 | </div> |
---|
102 | |
---|
103 | <div t:render="runtime" /> |
---|
104 | |
---|
105 | </body> |
---|
106 | </html> |
---|