Author: mturk
Date: Sun Nov 26 12:26:52 2006
New Revision: 479422
URL: http://svn.apache.org/viewvc?view=rev&rev=479422
Log:
Make Server: and Jk: tags like other.
Perhaps we could simply make mime=txt to look
like Java properties file?
Modified:
tomcat/connectors/trunk/jk/native/common/jk_status.c
Modified: tomcat/connectors/trunk/jk/native/common/jk_status.c
URL:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_status.c?view=diff&rev=479422&r1=479421&r2=479422
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_status.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_status.c Sun Nov 26 12:26:52
2006
@@ -1905,7 +1905,7 @@
}
}
if (has_lb)
- jk_printf(s, "Load Balancers: size=%d\n", has_lb);
+ jk_printf(s, "Balancers: size=%d\n", has_lb);
for (i = 0; i < sw->we->num_of_workers; i++) {
w = wc_get_worker_for_name(sw->we->worker_list[i], l);
@@ -2450,13 +2450,12 @@
JK_VERMAJOR, JK_VERMINOR, JK_VERFIX);
jk_printf(s, "# TOMCAT_CONNECTOR_STR_%s\n",
JK_EXPOSED_VERSION);
- jk_puts(s, "Server Name: ");
+ jk_puts(s, "Server: name=");
jk_puts(s, s->server_name);
- jk_printf(s, "\nServer Port: %d", s->server_port);
- jk_puts(s, "\n");
- jk_putv(s, "Server Version: ",
- s->server_software, "\n", NULL);
- jk_putv(s, "JK Version: ",
+ jk_printf(s, " port=%d", s->server_port);
+ jk_putv(s, " version=\"",
+ s->server_software, "\"\n", NULL);
+ jk_putv(s, "Jk: version=",
JK_VERSTRING, "\n", NULL);
if (cmd == JK_STATUS_CMD_LIST) {
/* Step 2: Display configuration */
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]