Author: markt
Date: Mon Jun 11 20:20:23 2012
New Revision: 1348992
URL: http://svn.apache.org/viewvc?rev=1348992&view=rev
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=53398
recieved->received
Modified:
tomcat/tc7.0.x/trunk/ (props changed)
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/StatusTransformer.java
tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
tomcat/tc7.0.x/trunk/webapps/docs/manager-howto.xml
tomcat/tc7.0.x/trunk/webapps/manager/status.xsd
Propchange: tomcat/tc7.0.x/trunk/
------------------------------------------------------------------------------
Merged /tomcat/trunk:r1348989
Modified:
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/StatusTransformer.java
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/StatusTransformer.java?rev=1348992&r1=1348991&r2=1348992&view=diff
==============================================================================
---
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/StatusTransformer.java
(original)
+++
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/StatusTransformer.java
Mon Jun 11 20:20:23 2012
@@ -528,7 +528,7 @@ public class StatusTransformer {
} else {
writer.write(" requestProcessingTime=\"0\"");
writer.write(" requestBytesSent=\"0\"");
- writer.write(" requestBytesRecieved=\"0\"");
+ writer.write(" requestBytesReceived=\"0\"");
writer.write(" remoteAddr=\"?\"");
writer.write(" virtualHost=\"?\"");
writer.write(" method=\"?\"");
Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1348992&r1=1348991&r2=1348992&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Mon Jun 11 20:20:23 2012
@@ -350,6 +350,10 @@
Fix several HTML markup errors in servlets of examples web application.
(kkolinko)
</fix>
+ <fix>
+ <bug>53398</bug>: Correct spelling of "received" in the
+ Manager application's XML output. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="jdbc-pool">
Modified: tomcat/tc7.0.x/trunk/webapps/docs/manager-howto.xml
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/manager-howto.xml?rev=1348992&r1=1348991&r2=1348992&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/manager-howto.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/manager-howto.xml Mon Jun 11 20:20:23 2012
@@ -915,7 +915,7 @@ The same information is available for bo
appropriate.</p></li>
<li><p><em>"Keep-Alive"</em> : The thread keeps the connection open to
the client in case the client sends another request. If another request
- is recieved, the next stage will br "Parse and Prepare Requst". If no
+ is received, the next stage will br "Parse and Prepare Requst". If no
request is received before the keep alive times out, the connection
will
be closed and the next stage will be "Ready".</p></li>
<li><p><em>"Ready"</em> : The thread is at rest and ready to be
Modified: tomcat/tc7.0.x/trunk/webapps/manager/status.xsd
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/manager/status.xsd?rev=1348992&r1=1348991&r2=1348992&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/manager/status.xsd (original)
+++ tomcat/tc7.0.x/trunk/webapps/manager/status.xsd Mon Jun 11 20:20:23 2012
@@ -62,7 +62,7 @@
<xs:attribute name="stage" type="xs:string" use="required"/>
<xs:attribute name="requestProcessingTime" type="xs:int"
use="required"/>
<xs:attribute name="requestBytesSent" type="xs:long" use="required"/>
- <xs:attribute name="requestBytesRecieved" type="xs:long"
use="required"/>
+ <xs:attribute name="requestBytesReceived" type="xs:long"
use="required"/>
<xs:attribute name="remoteAddr" type="xs:string" use="required"/>
<xs:attribute name="virtualHost" type="xs:string" use="required"/>
<xs:attribute name="method" type="xs:string" use="required"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]