aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* whitespaceJaven O'Neal2015-11-246-102/+102
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716051 13f79535-47bb-0310-9956-ffa450edef68
* bug 58642: deprecate Sheet.setZoom(numerator, denominator) and replace with ↵Javen O'Neal2015-11-246-1/+72
| | | | | | Sheet.setZoom(scale) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716048 13f79535-47bb-0310-9956-ffa450edef68
* bug 58642: remove deprecated functions in Spreadsheet Sheet interface and ↵Javen O'Neal2015-11-247-298/+54
| | | | | | implementing classes; add @Override annotations git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716046 13f79535-47bb-0310-9956-ffa450edef68
* rewrite ternary expression as simple Math.min call (yes, the ternary ↵Javen O'Neal2015-11-241-2/+3
| | | | | | expression as written is equivalent to min, not max, despite the variable being called max. I'll leave that fix up to the original author). git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716044 13f79535-47bb-0310-9956-ffa450edef68
* whitespaceJaven O'Neal2015-11-241-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716035 13f79535-47bb-0310-9956-ffa450edef68
* whitespaceJaven O'Neal2015-11-241-218/+203
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716034 13f79535-47bb-0310-9956-ffa450edef68
* FindBugs MALICIOUS_CODE, finalize method should have protected accessJaven O'Neal2015-11-241-1/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716006 13f79535-47bb-0310-9956-ffa450edef68
* FindBug warning: ICAST_IDIV_CAST_TO_DOUBLE: integral division result cast to ↵Javen O'Neal2015-11-241-3/+3
| | | | | | double git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716005 13f79535-47bb-0310-9956-ffa450edef68
* FindBug warning: EQ_SELF_USE_OBJECT: class defines equals(Region) and uses ↵Javen O'Neal2015-11-241-1/+8
| | | | | | Object.equals(Object) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716004 13f79535-47bb-0310-9956-ffa450edef68
* remove duplicate null check of srcStartRow (identified by FindBugs)Javen O'Neal2015-11-241-3/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716003 13f79535-47bb-0310-9956-ffa450edef68
* fix normal priority FindBugs warning: DMI_INVOKING_HASHCODE_ON_ARRAYJaven O'Neal2015-11-241-2/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715998 13f79535-47bb-0310-9956-ffa450edef68
* fix javadoc warnings from r1690486Javen O'Neal2015-11-232-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715996 13f79535-47bb-0310-9956-ffa450edef68
* fix javadoc warnings from r1715839 bug 58365Javen O'Neal2015-11-231-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715993 13f79535-47bb-0310-9956-ffa450edef68
* fix javadoc warnings from r1715839 bug 58365Javen O'Neal2015-11-234-6/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715987 13f79535-47bb-0310-9956-ffa450edef68
* fixed bad test case in BaseTestSheet.getCellCommentsJaven O'Neal2015-11-231-1/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715854 13f79535-47bb-0310-9956-ffa450edef68
* catch IOException and rethrow as RuntimeExceptionJaven O'Neal2015-11-232-9/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715850 13f79535-47bb-0310-9956-ffa450edef68
* bug 58365: patch from Hannes Erven: add method to efficiently get all cell ↵Javen O'Neal2015-11-2310-22/+204
| | | | | | comments on a Sheet and return a dictionary with the location of each comment as the key and the comment itself as the value. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715839 13f79535-47bb-0310-9956-ffa450edef68
* revert accidental change to .projectJaven O'Neal2015-11-231-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715824 13f79535-47bb-0310-9956-ffa450edef68
* prevent slideshow test-data files shapes.pptx and tables_test.pptx from ↵Javen O'Neal2015-11-237-26/+101
| | | | | | being modified when running "ant test"; close open resources git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715815 13f79535-47bb-0310-9956-ffa450edef68
* bug 58365: patch from Hannes Erven. Update XSSFSheetXMLHandler.java to use ↵Javen O'Neal2015-11-231-25/+12
| | | | | | CellAddress instead of CellReference/String git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715794 13f79535-47bb-0310-9956-ffa450edef68
* whitespaceJaven O'Neal2015-11-231-156/+156
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715787 13f79535-47bb-0310-9956-ffa450edef68
* bug 58365: patch from Hannes Erven. Update CommentsTable to use CellAddress ↵Javen O'Neal2015-11-233-52/+183
| | | | | | instead of String git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715784 13f79535-47bb-0310-9956-ffa450edef68
* convert junit3 to junit4Javen O'Neal2015-11-235-17/+43
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715752 13f79535-47bb-0310-9956-ffa450edef68
* bug 58637: contribution from Hannes Erven: add CellAddress class, distinct ↵Javen O'Neal2015-11-233-2/+279
| | | | | | from CellReference git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715743 13f79535-47bb-0310-9956-ffa450edef68
* raise ooxml schema/security versionAndreas Beeker2015-11-232-6/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715718 13f79535-47bb-0310-9956-ffa450edef68
* add missing marker filesAndreas Beeker2015-11-223-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715692 13f79535-47bb-0310-9956-ffa450edef68
* Use <file/> instead of <fileset/> for single files to ensure, they existUwe Schindler2015-11-221-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715627 13f79535-47bb-0310-9956-ffa450edef68
* fix unnecessary cast warningsAndreas Beeker2015-11-2229-86/+119
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715626 13f79535-47bb-0310-9956-ffa450edef68
* delete old schema-1.2 jarAndreas Beeker2015-11-211-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715556 13f79535-47bb-0310-9956-ffa450edef68
* #58617 - Add custom safe XmlBeans type loader / rename vendor specific ↵Andreas Beeker2015-11-2166-672/+791
| | | | | | schema packages git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715555 13f79535-47bb-0310-9956-ffa450edef68
* In preparation for table rendering, added table row heights and column ↵Andreas Beeker2015-11-2141-287/+459
| | | | | | | | widths to common sl. To have better results in rendering switch anchor from java.awt.Rectangle to Rectangle2D. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715540 13f79535-47bb-0310-9956-ffa450edef68
* #58630 - Signing failed after deletion of first sheetAndreas Beeker2015-11-203-2/+37
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715438 13f79535-47bb-0310-9956-ffa450edef68
* findbugs fixesAndreas Beeker2015-11-194-283/+320
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715087 13f79535-47bb-0310-9956-ffa450edef68
* #55955 - Filling an existing ppt table stopped working with 3.9Andreas Beeker2015-11-161-8/+67
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1714715 13f79535-47bb-0310-9956-ffa450edef68
* #54210 When saving PPT to PNG, some text is rendered backwardsAndreas Beeker2015-11-147-257/+376
| | | | | | | | #53189 Shapes drawn wrongly when ppt file converted to image fix line decoration (HSLF) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1714290 13f79535-47bb-0310-9956-ffa450edef68
* Fix typo in EscherPropertiesAndreas Beeker2015-11-141-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1714289 13f79535-47bb-0310-9956-ffa450edef68
* Add default XmlOptions to XMLBeans parsingAndreas Beeker2015-11-141-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1714288 13f79535-47bb-0310-9956-ffa450edef68
* Add security checkUwe Schindler2015-11-111-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713917 13f79535-47bb-0310-9956-ffa450edef68
* Fix remaining security manager problems. Forbiddenapis now passes.Uwe Schindler2015-11-118-69/+44
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713915 13f79535-47bb-0310-9956-ffa450edef68
* #58597: Fix tests to not do setAccessible(), add some doPrivileged, too.Uwe Schindler2015-11-1116-225/+200
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713891 13f79535-47bb-0310-9956-ffa450edef68
* #58597: Add more AccessController.doPrivileged. We should fix them later!Uwe Schindler2015-11-112-19/+37
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713813 13f79535-47bb-0310-9956-ffa450edef68
* #58597: Remove setAccessible (more coming soon)Uwe Schindler2015-11-1122-91/+74
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713770 13f79535-47bb-0310-9956-ffa450edef68
* Fixed Off-by-one-Error which skipped paragraph stylesAndreas Beeker2015-11-091-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713546 13f79535-47bb-0310-9956-ffa450edef68
* Wrap more security related reflection in AccessControllerUwe Schindler2015-11-091-17/+27
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713356 13f79535-47bb-0310-9956-ffa450edef68
* Use Lucene's unmapping code inside AccessController.doPrivileged() for ↵Uwe Schindler2015-11-091-22/+25
| | | | | | unmapping mapped byte buffers. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713350 13f79535-47bb-0310-9956-ffa450edef68
* Tell Eclipse to use a Java 6 compatible JVM, not latest one (if available)Uwe Schindler2015-11-091-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713340 13f79535-47bb-0310-9956-ffa450edef68
* #53192 - Images in ppt file have wrong width when convering ppt to pngAndreas Beeker2015-11-092-14/+19
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713332 13f79535-47bb-0310-9956-ffa450edef68
* Add reason message to @SuppressForbiddenUwe Schindler2015-11-083-5/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713324 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixesAndreas Beeker2015-11-084-28/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713319 13f79535-47bb-0310-9956-ffa450edef68
* Add support for HSLF metro blobsAndreas Beeker2015-11-0810-50/+235
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1713318 13f79535-47bb-0310-9956-ffa450edef68