summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * javadoc fix ... trying to get rid of the "Error fetching URL" warningAndreas Beeker2015-05-041-1/+1
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1677659 13f79535-47bb-0310-9956-ffa450edef68
| * Fix inconsistent whitespaceNick Burch2015-05-041-127/+121
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1677565 13f79535-47bb-0310-9956-ffa450edef68
| * If an empty stream or file is given to WorkbookFactory.create, give a more ↵Nick Burch2015-05-045-17/+93
| | | | | | | | | | | | informative exception - EmptyFileException git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1677562 13f79535-47bb-0310-9956-ffa450edef68
| * New EmptyFileException, and fix serial warningNick Burch2015-05-042-1/+30
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1677561 13f79535-47bb-0310-9956-ffa450edef68
| * Patch from Mark Olesen from bug #57552: Sort PackagePart returns from ↵Nick Burch2015-05-034-24/+153
| | | | | | | | | | | | OPCPackage by name considering numbers in filenames, so Image10.png comes after Image9.png, fixing problems with XSLF adding 10+ images to a slide git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1677373 13f79535-47bb-0310-9956-ffa450edef68
| * Avoid short wrapping on cell styles and formats > 32,767 in XSSF - format ↵Nick Burch2015-05-034-0/+64
| | | | | | | | | | | | supports up to 64,000 of them #57880 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1677371 13f79535-47bb-0310-9956-ffa450edef68
| * Ensure consistent ordering when writing out formats following changes in ↵Nick Burch2015-05-031-4/+6
| | | | | | | | | | | | r1677368 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1677370 13f79535-47bb-0310-9956-ffa450edef68
| * Fix inconsistent indentsNick Burch2015-05-031-448/+447
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1677369 13f79535-47bb-0310-9956-ffa450edef68
| * Somewhat speed up creating data formats with large counts, and add maximum ↵Nick Burch2015-05-031-14/+24
| | | | | | | | | | | | format/style count checking. #57884 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1677368 13f79535-47bb-0310-9956-ffa450edef68
| * Add verifying testcase for Bug 57423 and Bug 55752, both are still not ↵Dominik Stadler2015-04-302-2/+167
| | | | | | | | | | | | solved, though. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676965 13f79535-47bb-0310-9956-ffa450edef68
| * Remove Eclipse warnings in testsDominik Stadler2015-04-302-19/+25
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676903 13f79535-47bb-0310-9956-ffa450edef68
| * Adjust test to handle a file correctly which works for normal handling but ↵Dominik Stadler2015-04-301-2/+3
| | | | | | | | | | | | fails expectedly in text-extraction testing. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676902 13f79535-47bb-0310-9956-ffa450edef68
| * Skip the new password protected file, and re-org a little bit some other ↵Nick Burch2015-04-291-2/+5
| | | | | | | | | | | | failures git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676874 13f79535-47bb-0310-9956-ffa450edef68
| * Allow WorkbookFactory.create to open xlsx files protected with the default ↵Nick Burch2015-04-292-32/+49
| | | | | | | | | | | | password git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676853 13f79535-47bb-0310-9956-ffa450edef68
| * #57593 Complete create overloading in WorkbookFactory to take passwordsNick Burch2015-04-292-6/+77
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676847 13f79535-47bb-0310-9956-ffa450edef68
| * Fix inconsistent indentsNick Burch2015-04-291-103/+103
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676845 13f79535-47bb-0310-9956-ffa450edef68
| * #57593 Begin adding overloaded WorkbookFactory.create methods which take the ↵Nick Burch2015-04-292-2/+149
| | | | | | | | | | | | spreadsheet password git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676843 13f79535-47bb-0310-9956-ffa450edef68
| * Sample password protected xlsx file from TikaNick Burch2015-04-291-0/+0
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676840 13f79535-47bb-0310-9956-ffa450edef68
| * Use a constant for the name of the OOXML encrypted package nodeNick Burch2015-04-2911-11/+17
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676838 13f79535-47bb-0310-9956-ffa450edef68
| * When removing a SXSSF sheet, ensure temp files associated with it are ↵Nick Burch2015-04-291-1/+8
| | | | | | | | | | | | disposed of #57666 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676833 13f79535-47bb-0310-9956-ffa450edef68
| * Patch from Jon Scharff from bug #57826 - If a XSSF shape has a buFont but no ↵Nick Burch2015-04-293-4/+38
| | | | | | | | | | | | bullet character, mirror Excel and treat as un-bulleted git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676831 13f79535-47bb-0310-9956-ffa450edef68
| * Add a (disabled) unit test showing the incorrect ordering problem of parts - ↵Nick Burch2015-04-291-2/+107
| | | | | | | | | | | | bug #57552 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676810 13f79535-47bb-0310-9956-ffa450edef68
| * POI-56998 add some getters to help with list numbering in hwpfTim Allison2015-04-282-0/+79
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676561 13f79535-47bb-0310-9956-ffa450edef68
| * Add unit-test which verifies that fill and alignment styles are applied and ↵Dominik Stadler2015-04-271-0/+50
| | | | | | | | | | | | read back in correctly. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1676276 13f79535-47bb-0310-9956-ffa450edef68
| * Little bit more OSGi, not yet working #57857Nick Burch2015-04-253-4/+35
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675991 13f79535-47bb-0310-9956-ffa450edef68
| * #57857 Based on the Apache Tika OSGi bundle and tests, start on a ↵Nick Burch2015-04-254-0/+352
| | | | | | | | | | | | maven-powered build and test for a POI bundle git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675989 13f79535-47bb-0310-9956-ffa450edef68
| * Add missing license headerNick Burch2015-04-241-0/+17
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675750 13f79535-47bb-0310-9956-ffa450edef68
| * Fix some inconsistent whitespaceNick Burch2015-04-241-861/+877
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675748 13f79535-47bb-0310-9956-ffa450edef68
| * #57642 Fix setSheetName with ISERROR on XSSFNick Burch2015-04-242-1/+26
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675745 13f79535-47bb-0310-9956-ffa450edef68
| * Add a common interface for 3D Pxg'sNick Burch2015-04-243-2/+29
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675744 13f79535-47bb-0310-9956-ffa450edef68
| * Patch from Conor from bug #57747 - Add ISERR() functionNick Burch2015-04-243-0/+110
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675741 13f79535-47bb-0310-9956-ffa450edef68
| * Whitespace and comment updatesNick Burch2015-04-241-6/+6
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675740 13f79535-47bb-0310-9956-ffa450edef68
| * #57829 Avoid XmlValueDisconnectedException when removing a XWPFRun from a ↵Nick Burch2015-04-242-1/+20
| | | | | | | | | | | | XWPFParagraph by removing from IRuns as well git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675738 13f79535-47bb-0310-9956-ffa450edef68
| * Add another file exclude, and hae the test print out which fails failed to ↵Nick Burch2015-04-231-0/+3
| | | | | | | | | | | | make it quicker to spot in the jenkins failure email git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675719 13f79535-47bb-0310-9956-ffa450edef68
| * #57851 - Skip null properties in PropertyTableBase, which is how ↵Nick Burch2015-04-232-5/+30
| | | | | | | | | | | | PropertyFactory reports unsupported POIFS properties git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675702 13f79535-47bb-0310-9956-ffa450edef68
| * Make the opening code genericNick Burch2015-04-231-18/+30
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675700 13f79535-47bb-0310-9956-ffa450edef68
| * Make the test generic across POIFS and NPOIFSNick Burch2015-04-231-21/+33
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675698 13f79535-47bb-0310-9956-ffa450edef68
| * Pull out a common NPOIFS/POIFS test to a decidated bugs test classNick Burch2015-04-232-41/+66
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675696 13f79535-47bb-0310-9956-ffa450edef68
| * Test file from Marcin Łoś from bug #57851Nick Burch2015-04-231-0/+0
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675693 13f79535-47bb-0310-9956-ffa450edef68
| * Fix inconsistent indentsNick Burch2015-04-231-102/+102
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675690 13f79535-47bb-0310-9956-ffa450edef68
| * Add unit test for Eventmodel processing of password protected excel filesNick Burch2015-04-231-0/+63
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675689 13f79535-47bb-0310-9956-ffa450edef68
| * Print out slightly more on test-failure for a unit tests which fails ↵Dominik Stadler2015-04-221-1/+3
| | | | | | | | | | | | intermittently git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1675266 13f79535-47bb-0310-9956-ffa450edef68
| * Fix bug 57828, shifting more than one commit per row did not work.Dominik Stadler2015-04-203-3/+39
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674975 13f79535-47bb-0310-9956-ffa450edef68
| * Fix some Eclipse warningsDominik Stadler2015-04-201-6/+9
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674965 13f79535-47bb-0310-9956-ffa450edef68
| * Fix usage of Generics in some classesDominik Stadler2015-04-2011-42/+46
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674964 13f79535-47bb-0310-9956-ffa450edef68
| * Avoid possible NullPointerException seen with some powerpoint filesDominik Stadler2015-04-202-1/+1
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674958 13f79535-47bb-0310-9956-ffa450edef68
| * Fix possible ArrayIndexOutOfBoundsException seen with some word documentsDominik Stadler2015-04-202-1/+1
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674954 13f79535-47bb-0310-9956-ffa450edef68
| * Avoid NullPointerException if an image cannot be readDominik Stadler2015-04-202-0/+4
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674952 13f79535-47bb-0310-9956-ffa450edef68
| * Detect if a file is actually PDF instead of .doc similar to how it is ↵Dominik Stadler2015-04-201-2/+4
| | | | | | | | | | | | already done for RTF git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674951 13f79535-47bb-0310-9956-ffa450edef68
| * Add missing nested Exception in thrown ExceptionDominik Stadler2015-04-191-1/+1
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1674618 13f79535-47bb-0310-9956-ffa450edef68