mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-03-03 21:00:48 +00:00
Jake Edge tried Tahoe out and didn't notice the /status page. Hopefully with this new organization people like he will see that link more easily. This also addresses drewp's suggestion that the controls appear above the list of servers instead of below. (I think that was his suggestion.) I also reordered the controls.
78 lines
2.4 KiB
HTML
78 lines
2.4 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 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/">Uploads and Downloads</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 / 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><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>
|