This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 368 - Support building L3 DOMTS from working group draft
Summary: Support building L3 DOMTS from working group draft
Status: RESOLVED FIXED
Alias: None
Product: DOM TS
Classification: Unclassified
Component: DOM Level 3 (show other bugs)
Version: unspecified
Hardware: Other other
: P2 normal
Target Milestone: ---
Assignee: Curt Arnold
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-10-24 12:03 UTC by Curt Arnold
Modified: 2003-10-24 17:10 UTC (History)
0 users

See Also:


Attachments
patch (11.35 KB, patch)
2003-10-24 13:07 UTC, Curt Arnold
Details

Description Curt Arnold 2003-10-24 12:03:41 UTC
Any Ant target that depends on dom3-interfaces can be built from the Working
Group draft zip file http://www.w3.org/DOM/Group/drafts/level-3-src.zip if a
user name and password are supplied.  For example:

ant -Dmember=mymembername -Dpassword=mypassword dom3-core-jar

If -Dmember is not specified, the latest public draft will be used.

Note: The level-3-src.zip appears to trigger a bug
(http://developer.java.sun.com/developer/bugParade/bugs/4635869.html) in Java's
ZipInputStream that has been fixed in JDK 1.4.2.  To avoid this problem, the zip
file is extracted using exec'ing UnZip by Info-Zip which is required to be on
the path.  If you are running on JDK 1.4.2 and do not have unzip, you can
uncomment out unzip task within the dom3-init-member target (line 1850) in
build.xml and comment out the following exec task.
Comment 1 Curt Arnold 2003-10-24 13:07:55 UTC
Created attachment 50 [details]
patch