summaryrefslogtreecommitdiffstats
path: root/src/java/org/apache
Commit message (Collapse)AuthorAgeFilesLines
* Add test for FileMagicDominik Stadler2018-11-258-23/+34
| | | | | | | | JavaDoc warning fixes Remove some IDE warnings Reformat code of sample application git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1847437 13f79535-47bb-0310-9956-ffa450edef68
* #62951 - FileMagic not correctly identifiedAndreas Beeker2018-11-251-11/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1847429 13f79535-47bb-0310-9956-ffa450edef68
* #62949 - SlideShow rendering - keyframe fractions must be increasingAndreas Beeker2018-11-252-82/+70
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1847428 13f79535-47bb-0310-9956-ffa450edef68
* fixed escaping of sheet names. Thanks to gallonfizik. This closes #134PJ Fanning2018-11-254-25/+88
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1847418 13f79535-47bb-0310-9956-ffa450edef68
* Remove commented out System.out calls / Move DummyGraphics2d to testcase ↵Andreas Beeker2018-11-197-858/+14
| | | | | | area, as it's not used by production code git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1846946 13f79535-47bb-0310-9956-ffa450edef68
* [bug-62908] populate NamedColorsPJ Fanning2018-11-131-15/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1846520 13f79535-47bb-0310-9956-ffa450edef68
* Bug 62836: Implementation of Excel TREND functionYegor Kozlov2018-11-022-1/+378
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1845586 13f79535-47bb-0310-9956-ffa450edef68
* bug 62624 -- further cleanupTim Allison2018-11-011-29/+27
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1845511 13f79535-47bb-0310-9956-ffa450edef68
* Remove JavaDoc warningsDominik Stadler2018-11-015-18/+63
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1845435 13f79535-47bb-0310-9956-ffa450edef68
* IDE warnings, tried to reproduce Bug 58927, but could notDominik Stadler2018-11-011-9/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1845434 13f79535-47bb-0310-9956-ffa450edef68
* bug 62624 -- ensure streams are closed...thanks to LGTM, and PJ!Tim Allison2018-10-311-6/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1845300 13f79535-47bb-0310-9956-ffa450edef68
* bug 62624 -- fix loop identified as dodgy by FindBugs; add a other sanity ↵Tim Allison2018-10-312-26/+50
| | | | | | checks. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1845299 13f79535-47bb-0310-9956-ffa450edef68
* bug 62624 -- fix recursionTim Allison2018-10-301-14/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1845284 13f79535-47bb-0310-9956-ffa450edef68
* bug 62625 -- clean up importsTim Allison2018-10-301-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1845246 13f79535-47bb-0310-9956-ffa450edef68
* bug 62625 -- add special handling for REFERENCE_NAME record that may onlyTim Allison2018-10-301-4/+51
| | | | | | contain an ascii string, against the spec in VBAMacroReader git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1845238 13f79535-47bb-0310-9956-ffa450edef68
* bug 62624 -- fix npe by adding processing of module name mapping in ↵Tim Allison2018-10-291-16/+143
| | | | | | VBAMacroReader git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1845138 13f79535-47bb-0310-9956-ffa450edef68
* Adjust sample for creating comments to also create a .xlsx fileDominik Stadler2018-10-262-0/+27
| | | | | | Enhance workbook factory to allow to create new empty workbooks as well git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1844881 13f79535-47bb-0310-9956-ffa450edef68
* Typos and IDE warningsDominik Stadler2018-10-264-22/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1844879 13f79535-47bb-0310-9956-ffa450edef68
* #62834 FormulaEvaluator.evaluateInCell() throws ExceptionGreg Woolsey2018-10-192-3/+28
| | | | | | | | | | | | added cell type = formula check when looping through the shared formula range, to ignore any non-formula cells. Also refactored a bit to enable passing in the evaluation context, as getCellFormula() uses it behind the scenes when evaluating a shared formula cell (has to shift the formula references based on the master cell). Review of these changes is welcome, as always. Checked all other code referencing the "SHARED" enum, and didn't see anything else that dealt with formula cell values and thus would need to notice non-formula cells. Added unit test based on the failing file from Bugzilla. Test failed until the fixed code was in place. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1844295 13f79535-47bb-0310-9956-ffa450edef68
* Bug 62373: Support for FREQUENCY functionYegor Kozlov2018-10-182-1/+83
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1844238 13f79535-47bb-0310-9956-ffa450edef68
* #62831 Fix WorkbookFactory.create with a subclass of File, eg from JFileChooserNick Burch2018-10-171-0/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1844116 13f79535-47bb-0310-9956-ffa450edef68
* add stax entries to forbidden apis due to android issuesPJ Fanning2018-10-061-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1843009 13f79535-47bb-0310-9956-ffa450edef68
* change method to get XMLEventFactory due to issues seen on Android SDKPJ Fanning2018-10-031-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842683 13f79535-47bb-0310-9956-ffa450edef68
* lgtm issuesPJ Fanning2018-09-293-17/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842302 13f79535-47bb-0310-9956-ffa450edef68
* [bug-62738] make int cast a long cast in randbetweenPJ Fanning2018-09-191-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1841321 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixes - blockerAndreas Beeker2018-08-313-5/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839745 13f79535-47bb-0310-9956-ffa450edef68
* #62649 - Remove OPOIFS* / rename NPOIFS* to POIFS*Andreas Beeker2018-08-3158-4544/+1799
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839709 13f79535-47bb-0310-9956-ffa450edef68
* #62649 - Remove OPOIFSAndreas Beeker2018-08-2644-3222/+697
| | | | | | Fix HPSF UTF-8 encoding error with Bug52311.doc while refactoring CopyCompare/EntryUtils git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839201 13f79535-47bb-0310-9956-ffa450edef68
* Ensure that file handles are closed for encrypted filesDominik Stadler2018-08-262-1/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839197 13f79535-47bb-0310-9956-ffa450edef68
* Adjust test for JDK 9, 10 and 11Dominik Stadler2018-08-262-6/+3
| | | | | | fix some IDE/Javadoc warnings git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1839195 13f79535-47bb-0310-9956-ffa450edef68
* [bug-62639] make private constructor on DateFormatter publicPJ Fanning2018-08-201-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1838420 13f79535-47bb-0310-9956-ffa450edef68
* #61589 - Importing content does not copy hyperlink addressAndreas Beeker2018-08-122-19/+76
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1837909 13f79535-47bb-0310-9956-ffa450edef68
* bug 62608 -- avoid ioobe in VBAMacroReaderTim Allison2018-08-081-3/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1837664 13f79535-47bb-0310-9956-ffa450edef68
* [bug-62275] in vlooup function, treat optional 4th param as true if the ↵PJ Fanning2018-07-271-1/+6
| | | | | | value is not provided git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1836857 13f79535-47bb-0310-9956-ffa450edef68
* #62564 - replace Thread.currentThread().getContextClassLoader() with ↵Andreas Beeker2018-07-245-5/+5
| | | | | | getClass().getClassLoader() git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1836590 13f79535-47bb-0310-9956-ffa450edef68
* Adjust comments and IDE warnings, duplicate code reductionDominik Stadler2018-07-052-17/+15
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1835183 13f79535-47bb-0310-9956-ffa450edef68
* Add a test with a threaded TempFileCreationStrategy, remove duplicated constant.Dominik Stadler2018-07-051-3/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1835182 13f79535-47bb-0310-9956-ffa450edef68
* #62451 - Document last printed in the year 27321Andreas Beeker2018-06-171-45/+41
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1833668 13f79535-47bb-0310-9956-ffa450edef68
* use try with resourcesPJ Fanning2018-06-071-15/+15
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1833096 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixesAndreas Beeker2018-06-022-3/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832748 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixes andAndreas Beeker2018-06-021-35/+37
| | | | | | disable closing of outputstream in ZipPackage.saveImpl() - see https://stackoverflow.com/questions/50646538/stream-close-exception-occures git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832746 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixesAndreas Beeker2018-06-024-70/+78
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832735 13f79535-47bb-0310-9956-ffa450edef68
* #62355 - unsplit packages - 4 - open HPSFAndreas Beeker2018-05-2715-81/+63
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832361 13f79535-47bb-0310-9956-ffa450edef68
* #62355 - unsplit packages - 3 - only importsAndreas Beeker2018-05-275-6/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832360 13f79535-47bb-0310-9956-ffa450edef68
* #62355 - unsplit packages - 2 - modified classes (not only imports)Andreas Beeker2018-05-274-5/+59
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832359 13f79535-47bb-0310-9956-ffa450edef68
* #62355 - unsplit packages - 1 - moved classesAndreas Beeker2018-05-278-162/+2287
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832358 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixesAndreas Beeker2018-05-222-2/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832067 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixes - null dereferenceAndreas Beeker2018-05-217-65/+65
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1831992 13f79535-47bb-0310-9956-ffa450edef68
* #62051 - Two shapes have the same shapeId within the same slide.Andreas Beeker2018-05-201-0/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1831947 13f79535-47bb-0310-9956-ffa450edef68
* remove test codeAndreas Beeker2018-05-171-9/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1831754 13f79535-47bb-0310-9956-ffa450edef68