You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2014/09/11 12:17:52 UTC

svn commit: r1624249 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/jasper/JspC.java webapps/docs/changelog.xml

Author: kkolinko
Date: Thu Sep 11 10:17:51 2014
New Revision: 1624249

URL: http://svn.apache.org/r1624249
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/tc7.0.x/trunk/   (props changed)
    tomcat/tc7.0.x/trunk/java/org/apache/jasper/JspC.java
    tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

Propchange: tomcat/tc7.0.x/trunk/
------------------------------------------------------------------------------
  Merged /tomcat/trunk:r1623392,1624247

Modified: tomcat/tc7.0.x/trunk/java/org/apache/jasper/JspC.java
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/jasper/JspC.java?rev=1624249&r1=1624248&r2=1624249&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/java/org/apache/jasper/JspC.java (original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/jasper/JspC.java Thu Sep 11 10:17:51 2014
@@ -499,6 +499,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/tc7.0.x/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1624249&r1=1624248&r2=1624249&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Thu Sep 11 10:17:51 2014
@@ -174,6 +174,10 @@
   <subsection name="Jasper">
     <changelog>
       <fix>
+        <bug>43001</bug>: Enable the JspC Ant task to set the JspC option
+        <code>mappedFile</code>. (kkolinko)
+      </fix>
+      <fix>
         <bug>56797</bug>: When matching a method in an EL expression, do not
         treat bridge methods as duplicates of the method they bridge to. In this
         case always call the target of the bridge method. (markt)



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org