/usr/share/pyshared/allmydata/web/welcome.xhtml is in tahoe-lafs 1.9.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | <html xmlns:n="http://nevow.com/ns/nevow/0.1"><head>
<title>Tahoe-LAFS - Welcome</title>
<link href="/tahoe.css" rel="stylesheet" type="text/css"/>
<link href="/icon.png" rel="shortcut icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head><body>
<h1>Welcome to Tahoe-LAFS!</h1>
<div class="section" id="this-client">
<h2>This Client</h2>
<p>
<a href="status/">Recent Uploads and Downloads</a>,
<a href="statistics">Operational Statistics</a>
</p>
<table class="node-info table-headings-left">
<tr><th>My nickname:</th> <td class="nickname mine" n:render="string" n:data="my_nickname" /></tr>
<tr><th>My nodeid:</th> <td class="nodeid mine data-chars" n:render="string" n:data="my_nodeid" /></tr>
<tr><th>My versions:</th> <td n:render="string" n:data="version" /></tr>
<tr><th>Tahoe-LAFS code imported from:</th> <td n:render="string" n:data="import_path" /></tr>
<tr><th>Services running:</th> <td n:render="services" /></tr>
</table>
</div>
<div id="controls">
<h2>Controls</h2>
<p>There are also controls for each directory on that directory's page.</p>
<div n:render="mkdir_form" />
<div n:render="view_form" />
<div n:render="upload_form" />
<div n:render="download_form" />
</div>
<div class="section" id="grid">
<h2>Status of the Storage Grid</h2>
<div>
<n:attr name="class">connected-<n:invisible n:render="string" n:data="connected_to_introducer" /></n:attr>
<div>Introducer: <span class="data-chars" n:render="string" n:data="introducer_furl" /></div>
<div>Connected to introducer?: <span n:render="string" n:data="connected_to_introducer" /></div>
</div>
<div>
<n:attr name="class">connected-<n:invisible n:render="string" n:data="connected_to_helper" /></n:attr>
<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>
</div>
<p>Connected to <span n:render="string" n:data="connected_storage_servers" />
of <span n:render="string" n:data="known_storage_servers" /> known storage servers:</p>
<div>
<table class="services table-headings-top" n:render="sequence" n:data="services">
<tr n:pattern="header">
<th>Service Name</th>
<th class="nickname-and-peerid">
<div class="service-nickname">Nickname</div>
<div class="nodeid data-chars">PeerID</div></th>
<th>Connected?</th>
<th>Since</th>
<th>First Announced</th>
<th>Version</th>
</tr>
<tr n:pattern="item" n:render="service_row">
<td class="service-service-name"><n:slot name="service_name"/></td>
<td class="nickname-and-peerid">
<div class="nickname"><n:slot name="nickname"/></div>
<div class="nodeid data-chars"><n:slot name="peerid"/></div></td>
<td>
<n:attr name="class">service-connected connected-<n:slot name="connected-bool"/></n:attr>
<n:slot name="connected"/>
</td>
<td class="service-since"> <n:slot name="since"/></td>
<td class="service-announced"> <n:slot name="announced"/></td>
<td class="service-version"> <n:slot name="version"/></td>
</tr>
<tr n:pattern="empty"><td>no peers!</td></tr>
</table>
</div>
</div>
<div class="section" id="other-resources">
<h2>Other Resources</h2>
<div>Please visit the <a target="_blank" href="https://tahoe-lafs.org/">Tahoe-LAFS home page</a> for
code updates and bug reporting.</div>
<div>The <a href="provisioning">provisioning tool</a> and <a
href="reliability">reliability calculator</a> may also be useful.</div>
<div n:render="incident_button" />
</div>
</body></html>
|