You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2014/11/21 02:06:39 UTC

svn commit: r1640846 - /poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java

Author: kiwiwings
Date: Fri Nov 21 01:06:39 2014
New Revision: 1640846

URL: http://svn.apache.org/r1640846
Log:
the subdir element needs to be included otherwise certain xmlbean operations (e.g. selectPath) can't find the corresponding xmlbeans classes

Modified:
    poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java

Modified: poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java?rev=1640846&r1=1640845&r2=1640846&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java Fri Nov 21 01:06:39 2014
@@ -32,6 +32,7 @@ import java.util.Map;
 import java.util.Vector;
 import java.util.jar.JarEntry;
 import java.util.jar.JarFile;
+import java.util.regex.Pattern;
 
 import junit.framework.TestCase;
 
@@ -133,10 +134,11 @@ public final class OOXMLLite {
         //finally copy the compiled .xsb files
         System.out.println("Copying .xsb resources");
         JarFile jar = new  JarFile(_ooxmlJar);
+        Pattern p = Pattern.compile("schemaorg_apache_xmlbeans/(system|element)/.*\\.xsb");
         try {
             for(Enumeration<JarEntry> e = jar.entries(); e.hasMoreElements(); ){
                 JarEntry je = e.nextElement();
-                if(je.getName().matches("schemaorg_apache_xmlbeans/system/\\w+/\\w+\\.xsb")) {
+                if(p.matcher(je.getName()).matches()) {
                      File destFile = new File(_destDest, je.getName());
                      copyFile(jar.getInputStream(je), destFile);
                 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org