diff options
| author | michitux <michitux@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2006-09-11 18:18:12 +0000 |
|---|---|---|
| committer | michitux <michitux@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2006-09-11 18:18:12 +0000 |
| commit | 31393312d03342691b394caa3cde8a2f291f8a9b (patch) | |
| tree | 7489067e9a32db0a25088d65c13ed419c49b83c1 /htroot/Connections_p.html | |
| parent | 005400a13747bca0023e03d7ec0ef0894bb7b8df (diff) | |
New XHTML-template for a large part of the frontend, for details see http://yacy-websuche.de/wiki/index.php/Dev:XHTML
If you don't use the default skin, the style will be broken or at least not complete.
YaCy now has two css-files: base.css in htroot/env and the skin. In base.css the layout and black/white text-formating-rules are defined. Colors are only defined in the skin.
The skin is now very easy to read and to change. If you want to make more changes than the colors you see in the default-skin, feel free to use the full power of css, but you are warned: The code is still not ready and may change, but we try to avoid changes which affect anything in the default-style.
Translation will be broken too because the language-files contain HTML-Code which has changed.
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2547 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/Connections_p.html')
| -rw-r--r-- | htroot/Connections_p.html | 75 |
1 files changed, 36 insertions, 39 deletions
diff --git a/htroot/Connections_p.html b/htroot/Connections_p.html index c591d45c8..2777c2476 100644 --- a/htroot/Connections_p.html +++ b/htroot/Connections_p.html @@ -1,42 +1,39 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
-<html>
-<head>
-<title>YaCy '#[clientname]#': Connection Tracking</title>
-#%env/templates/metas.template%#
-<meta http-equiv="REFRESH" content="3">
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-#%env/templates/header.template%#
-<br><br>
-<h2>Connection Tracking</h2>
-<p>
-<h3>Incoming Connections</h3>
-Showing #[numActiveRunning]# active, #[numActivePending]# pending connections from a max. of #[numMax]# allowed incoming connections.<br>
-<table border="0" cellpadding="2" cellspacing="1">
-<tr class="TableHeader" valign="bottom">
- <td class="small">Protocol</td>
- <td class="small">Duration</td>
- <td class="small">Source IP[:Port]</td>
- <td class="small">Dest. IP[:Port]</td>
- <td class="small">Command</td>
- <td class="small">Used</td>
- <td class="small">Close</td>
-</tr>
-#{list}#
-<tr class="TableCell#(dark)#Light::Dark::Summary#(/dark)#" title="#[sessionName]#">
- <td class="small">#[proto]#</td>
- <td class="small">#(ms)##[duration]#::#[duration]# ms#(/ms)#</td>
- <td class="small">#[source]#</td>
- <td class="small">#[dest]#</td>
- <td class="small">#(running)#Waiting for new request nr. # #[reqNr]#::#[command]##(/running)#</td>
- <td class="small">#[used]#</td>
- <td class="small"><a href="Connections_p.html?closeSession=#[sessionID]#"><font class="small">[Close]</font></a></td>
-</tr>
-#{/list}#
-</table>
-</p>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>YaCy '#[clientname]#': Connection Tracking</title>
+ #%env/templates/metas.template%#
+ <meta http-equiv="REFRESH" content="3" />
+ </head>
+ <body id="Connections">
+ #%env/templates/header.template%#
+ <h2>Connection Tracking</h2>
+ <h3>Incoming Connections</h3>
+ <p>Showing #[numActiveRunning]# active, #[numActivePending]# pending connections from a max. of #[numMax]# allowed incoming connections.</p>
+ <table border="0" cellpadding="2" cellspacing="1">
+ <tr class="TableHeader" valign="bottom">
+ <td>Protocol</td>
+ <td>Duration</td>
+ <td>Source IP[:Port]</td>
+ <td>Dest. IP[:Port]</td>
+ <td>Command</td>
+ <td>Used</td>
+ <td>Close</td>
+ </tr>
+ #{list}#
+ <tr class="TableCell#(dark)#Light::Dark::Summary#(/dark)#" title="#[sessionName]#">
+ <td>#[proto]#</td>
+ <td>#(ms)##[duration]#::#[duration]# ms#(/ms)#</td>
+ <td>#[source]#</td>
+ <td>#[dest]#</td>
+ <td>#(running)#Waiting for new request nr. # #[reqNr]#::#[command]##(/running)#</td>
+ <td>#[used]#</td>
+ <td><a href="Connections_p.html?closeSession=#[sessionID]#">[Close]</a></td>
+ </tr>
+ #{/list}#
+ </table>
-#%env/templates/footer.template%#
+ #%env/templates/footer.template%#
-</body>
+ </body>
</html>
\ No newline at end of file |
