larryi 2003/12/11 18:45:01 Modified: catalina/src/share/org/apache/catalina/mbeans mbeans-descriptors.xml webapps/tomcat-docs/config coyote.xml jk2.xml Log: Port Remy's update for the useBodyEncodingForURI attribute. Revision Changes Path 1.80 +5 -1 jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans/mbeans-descriptors.xml Index: mbeans-descriptors.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans/mbeans-descriptors.xml,v retrieving revision 1.79 retrieving revision 1.80 diff -u -r1.79 -r1.80 --- mbeans-descriptors.xml 20 Nov 2003 10:10:55 -0000 1.79 +++ mbeans-descriptors.xml 12 Dec 2003 02:45:01 -0000 1.80 @@ -331,6 +331,10 @@ description="Character encoding used to decode the URI" type="java.lang.String"/> + <attribute name="useBodyEncodingForURI" + description="Should the body encoding be used for URI query parameters" + type="boolean"/> + <attribute name="disableUploadTimeout" description="Should Tomcat ignore setting a timeout for uploads?" type="boolean"/> 1.8 +8 -0 jakarta-tomcat-4.0/webapps/tomcat-docs/config/coyote.xml Index: coyote.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/coyote.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- coyote.xml 20 Nov 2003 15:14:57 -0000 1.7 +++ coyote.xml 12 Dec 2003 02:45:01 -0000 1.8 @@ -100,6 +100,14 @@ </p> </attribute> + <attribute name="useBodyEncodingForURI" required="false"> + <p>This specifies if the encoding specified in contentType should be used + for URI query parameters, instead of using the URIEncoding. This + setting is present for compatibility with Tomcat 4.1.27 and earlier. + The default value is <code>false</code>. + </p> + </attribute> + </attributes> </subsection> 1.7 +14 -0 jakarta-tomcat-4.0/webapps/tomcat-docs/config/jk2.xml Index: jk2.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/jk2.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- jk2.xml 17 Mar 2003 09:51:43 -0000 1.6 +++ jk2.xml 12 Dec 2003 02:45:01 -0000 1.7 @@ -82,6 +82,20 @@ SSL Connector). The default value is <code>false</code>.</p> </attribute> + <attribute name="URIEncoding" required="false"> + <p>This specifies the character encoding used to decode the URI bytes, + after %xx decoding the URL. If not specified, ISO-8859-1 will be used. + </p> + </attribute> + + <attribute name="useBodyEncodingForURI" required="false"> + <p>This specifies if the encoding specified in contentType should be used + for URI query parameters, instead of using the URIEncoding. This + setting is present for compatibility with Tomcat 4.1.27 and earlier. + The default value is <code>false</code>. + </p> + </attribute> + </attributes> </subsection>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]