]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/web/welcome.xhtml
webish: show nickname too
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / web / welcome.xhtml
1 <html xmlns:n="http://nevow.com/ns/nevow/0.1">
2   <head>
3     <title>AllMyData - Tahoe</title>
4     <!-- <link href="http://www.allmydata.com/common/css/styles.css"
5           rel="stylesheet" type="text/css"/> -->
6     <link href="/webform_css" rel="stylesheet" type="text/css"/>
7     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8   </head>
9   <body>
10
11 <h1>Welcome To AllMyData "Tahoe"!</h1>
12
13 <div>Please visit the <a href="http://allmydata.org">Tahoe home page</a> for
14 code updates and bug reporting. The <a href="provisioning">provisioning
15 tool</a> may also be useful.</div>
16
17 <h2>Grid Status</h2>
18
19 <div>My nodeid: <span n:render="string" n:data="my_nodeid" /></div>
20 <div>My version: <span n:render="string" n:data="version" /></div>
21
22 <div>Introducer: <span n:render="string" n:data="introducer_furl" /></div>
23 <div>Connected to introducer?: <span n:render="string" n:data="connected_to_introducer" /></div>
24
25 <div>Helper: <span n:render="string" n:data="helper_furl" /></div>
26 <div>Connected to helper?: <span n:render="string" n:data="connected_to_helper" /></div>
27
28 <div>Known Storage Servers: <span n:render="string" n:data="known_storage_servers" /></div>
29 <div>Connected Storage Servers: <span n:render="string" n:data="connected_storage_servers" /></div>
30
31 <div>
32 <table n:render="sequence" n:data="services" border="1">
33   <tr n:pattern="header">
34     <td>PeerID</td>
35     <td>Nickname</td>
36     <td>Connected?</td>
37     <td>Since</td>
38     <td>Announced</td>
39     <td>Version</td>
40     <td>Service Name</td>
41   </tr>
42   <tr n:pattern="item" n:render="service_row">
43     <td><tt><n:slot name="peerid"/></tt></td>
44     <td><tt><n:slot name="nickname"/></tt></td>
45     <td><tt><n:slot name="connected"/></tt></td>
46     <td><tt><n:slot name="since"/></tt></td>
47     <td><tt><n:slot name="announced"/></tt></td>
48     <td><tt><n:slot name="version"/></tt></td>
49     <td><tt><n:slot name="service_name"/></tt></td>
50   </tr>
51   <tr n:pattern="empty"><td>no peers!</td></tr>
52 </table>
53 </div>
54
55 <div n:render="download_form"/>
56 <div n:render="mkdir_form"/>
57
58   </body>
59 </html>