]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/web/introducer.xhtml
oops, add introducer.xhtml
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / web / introducer.xhtml
1 <html xmlns:n="http://nevow.com/ns/nevow/0.1">
2   <head>
3     <title>AllMyData - Tahoe</title>
4     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   </head>
6   <body>
7
8 <h1>Welcome To The Tahoe Introducer</h1>
9
10 <h2>My Code</h2>
11
12 <div>My nodeid: <span n:render="string" n:data="my_nodeid" /></div>
13 <div>My versions: <span n:render="string" n:data="version" /></div>
14 <div>Tahoe code imported from: <span n:render="string" n:data="import_path" /></div>
15
16 <br />
17
18 <div>Storage Servers: <span n:render="string" n:data="known_storage_servers" /> known</div>
19
20 <div>Clients: <span n:render="string" n:data="num_clients" /> subscribed</div>
21
22 <h2>Service Announcements</h2>
23
24 <div>
25 <table n:render="sequence" n:data="services" border="1">
26   <tr n:pattern="header">
27     <td>PeerID / Nickname</td>
28     <td>Advertised IPs</td>
29     <td>Announced</td>
30     <td>Version</td>
31     <td>Service Name</td>
32   </tr>
33   <tr n:pattern="item" n:render="service_row">
34     <td><tt><n:slot name="peerid"/></tt></td>
35     <td><tt><n:slot name="advertised"/></tt></td>
36     <td><tt><n:slot name="announced"/></tt></td>
37     <td><tt><n:slot name="version"/></tt></td>
38     <td><tt><n:slot name="service_name"/></tt></td>
39   </tr>
40   <tr n:pattern="empty"><td>no peers!</td></tr>
41 </table>
42 </div>
43
44 <h2>Subscribed Clients</h2>
45
46 <div>
47 <table n:render="sequence" n:data="subscribers" border="1">
48   <tr n:pattern="header">
49     <td>PeerID</td>
50     <td>Advertised IPs</td>
51     <td>Connected From</td>
52     <td>Since</td>
53     <td>Subscribed To</td>
54   </tr>
55   <tr n:pattern="item" n:render="subscriber_row">
56     <td><tt><n:slot name="peerid"/></tt></td>
57     <td><tt><n:slot name="advertised"/></tt></td>
58     <td><tt><n:slot name="connected"/></tt></td>
59     <td><tt><n:slot name="since"/></tt></td>
60     <td><tt><n:slot name="service_name"/></tt></td>
61   </tr>
62   <tr n:pattern="empty"><td>no peers!</td></tr>
63 </table>
64 </div>
65
66   </body>
67 </html>