Roxen.git
/
server
/
config_actions
/
requeststatus.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/config_actions/requeststatus.pike:1:
/*
-
* $Id: requeststatus.pike,v 1.
6
1998/07/
20
21
:
01
:
33
neotron
Exp $
+
* $Id: requeststatus.pike,v 1.
7
1998/07/
22
16
:
44
:
37
grubba
Exp $
*/ inherit "wizard"; constant name= "Status//Access / request status"; constant doc = ("Shows the amount of data handled since last restart."); constant more=0; mixed page_0(object id, object mc)
Roxen.git/server/config_actions/requeststatus.pike:29:
if(!o->requests) continue; res += sprintf("<h3><a href=%s>%s</a><br>%s</h3>\n", o->query("MyWorldLocation"), o->name, replace(o->status(), "<table>", "<table cellpadding=4>")); } if(!strlen(res)) return "<b>There are no active virtual servers.</b>"; return
-
"<b>These are all virtual servers. They are sorted by the "
+
"<b>These are all
active
virtual servers. They are sorted by the "
"number of requests they have received - the most active being first. "
-
"Servers which
hasn
't recevied any requests
at all
are not listed.</b>" +
+
"Servers which
haven
't recevied any requests are not listed.</b>" +
res; } mixed handle(object id) { return wizard_for(id,0); }