Author: markt Date: Sat Mar 7 16:15:26 2009 New Revision: 751288 URL: http://svn.apache.org/viewvc?rev=751288&view=rev Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=46807 Correct docs for configuration of tag pooling
Modified: tomcat/tc6.0.x/trunk/ (props changed) tomcat/tc6.0.x/trunk/conf/web.xml tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml tomcat/tc6.0.x/trunk/webapps/docs/jasper-howto.xml Propchange: tomcat/tc6.0.x/trunk/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Sat Mar 7 16:15:26 2009 @@ -1 +1 @@ -/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,673796,673820,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719602,719626,719628,720046,720069,721040,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,747834,747863,748344,750258,750291,750921 +/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,673796,673820,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719602,719626,719628,720046,720069,721040,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,747834,747863,748344,750258,750291,750921,751286-751287 Modified: tomcat/tc6.0.x/trunk/conf/web.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/conf/web.xml?rev=751288&r1=751287&r2=751288&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/conf/web.xml (original) +++ tomcat/tc6.0.x/trunk/conf/web.xml Sat Mar 7 16:15:26 2009 @@ -180,7 +180,9 @@ <!-- False if suppressSmap is true --> <!-- --> <!-- enablePooling Determines whether tag handler pooling is --> - <!-- enabled [true] --> + <!-- enabled. This is a compilation option. It will --> + <!-- not alter the behaviour of JSPs that have --> + <!-- already been compiled. [true] --> <!-- --> <!-- engineOptionsClass Allows specifying the Options class used to --> <!-- configure Jasper. If not present, the default --> Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?rev=751288&r1=751287&r2=751288&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Sat Mar 7 16:15:26 2009 @@ -32,6 +32,15 @@ </properties> <body> +<section name="Tomcat 6.0.20 (remm)"> + <subsection name="Webapps"> + <changelog> + <fix> + <bug>46807</bug>: Correct docs for configuration of tag pooling. (markt) + </fix> + </changelog> + </subsection> +</section> <section name="Tomcat 6.0.19 (remm)"> <subsection name="Catalina"> <changelog> Modified: tomcat/tc6.0.x/trunk/webapps/docs/jasper-howto.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/jasper-howto.xml?rev=751288&r1=751287&r2=751288&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/webapps/docs/jasper-howto.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/jasper-howto.xml Sat Mar 7 16:15:26 2009 @@ -126,7 +126,9 @@ <code>false</code>. <code>false</code> if suppressSmap is true.</li> <li><strong>enablePooling</strong> - Determines whether tag handler pooling is -enabled. <code>true</code> or <code>false</code>, default <code>true</code>. +enabled. This is a compilation option. It will not alter the behaviour of JSPs +that have already been compiled. <code>true</code> or <code>false</code>, +default <code>true</code>. </li> <li><strong>engineOptionsClass</strong> - Allows specifying the Options class @@ -337,7 +339,7 @@ <ul> <li> When you switch to another Tomcat release, then regenerate and recompile your jsp's with the new Tomcat version.</li> -<li>Use java system property at server runtime to disable tag pooling +<li>Use java system property at server runtime to disable PageContext pooling <code>org.apache.jasper.runtime.JspFactoryImpl.USE_POOL=false</code>. and limit the buffering with <code>org.apache.jasper.runtime.BodyContentImpl.LIMIT_BUFFER=true</code>. Note --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org