Author: markt
Date: Mon Jun 11 20:09:20 2012
New Revision: 1348989

URL: http://svn.apache.org/viewvc?rev=1348989&view=rev
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=53398
recieved->received

Modified:
    tomcat/trunk/java/org/apache/catalina/manager/StatusTransformer.java
    tomcat/trunk/webapps/docs/manager-howto.xml
    tomcat/trunk/webapps/manager/status.xsd

Modified: tomcat/trunk/java/org/apache/catalina/manager/StatusTransformer.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/manager/StatusTransformer.java?rev=1348989&r1=1348988&r2=1348989&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/manager/StatusTransformer.java 
(original)
+++ tomcat/trunk/java/org/apache/catalina/manager/StatusTransformer.java Mon 
Jun 11 20:09:20 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/trunk/webapps/docs/manager-howto.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/manager-howto.xml?rev=1348989&r1=1348988&r2=1348989&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/manager-howto.xml (original)
+++ tomcat/trunk/webapps/docs/manager-howto.xml Mon Jun 11 20:09:20 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/trunk/webapps/manager/status.xsd
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/manager/status.xsd?rev=1348989&r1=1348988&r2=1348989&view=diff
==============================================================================
--- tomcat/trunk/webapps/manager/status.xsd (original)
+++ tomcat/trunk/webapps/manager/status.xsd Mon Jun 11 20:09:20 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: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to