You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2007/11/29 23:56:04 UTC

svn commit: r599616 - in /tomcat: container/tc5.5.x/webapps/docs/changelog.xml current/tc5.5.x/STATUS.txt jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java

Author: markt
Date: Thu Nov 29 14:56:01 2007
New Revision: 599616

URL: http://svn.apache.org/viewvc?rev=599616&view=rev
Log:
Port fix for bug 43702. Reduce length of inner class names.

Modified:
    tomcat/container/tc5.5.x/webapps/docs/changelog.xml
    tomcat/current/tc5.5.x/STATUS.txt
    tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java

Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?rev=599616&r1=599615&r2=599616&view=diff
==============================================================================
--- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original)
+++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Thu Nov 29 14:56:01 2007
@@ -65,6 +65,14 @@
       </fix>     
     </changelog>
   </subsection>
+  <subsection name="Jasper" >
+    <changelog>
+      <fix>
+        <bug>43702</bug>: Reduce length of unnecessarily long class names for
+        the inner helper class when using simple tags. (markt)
+      </fix>
+    </changelog>
+  </subsection>
   <subsection name="Cluster">
     <changelog>
       <fix>

Modified: tomcat/current/tc5.5.x/STATUS.txt
URL: http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS.txt?rev=599616&r1=599615&r2=599616&view=diff
==============================================================================
--- tomcat/current/tc5.5.x/STATUS.txt (original)
+++ tomcat/current/tc5.5.x/STATUS.txt Thu Nov 29 14:56:01 2007
@@ -108,12 +108,6 @@
   +1: markt
   -1: 
 
-* Fix http://issues.apache.org/bugzilla/show_bug.cgi?id=43702
-  Inner class files have unnecessarily long names
-  http://svn.apache.org/viewvc?rev=595805&view=rev
-  +1: markt, remm, fhanik, pero
-  -1:
-
 * Fix http://issues.apache.org/bugzilla/show_bug.cgi?id=43757
   Use SMAP info rather than string matching to ID line number in JSP
   http://svn.apache.org/viewvc?rev=599605&view=rev

Modified: tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java
URL: http://svn.apache.org/viewvc/tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java?rev=599616&r1=599615&r2=599616&view=diff
==============================================================================
--- tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java (original)
+++ tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/Generator.java Thu Nov 29 14:56:01 2007
@@ -3253,8 +3253,7 @@
         charArrayBuffer = null;
         err = compiler.getErrorDispatcher();
         ctxt = compiler.getCompilationContext();
-        fragmentHelperClass =
-            new FragmentHelperClass(ctxt.getServletClassName() + "Helper");
+        fragmentHelperClass = new FragmentHelperClass("Helper");
         pageInfo = compiler.getPageInfo();
 
         /*



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