luehe       2004/05/12 10:45:57

  Modified:    jasper2/src/share/org/apache/jasper JspC.java
  Log:
  Fixed additional requirements from Bugzilla 28604:
  
  If compiling from JspC, the absolute (instead of context-relative)
  path of the JSP that caused the error is now printed (when compiling
  from JspServlet, we continue to print only the context-relative path
  of the JSP)
  
  Revision  Changes    Path
  1.73      +1 -1      
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/JspC.java
  
  Index: JspC.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/JspC.java,v
  retrieving revision 1.72
  retrieving revision 1.73
  diff -u -r1.72 -r1.73
  --- JspC.java 27 Apr 2004 21:40:21 -0000      1.72
  +++ JspC.java 12 May 2004 17:45:57 -0000      1.73
  @@ -724,7 +724,7 @@
               // Otherwise only generate .java, if .jsp file is newer than
               // the .java file
               if( clc.isOutDated(compile) ) {
  -                clc.compile(compile);
  +                clc.compile(compile, true);
               }
   
               // Generate mapping
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to