| 1 | <html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1"><head> |
|---|
| 2 | <title>Tahoe-LAFS - Introducer Status</title> |
|---|
| 3 | <link href="/tahoe.css" rel="stylesheet" type="text/css"/> |
|---|
| 4 | <link href="/icon.png" rel="shortcut icon" /> |
|---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|---|
| 6 | </head><body> |
|---|
| 7 | |
|---|
| 8 | <h1>Welcome to the Tahoe-LAFS Introducer</h1> |
|---|
| 9 | |
|---|
| 10 | <div class="section" id="this-client"> |
|---|
| 11 | <h2>This Introducer</h2> |
|---|
| 12 | |
|---|
| 13 | <table class="node-info table-headings-left" t:render="node_data"> |
|---|
| 14 | <tr><th>My nodeid:</th> <td class="nodeid mine data-chars"><t:slot name="my_nodeid" /></td></tr> |
|---|
| 15 | <tr><th>My versions:</th> <td><t:slot name="version" /></td></tr> |
|---|
| 16 | <tr><th>Tahoe-LAFS code imported from:</th> <td><t:slot name="import_path" /></td></tr> |
|---|
| 17 | </table> |
|---|
| 18 | </div> |
|---|
| 19 | |
|---|
| 20 | <div>Announcement Summary: <span t:render="announcement_summary" /></div> |
|---|
| 21 | <div>Subscription Summary: <span t:render="client_summary" /></div> |
|---|
| 22 | |
|---|
| 23 | <br /> |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | <div class="section"> |
|---|
| 27 | <h2>Service Announcements</h2> |
|---|
| 28 | <table class="services table-headings-top" t:render="services"> |
|---|
| 29 | <tr> |
|---|
| 30 | <th class="nickname-and-peerid"> |
|---|
| 31 | <div class="service-nickname">Nickname</div> |
|---|
| 32 | <div class="nodeid data-chars">ServerID</div></th> |
|---|
| 33 | <th>Announced</th> |
|---|
| 34 | <th>Version</th> |
|---|
| 35 | <th>Service Name</th> |
|---|
| 36 | </tr> |
|---|
| 37 | <tr t:render="item"> |
|---|
| 38 | <td class="nickname-and-peerid"> |
|---|
| 39 | <div class="nickname"><t:slot name="nickname"/></div> |
|---|
| 40 | <div class="nodeid data-chars"><t:slot name="serverid"/></div></td> |
|---|
| 41 | <td class="service-announced"><t:attr name="title"><t:slot name="connection-hints"/></t:attr><t:slot name="announced"/></td> |
|---|
| 42 | <td class="service-version"><t:slot name="version"/></td> |
|---|
| 43 | <td class="service-service-name"><t:slot name="service_name"/></td> |
|---|
| 44 | </tr> |
|---|
| 45 | <tr t:render="empty"><td>no peers!</td></tr> |
|---|
| 46 | </table> |
|---|
| 47 | </div> |
|---|
| 48 | |
|---|
| 49 | |
|---|
| 50 | <div> |
|---|
| 51 | <h2>Subscribed Clients</h2> |
|---|
| 52 | <table class="services table-headings-top" t:render="subscribers"> |
|---|
| 53 | <tr> |
|---|
| 54 | <th class="nickname-and-peerid"> |
|---|
| 55 | <div class="service-nickname">Nickname</div> |
|---|
| 56 | <div class="nodeid data-chars">Tub ID</div></th> |
|---|
| 57 | <th>Connected From</th> |
|---|
| 58 | <th>Since</th> |
|---|
| 59 | <th>Version</th> |
|---|
| 60 | <th>Subscribed To</th> |
|---|
| 61 | </tr> |
|---|
| 62 | <tr t:render="item"> |
|---|
| 63 | <td class="nickname-and-peerid"> |
|---|
| 64 | <div class="nickname"><t:slot name="nickname"/></div> |
|---|
| 65 | <div class="nodeid data-chars"><t:slot name="tubid"/></div></td> |
|---|
| 66 | <td><t:slot name="connected"/></td> |
|---|
| 67 | <td class="service-since"><t:slot name="since"/></td> |
|---|
| 68 | <td class="service-version"><t:slot name="version"/></td> |
|---|
| 69 | <td class="service-service-name"><t:slot name="service_name"/></td> |
|---|
| 70 | </tr> |
|---|
| 71 | <tr t:render="empty"><td>no subscribers!</td></tr> |
|---|
| 72 | </table> |
|---|
| 73 | </div> |
|---|
| 74 | |
|---|
| 75 | <p class="minutia" t:render="node_data">Page rendered at <span><t:slot name="rendered_at" /></span></p> |
|---|
| 76 | |
|---|
| 77 | </body> |
|---|
| 78 | </html> |
|---|