You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2003/12/03 20:50:15 UTC

DO NOT REPLY [Bug 25178] New: - JspC does not always handle conversion of page import tag correctly

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25178>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25178

JspC does not always handle conversion of page import tag correctly

           Summary: JspC does not always handle conversion of page import
                    tag correctly
           Product: Tomcat 4
           Version: Unknown
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Jasper 2
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: ssotangkur@epiphany.com


Given a JSP page with a tag that looks like this:
<%@ page import="
	com.a.b.c.*,
	com.a.b.c.D,
	java.util.*,
	java.lang.*;
"%>

The generated java page ends up with this import statement

import 
	com.a.b.c.*;
import 
	com.a.b.c.D;
import 
	java.util.*;
import 
	java.lang.*;
;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import org.apache.jasper.runtime.*;

It looks like the carriage-return line feeds get passed through.

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