1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Description: Patch to use the local OOXML schema instead of fetching the files from the ECMA site at build time
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/build.xml
+++ b/build.xml
@@ -474,7 +474,7 @@
</or>
</condition>
</target>
- <target name="compile-ooxml-xsds" unless="ooxml-compiled-xsds.present"
+ <target name="compile-ooxml-xsds"
depends="check-jars,fetch-jars,check-compiled-ooxml-xsds"
description="Unpacks the OOXML xsd files, and compiles them into XmlBeans">
<property name="ooxml.xsds.tmp.dir" location="build/ooxml-xsds"/>
@@ -491,7 +491,6 @@
<equals arg1="${sun.arch.data.model}" arg2="64" />
</condition>
- <unzip src="${ooxml.xsds.izip}" dest="${ooxml.xsds.tmp.dir}"/>
<!--
schema="build/ooxml-xsds/"
schema="build/ooxml-xsds/sml-workbook.xsd"
@@ -516,7 +515,7 @@
/>
</target>
- <target name="compile-ooxml-encryption-xsds" unless="ooxml-compiled-encryption-xsds.present"
+ <target name="compile-ooxml-encryption-xsds"
depends="check-jars,fetch-jars,check-compiled-ooxml-xsds"
description="Compiles the OOXML encryption xsd files into XmlBeans">
<taskdef name="xmlbean"
|