ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/myhttpd/internal.pl
(Generate patch)

Comparing Coro/myhttpd/internal.pl (file contents):
Revision 1.1 by root, Sun May 19 21:00:48 2002 UTC vs.
Revision 1.3 by root, Wed May 22 00:41:44 2002 UTC

75 } 75 }
76 } 76 }
77 77
78 $content .= <<EOF; 78 $content .= <<EOF;
79</ul> 79</ul>
80<h2>Active Downloads</h2> 80<h2>Active Connections</h2>
81<ul> 81<ul>
82EOF 82EOF
83 83
84 my @data; 84 my @data;
85 my $count = 0; 85 my $count = 0;
102 $content .= "<table width='100%' border='1'><tr><th>CN</th><th>Remote ID</th><th>bytes written</th><th>bps</th><th>RM</th><th>URI</th></tr>" 102 $content .= "<table width='100%' border='1'><tr><th>CN</th><th>Remote ID</th><th>bytes written</th><th>bps</th><th>RM</th><th>URI</th></tr>"
103 . (join "", sort @data) 103 . (join "", sort @data)
104 . "</table>"; 104 . "</table>";
105 } 105 }
106 106
107 $content .= "<p>$count active downloads, $fullrate bytes/s amortized.</p>"; 107 $content .= "<p>$count active connections, $fullrate bytes/s amortized.</p>";
108 108
109 $content .= <<EOF; 109 $content .= <<EOF;
110</ul> 110</ul>
111</body> 111</body>
112</html> 112</html>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines