aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* My own patch to fix #56328David North2015-06-125-12/+125
| | | | | | | | Add tests for initial patch applied by Nick in r1582892 Fix and test AreaReference#isWholeColumnReference to take account of the prevailing spreadsheet version. Fixing all users of this is a big undertaking, so for now I've left a fallback on the original behaviour for some cases. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1685101 13f79535-47bb-0310-9956-ffa450edef68
* Add my PGP key to the list.David North2015-06-031-0/+290
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1683317 13f79535-47bb-0310-9956-ffa450edef68
* Use a different arbitrary value for the ID of the comment shape type. This ↵David North2015-06-032-3/+4
| | | | | | | | appears to prevent Excel >= 2010 from turning POI-written comments into the wrong shape (giant curved arrow). Fixes https://bz.apache.org/bugzilla/show_bug.cgi?id=55410 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1683315 13f79535-47bb-0310-9956-ffa450edef68
* Bug 53109: Correctly handle unicode strings in NameCommentRecordDominik Stadler2015-06-014-10/+46
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682999 13f79535-47bb-0310-9956-ffa450edef68
* Patch from René Scheibe from bug #57512 - Fix potential NPE in DateUtil for ↵Nick Burch2015-05-312-7/+99
| | | | | | invalid dates git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682796 13f79535-47bb-0310-9956-ffa450edef68
* Add missing license headerDominik Stadler2015-05-311-0/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682794 13f79535-47bb-0310-9956-ffa450edef68
* Bug 57904: Add full source build from dist-packages to CI buildsDominik Stadler2015-05-311-0/+45
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682786 13f79535-47bb-0310-9956-ffa450edef68
* List more targets in help, make jar-src work standaloneDominik Stadler2015-05-311-1/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682785 13f79535-47bb-0310-9956-ffa450edef68
* Set version to 3.13-beta1Dominik Stadler2015-05-311-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682784 13f79535-47bb-0310-9956-ffa450edef68
* POI-57975: clean up white spaces and other style issues in XWPFTim Allison2015-05-2984-6306/+6485
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682473 13f79535-47bb-0310-9956-ffa450edef68
* POI-57889 -- actually trigger inclusion of CTNumLvl with document ↵Tim Allison2015-05-282-15/+9
| | | | | | contributed by Moritz Dorka on TIKA-1315 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682310 13f79535-47bb-0310-9956-ffa450edef68
* Note on why ooxml needs scratchpad, for one part onlyNick Burch2015-05-281-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682212 13f79535-47bb-0310-9956-ffa450edef68
* Correct packageNick Burch2015-05-282-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682210 13f79535-47bb-0310-9956-ffa450edef68
* Pull out the parts of TextPainter needed by XSLF from HSLF to common-SL in ↵Nick Burch2015-05-284-41/+65
| | | | | | core #57963 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682209 13f79535-47bb-0310-9956-ffa450edef68
* #57963 Move the WP and SL interface definitions to core from scratchpad, so ↵Nick Burch2015-05-2824-0/+0
| | | | | | the OOXML classes can work without scratchpad git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682204 13f79535-47bb-0310-9956-ffa450edef68
* Fix inconsistent indentsNick Burch2015-05-281-15/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682201 13f79535-47bb-0310-9956-ffa450edef68
* #57951 Use BigDecimal in some cases in DataFormatter.formatRawCellContents, ↵Nick Burch2015-05-271-3/+20
| | | | | | to avoid rounding problems on JDK8. Patch from Robert Kish git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682083 13f79535-47bb-0310-9956-ffa450edef68
* Fix inconsistent indentsNick Burch2015-05-271-17/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1682081 13f79535-47bb-0310-9956-ffa450edef68
* Add WorkbookFactory.create() with a flag to allow to open files read-only, ↵Dominik Stadler2015-05-262-40/+129
| | | | | | | | keep the current way of opening read/write as default to not break existing code. Also adjust Javadoc somewhat. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681823 13f79535-47bb-0310-9956-ffa450edef68
* Make POIXMLDocument implement Closeable as it holds an OCPPackage with open ↵Dominik Stadler2015-05-263-18/+12
| | | | | | | | resources and thus should be closed after usage. Until now only XSSFWorkbook did this, but it makes sense for all derived classes. Also make close() in POIXMLDocument public to not have to re-implement it in all sub-classes. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681822 13f79535-47bb-0310-9956-ffa450edef68
* Add ignore - file has no content streamsNick Burch2015-05-261-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681809 13f79535-47bb-0310-9956-ffa450edef68
* #56791 Make NPOIFS the default when POIFSFileSystem is requestedNick Burch2015-05-263-13/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681804 13f79535-47bb-0310-9956-ffa450edef68
* Force OPOIFS test to explicitly create OPOIFS instanceNick Burch2015-05-261-9/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681803 13f79535-47bb-0310-9956-ffa450edef68
* Force OPOIFS test to explicitly create OPOIFS instanceNick Burch2015-05-261-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681802 13f79535-47bb-0310-9956-ffa450edef68
* Remove a long-deprecated OPOIFS related methodNick Burch2015-05-261-10/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681801 13f79535-47bb-0310-9956-ffa450edef68
* Fix warningsNick Burch2015-05-261-2/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681763 13f79535-47bb-0310-9956-ffa450edef68
* Fix testing for NPOIFS zero-length stream writingNick Burch2015-05-263-8/+35
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681762 13f79535-47bb-0310-9956-ffa450edef68
* Fix NPOIFS to handle dodgy excel-95 file from bug #46904Nick Burch2015-05-262-4/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681756 13f79535-47bb-0310-9956-ffa450edef68
* More 0 byte stream testsNick Burch2015-05-264-5/+40
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681754 13f79535-47bb-0310-9956-ffa450edef68
* Add verification unit test for bug 47169Dominik Stadler2015-05-201-1/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1680657 13f79535-47bb-0310-9956-ffa450edef68
* Apply fix reported in bug 47661 and add unit testsDominik Stadler2015-05-202-4/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1680642 13f79535-47bb-0310-9956-ffa450edef68
* Prevent problems reported in Bug 56574 by ensuring that Cells are properly ↵Dominik Stadler2015-05-194-3/+160
| | | | | | removed when a row is overwritten by calling createRow() with it's rownum. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1680280 13f79535-47bb-0310-9956-ffa450edef68
* Update to JaCoCo 0.7.4 and fix location of coverage data in build-outputDominik Stadler2015-05-191-3/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1680228 13f79535-47bb-0310-9956-ffa450edef68
* Let Eclipse add some more settings to the project filesDominik Stadler2015-05-191-0/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1680216 13f79535-47bb-0310-9956-ffa450edef68
* Move location where document is held and adjust constructors and ↵Dominik Stadler2015-05-175-24/+18
| | | | | | class-hierarchy accordingly git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1679903 13f79535-47bb-0310-9956-ffa450edef68
* Adjust error message to have the same error across different types of ↵Dominik Stadler2015-05-123-5/+12
| | | | | | Workbook and revert test to check on common error message again git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678874 13f79535-47bb-0310-9956-ffa450edef68
* Fix unit test which asserts on actual error messageDominik Stadler2015-05-121-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678861 13f79535-47bb-0310-9956-ffa450edef68
* Update documentation for POI 3.12Andreas Beeker2015-05-111-0/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678838 13f79535-47bb-0310-9956-ffa450edef68
* Adjust intendationDominik Stadler2015-05-111-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678814 13f79535-47bb-0310-9956-ffa450edef68
* Provide better exception if we would access out of bounds in arraycopy for ↵Dominik Stadler2015-05-111-1/+8
| | | | | | Escher properties git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678812 13f79535-47bb-0310-9956-ffa450edef68
* Avoid possible NPE found via CommonCrawl filesDominik Stadler2015-05-114-13/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678811 13f79535-47bb-0310-9956-ffa450edef68
* Add checks for invalid row number in RowRecord to find corrupted files earlierDominik Stadler2015-05-111-0/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678810 13f79535-47bb-0310-9956-ffa450edef68
* #56791 More updates from OPOIFS to NPOIFSNick Burch2015-05-111-17/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678802 13f79535-47bb-0310-9956-ffa450edef68
* #56791 More updates from OPOIFS to NPOIFSNick Burch2015-05-1134-150/+220
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678801 13f79535-47bb-0310-9956-ffa450edef68
* Leave POIFSFileSystem as a lightweight shim around OPOIFSFileSystem pending ↵Nick Burch2015-05-112-496/+10
| | | | | | the final changeover for #56791 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678790 13f79535-47bb-0310-9956-ffa450edef68
* #56791 More updates from OPOIFS to NPOIFSNick Burch2015-05-1115-92/+80
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678787 13f79535-47bb-0310-9956-ffa450edef68
* #56791 More updates from OPOIFS to NPOIFSNick Burch2015-05-1110-64/+89
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678783 13f79535-47bb-0310-9956-ffa450edef68
* Add a deep re-write NPOIFS testNick Burch2015-05-111-3/+33
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678781 13f79535-47bb-0310-9956-ffa450edef68
* Correct zero byte entry support in NPOIFSNick Burch2015-05-112-3/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678778 13f79535-47bb-0310-9956-ffa450edef68
* Disabled NPOIFS unit test - problem with 0 length entries discovered working ↵Nick Burch2015-05-111-0/+61
| | | | | | on #56791 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678769 13f79535-47bb-0310-9956-ffa450edef68