----- Original Message ----- From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, May 12, 2005 6:01 AM
Subject: cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml



remm        2005/05/12 06:01:05

 Modified:    jasper2/src/share/org/apache/jasper/servlet
                       JspCServletContext.java
              webapps/docs changelog.xml
 Log:
 - 34465: jspc without web.xml.
 - Submitted by Yoichi Hirose.
 -        return (new URL(myResourceBaseURL, path.substring(1)));
 +        URL url = new URL(myResourceBaseURL, path.substring(1));
 +        if ("file".equals(url.getProtocol())) {
 +            if (!(new File(url.getFile())).exists()) {
 +                return null;
 +            }
 +        }

A huge -1 to this. I can't believe that a Windows user would even think commit junk like this. ;-)




This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


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

Reply via email to