Author: markt Date: Mon Sep 8 13:37:01 2014 New Revision: 1623392 URL: http://svn.apache.org/r1623392 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=43001 Enable the JspC Ant taks to set the JspC option mappedFile
Modified: tomcat/trunk/java/org/apache/jasper/JspC.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/jasper/JspC.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/JspC.java?rev=1623392&r1=1623391&r2=1623392&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/jasper/JspC.java (original) +++ tomcat/trunk/java/org/apache/jasper/JspC.java Mon Sep 8 13:37:01 2014 @@ -505,6 +505,10 @@ public class JspC extends Task implement return mappedFile; } + public void setMappedFile(boolean b) { + mappedFile = b; + } + /** * Sets the option to include debug information in compiled class. */ Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1623392&r1=1623391&r2=1623392&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Mon Sep 8 13:37:01 2014 @@ -126,6 +126,10 @@ <subsection name="Jasper"> <changelog> <fix> + <bug>43001</bug>: Enable the JspC Ant taks to set the JspC option + <code>mappedFile</code>. (markt) + </fix> + <fix> Ensure that the implementation of <code>javax.servlet.jsp.PageContext.include(String)</code> and --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org