tahoe-lafs/src/allmydata/web/welcome.xhtml
2008-07-09 17:37:22 -07:00

84 lines
2.6 KiB
HTML

<html xmlns:n="http://nevow.com/ns/nevow/0.1">
<head>
<title>AllMyData - Tahoe</title>
<!-- <link href="http://www.allmydata.com/common/css/styles.css"
rel="stylesheet" type="text/css"/> -->
<link href="/webform_css" rel="stylesheet" type="text/css"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<h1>Welcome To AllMyData "Tahoe"!</h1>
<h2>Status of this Client</h2>
<div>My nodeid: <span n:render="string" n:data="my_nodeid" /></div>
<div>My nickname: <span n:render="string" n:data="my_nickname" /></div>
<div>My versions: <span n:render="string" n:data="version" /></div>
<div>Tahoe code imported from: <span n:render="string" n:data="import_path" /></div>
<div n:render="services">Services Running:</div>
<div>
<a href="status/">Recent Uploads and Downloads</a>,
<a href="statistics">Operational Statistics</a>
</div>
<h2>The Controls</h2>
<div>There are also controls for each directory on that directory's page.</div>
<div n:render="mkdir_form" />
<div n:render="view_form" />
<div n:render="upload_form" />
<div n:render="download_form" />
<h2>Status of the Storage Grid</h2>
<div>Introducer: <span n:render="string" n:data="introducer_furl" /></div>
<div>Connected to introducer?: <span n:render="string" n:data="connected_to_introducer" /></div>
<div>Helper: <span n:render="string" n:data="helper_furl" /></div>
<div>Connected to helper?: <span n:render="string" n:data="connected_to_helper" /></div>
<br />
<div>Known Storage Servers: <span n:render="string" n:data="known_storage_servers" /></div>
<div>Connected Storage Servers: <span n:render="string" n:data="connected_storage_servers" /></div>
<div>
<table n:render="sequence" n:data="services" border="1">
<tr n:pattern="header">
<td>PeerID</td>
<td>Nickname</td>
<td>Connected?</td>
<td>Since</td>
<td>Announced</td>
<td>Version</td>
<td>Service Name</td>
</tr>
<tr n:pattern="item" n:render="service_row">
<td><tt><n:slot name="peerid"/></tt></td>
<td><b><n:slot name="nickname"/></b></td>
<td><tt><n:slot name="connected"/></tt></td>
<td><tt><n:slot name="since"/></tt></td>
<td><tt><n:slot name="announced"/></tt></td>
<td><tt><n:slot name="version"/></tt></td>
<td><tt><n:slot name="service_name"/></tt></td>
</tr>
<tr n:pattern="empty"><td>no peers!</td></tr>
</table>
</div>
<h2>Other Resources</h2>
<div>Please visit the <a href="http://allmydata.org">Tahoe home page</a> for
code updates and bug reporting.</div>
<div>The <a href="provisioning">provisioning
tool</a> may also be useful.</div>
</body>
</html>