aboutsummaryrefslogtreecommitdiffstats
path: root/src/ooxml/java/org/apache/poi/openxml4j
Commit message (Collapse)AuthorAgeFilesLines
* Adjust some missing/incorrec throws and related javadocDominik Stadler2016-12-111-8/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773662 13f79535-47bb-0310-9956-ffa450edef68
* Move test to correct package and add some more checksDominik Stadler2016-12-011-0/+66
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1772148 13f79535-47bb-0310-9956-ffa450edef68
* Bug 59273 - Unable to create pptx file by potx file using Apache POIAndreas Beeker2016-11-101-0/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1769220 13f79535-47bb-0310-9956-ffa450edef68
* 60315 -- allow 'yyyy-MM-dd' as a valid date format in metadata in OPCParserTim Allison2016-10-281-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1767026 13f79535-47bb-0310-9956-ffa450edef68
* bug 60288: remove defensive copy for internal relationships. Patch from Tim ↵Javen O'Neal2016-10-212-7/+4
| | | | | | Helmstedt. This closes #38. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1765935 13f79535-47bb-0310-9956-ffa450edef68
* bug 60153: patch from PJ Fanning to demonstrate that SXSSFWorkbook ↵Javen O'Neal2016-10-091-1/+3
| | | | | | SheetDataWriter can write encrypted temporary files to disk and the workbook can be AES encrypted when written to disk for a fully secure disk environment git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1763969 13f79535-47bb-0310-9956-ffa450edef68
* Use IOUtils.closeQuietly() in more placesDominik Stadler2016-10-051-26/+18
| | | | | | | Avoid two possible file-handle leaks when opening files fails with an exception Make tests close resources properly to not spam the output when running with file-leak-detector git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1763485 13f79535-47bb-0310-9956-ffa450edef68
* bug 60128: remove forbidden-api Exception.printStackTrace()Javen O'Neal2016-09-141-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1760744 13f79535-47bb-0310-9956-ffa450edef68
* javadocsJaven O'Neal2016-09-141-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1760733 13f79535-47bb-0310-9956-ffa450edef68
* bug 60128: make code Java 6 compatible. Throwable#addSuppressed not ↵Javen O'Neal2016-09-141-2/+2
| | | | | | available until Java 7 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1760732 13f79535-47bb-0310-9956-ffa450edef68
* make logger finalJaven O'Neal2016-09-141-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1760711 13f79535-47bb-0310-9956-ffa450edef68
* bug 60128: close opened resources to avoid leaks; add exception as cause ↵Javen O'Neal2016-09-141-25/+29
| | | | | | where available for more context for raised exceptions. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1760710 13f79535-47bb-0310-9956-ffa450edef68
* give more helpful exceptions rather than returning null when zip file cannot ↵Javen O'Neal2016-09-141-2/+8
| | | | | | be opened git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1760708 13f79535-47bb-0310-9956-ffa450edef68
* bug 60128: close open file descriptors when exceptions are thrown from ↵Javen O'Neal2016-09-143-39/+100
| | | | | | OPCPackage.open git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1760702 13f79535-47bb-0310-9956-ffa450edef68
* Unit test for bug #60128, showing that calling close on a broken package ↵Nick Burch2016-09-143-0/+11
| | | | | | cleans up file or stream git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1760693 13f79535-47bb-0310-9956-ffa450edef68
* IDE warnings and fix a few places where we do not close resources in testsDominik Stadler2016-07-312-10/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1754673 13f79535-47bb-0310-9956-ffa450edef68
* #59841 - OOXML: enable custom zip streams via OPCPackage.open(ZipEntrySource)Andreas Beeker2016-07-171-0/+37
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753003 13f79535-47bb-0310-9956-ffa450edef68
* add crude unit test for ZipPackagePropertiesMarshallerJaven O'Neal2016-07-081-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751872 13f79535-47bb-0310-9956-ffa450edef68
* #59780 OPC support for a wider range of timezone'd created and modified date ↵Nick Burch2016-07-041-2/+5
| | | | | | formats in package properties git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751379 13f79535-47bb-0310-9956-ffa450edef68
* bug 59773: move loop invariants outside of loop or change for loops to ↵Javen O'Neal2016-07-022-4/+6
| | | | | | for-each loops git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751086 13f79535-47bb-0310-9956-ffa450edef68
* bug 59776: don't swallow cause of exception in ZipPackagePropertiesMashaller ↵Javen O'Neal2016-07-011-1/+1
| | | | | | exception handling git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1750893 13f79535-47bb-0310-9956-ffa450edef68
* bug 59748: replace Hashtable with HashMap; contributed by Axel HowindJaven O'Neal2016-06-242-17/+24
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1750168 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixAndreas Beeker2016-06-221-17/+29
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749795 13f79535-47bb-0310-9956-ffa450edef68
* javadoc fixes (jdk8)Andreas Beeker2016-06-221-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749794 13f79535-47bb-0310-9956-ffa450edef68
* Fix inconsistent whitespace and indentsNick Burch2016-06-211-64/+64
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749530 13f79535-47bb-0310-9956-ffa450edef68
* #59717 POIXMLProperties helper methods for reading and changing OOXML ↵Nick Burch2016-06-211-15/+25
| | | | | | document thumbnails git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749528 13f79535-47bb-0310-9956-ffa450edef68
* bug 59170: remove deprecated ↵Javen O'Neal2016-06-161-6/+0
| | | | | | o.a.p.openxml4j.opc.internal.CnotentType#getParameters git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748778 13f79535-47bb-0310-9956-ffa450edef68
* bug 59170: remove deprecated o.a.p.openxml4j.opc.PackageJaven O'Neal2016-06-152-99/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748494 13f79535-47bb-0310-9956-ffa450edef68
* findbugs fixesAndreas Beeker2016-06-121-1/+1
| | | | | | changed UDFFinder to abstract class and moved DEFAULT constant to factory method git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1747942 13f79535-47bb-0310-9956-ffa450edef68
* Update error message to better indicate that we need a sample-file hereDominik Stadler2016-05-291-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1746061 13f79535-47bb-0310-9956-ffa450edef68
* add @NotImplemented annotation to methods that are not implementedJaven O'Neal2016-04-102-0/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1738469 13f79535-47bb-0310-9956-ffa450edef68
* close fileinputstream on second exception in ZipPackageTim Allison2016-04-081-2/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1738251 13f79535-47bb-0310-9956-ffa450edef68
* Code cleanup via IntelliJ: Remove unnecessary semicolonDominik Stadler2016-04-061-2/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1738031 13f79535-47bb-0310-9956-ffa450edef68
* Fix two more places where wrong/invalid files can lead to file-handle leaks ↵Dominik Stadler2016-04-022-2/+6
| | | | | | currently git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1737489 13f79535-47bb-0310-9956-ffa450edef68
* Fix some cases where file handles are not closed in OldExcelExtractorDominik Stadler2016-04-021-5/+21
| | | | | | Close resources in some more tests to make the file-leak report clean again git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1737487 13f79535-47bb-0310-9956-ffa450edef68
* Fix some compiler warnings, improve error message, cover some more codeDominik Stadler2016-03-291-11/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1737013 13f79535-47bb-0310-9956-ffa450edef68
* some zips can't be opened via ZipFile in JDK6, as the central directoryAndreas Beeker2016-03-282-24/+27
| | | | | | | | contains either non-latin entries or the compression type can't be handled the workaround is to iterate over the stream and not the directory git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1736933 13f79535-47bb-0310-9956-ffa450edef68
* make OPCPackage logger finalJaven O'Neal2016-03-271-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1736721 13f79535-47bb-0310-9956-ffa450edef68
* forbidden-apis-fixAndreas Beeker2016-03-161-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735316 13f79535-47bb-0310-9956-ffa450edef68
* 59183 - handle timezones (even with colons) in date parsing metadata in ↵Tim Allison2016-03-161-14/+52
| | | | | | ooxml opc git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735270 13f79535-47bb-0310-9956-ffa450edef68
* Before opening an OOXML file, check the first few bytes, and give helpful ↵Nick Burch2016-03-152-1/+89
| | | | | | exceptions for common mistakes git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735069 13f79535-47bb-0310-9956-ffa450edef68
* Push all the zip opening logic into ZipHelperNick Burch2016-03-152-13/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735064 13f79535-47bb-0310-9956-ffa450edef68
* Fix inconsistent indentsNick Burch2016-03-151-142/+141
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735063 13f79535-47bb-0310-9956-ffa450edef68
* Fix inconsistent indentsNick Burch2016-03-151-244/+244
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735061 13f79535-47bb-0310-9956-ffa450edef68
* Start to give more helpful Exceptions from OPCPackage when non-OOXML files ↵Nick Burch2016-03-156-4/+105
| | | | | | are passed to it git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1735060 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixesAndreas Beeker2016-03-111-3/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1734641 13f79535-47bb-0310-9956-ffa450edef68
* Bug 57914: Provide a better error message for OOXML strict format which we ↵Dominik Stadler2016-02-271-2/+2
| | | | | | do not support yet. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1732619 13f79535-47bb-0310-9956-ffa450edef68
* No need to wrap OpenXML4JRuntimeException in another instance of itself and ↵Dominik Stadler2016-02-151-10/+9
| | | | | | fix some compilation/javadoc warnings git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1730482 13f79535-47bb-0310-9956-ffa450edef68
* Eclipse warnings, helper unit-test, improve information provided in ↵Dominik Stadler2016-01-131-4/+4
| | | | | | Exceptions, do not swallow inner stacktraces, ... git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1724486 13f79535-47bb-0310-9956-ffa450edef68
* #54916 - POI does not always read all the slides in pptx filesAndreas Beeker2016-01-101-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1723966 13f79535-47bb-0310-9956-ffa450edef68