http://nagoya.apache.org/bugzilla/show_bug.cgi?id=625
*** shadow/625 Thu Feb 15 23:01:24 2001 --- shadow/625.tmp.8847 Thu Feb 15 23:01:24 2001 *************** *** 0 **** --- 1,38 ---- + +============================================================================+ + | Fail to handle the external entity... | + +----------------------------------------------------------------------------+ + | Bug #: 625 Product: Ant | + | Status: NEW Version: 1.3 Beta 2 | + | Resolution: Platform: All | + | Severity: Major OS/Version: All | + | Priority: Component: Core | + +----------------------------------------------------------------------------+ + | Assigned To: [EMAIL PROTECTED] | + | Reported By: [EMAIL PROTECTED] | + | CC list: Cc: | + +----------------------------------------------------------------------------+ + | URL: | + +============================================================================+ + | DESCRIPTION | + The project file readers does not handle external entity correctly. The + following build.xml is from Jakarta Log4J project. The current Ant 1.3 Beta 2 + can not handle this build.xml + + The file in question is + + src/main/org/apache/tools/ant/ProjectHelper.java + + + <!-- This file is intended for ANT, a Java based build tool. ANT is + availale from http://jakarta.apache.org/ant/index.html + --> + + <!DOCTYPE project [ + <!ENTITY depth "../../.."> + <!ENTITY package ""> + <!ENTITY build.inc SYSTEM "build.inc"> + ]> + + <project name="log4j" default="Usage" basedir="." > + &build.inc; + </project>
