]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/web/welcome.xhtml
webish: add storage-consumed estimate on welcome page
[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 versions: <span n:render="string" n:data="version" /></div>
21 <div>Tahoe code imported from: <span n:render="string" n:data="import_path" /></div>
22 <div>My Storage Server: <span n:render="string" n:data="storage" /></div>
23
24 <br />
25
26 <div>Introducer: <span n:render="string" n:data="introducer_furl" /></div>
27 <div>Connected to introducer?: <span n:render="string" n:data="connected_to_introducer" /></div>
28
29 <div>Helper: <span n:render="string" n:data="helper_furl" /></div>
30 <div>Connected to helper?: <span n:render="string" n:data="connected_to_helper" /></div>
31
32 <br />
33
34 <div>Known Storage Servers: <span n:render="string" n:data="known_storage_servers" /></div>
35 <div>Connected Storage Servers: <span n:render="string" n:data="connected_storage_servers" /></div>
36
37 <div>
38 <table n:render="sequence" n:data="services" border="1">
39   <tr n:pattern="header">
40     <td>PeerID / Nickname</td>
41     <td>Connected?</td>
42     <td>Since</td>
43     <td>Announced</td>
44     <td>Version</td>
45     <td>Service Name</td>
46   </tr>
47   <tr n:pattern="item" n:render="service_row">
48     <td><tt><n:slot name="peerid"/></tt></td>
49     <td><tt><n:slot name="connected"/></tt></td>
50     <td><tt><n:slot name="since"/></tt></td>
51     <td><tt><n:slot name="announced"/></tt></td>
52     <td><tt><n:slot name="version"/></tt></td>
53     <td><tt><n:slot name="service_name"/></tt></td>
54   </tr>
55   <tr n:pattern="empty"><td>no peers!</td></tr>
56 </table>
57 </div>
58
59 <div n:render="download_form"/>
60 <div n:render="mkdir_form"/>
61
62   </body>
63 </html>