tahoe-lafs/src/allmydata/web/introducer.xhtml

69 lines
1.9 KiB
HTML
Raw Normal View History

2008-03-12 00:41:03 +00:00
<html xmlns:n="http://nevow.com/ns/nevow/0.1">
<head>
<title>Tahoe-LAFS - Introducer Status</title>
2008-03-12 00:41:03 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<h1>Welcome To The Tahoe-LAFS Introducer</h1>
2008-03-12 00:41:03 +00:00
<h2>My Code</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-LAFS code imported from: <span n:render="string" n:data="import_path" /></div>
2008-03-12 00:41:03 +00:00
<br />
<div>Announcement Summary: <span n:render="announcement_summary" /></div>
<div>Subscription Summary: <span n:render="client_summary" /></div>
2008-03-12 00:41:03 +00:00
<h2>Service Announcements</h2>
<div>
<table n:render="sequence" n:data="services">
2008-03-12 00:41:03 +00:00
<tr n:pattern="header">
<td>PeerID / Nickname</td>
<td>Advertised IPs</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="advertised"/></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>Subscribed Clients</h2>
<div>
<table n:render="sequence" n:data="subscribers">
2008-03-12 00:41:03 +00:00
<tr n:pattern="header">
<td>PeerID / Nickname</td>
2008-03-12 00:41:03 +00:00
<td>Advertised IPs</td>
<td>Connected From</td>
<td>Since</td>
<td>Version</td>
2008-03-12 00:41:03 +00:00
<td>Subscribed To</td>
</tr>
<tr n:pattern="item" n:render="subscriber_row">
<td><tt><n:slot name="peerid"/></tt></td>
<td><tt><n:slot name="advertised"/></tt></td>
<td><tt><n:slot name="connected"/></tt></td>
<td><tt><n:slot name="since"/></tt></td>
<td><tt><n:slot name="version"/></tt></td>
2008-03-12 00:41:03 +00:00
<td><tt><n:slot name="service_name"/></tt></td>
</tr>
<tr n:pattern="empty"><td>no peers!</td></tr>
</table>
</div>
</body>
</html>