1909 Commits (4ad4d76241eae44386e52c3a23ca1b7ca28d1458)

Author SHA1 Message Date
  Greg Woolsey 1d2c550dbe #61841 fix typo in method name 6 years ago
  Greg Woolsey 8f26e2721d Bug #61841 - Unnecessary long computation when evaluating VLOOKUP on all column reference 6 years ago
  PJ Fanning 49b7fd5342 use try-with-resources in more places 6 years ago
  Nick Burch 0046b3e9a5 Javadoc fixes 6 years ago
  Alain Béarez 3b8f806850 XDDF usermodel for Charts closes #68 on GitHub 6 years ago
  PJ Fanning e0c8416726 use try with resources in examples 6 years ago
  Dominik Stadler db15fe7778 Change order of handling shape-types in copy() as FreeFormShape derives from AutoShape and thus would have not been copied correctly currently 6 years ago
  PJ Fanning acc7b356ee add forbidden api checks for non-Locale toLowerCase and toUpperCase 6 years ago
  PJ Fanning bb40ff4fd3 [bug-61792] basic test 6 years ago
  PJ Fanning 2d8c9cbc9a [bug-61792] some changes to avoid iterating over chars of Strings 6 years ago
  Mark Murphy 9d0010088b javadocs and Quick page improvements for XSSF Header/Footer 6 years ago
  Greg Woolsey 8572d4b71c Fixes Bug 61764 Conditional formatting rules don't evaluate properly for some multi-range rule definitions 6 years ago
  Dominik Stadler 59d8adf5b8 Fix setting a font-color if no previous color is defined for the font 6 years ago
  Javen O'Neal d96f9ce495 bug 61745: add support for charts in XWPF/docx. Thanks to Sandeep Tiwari for the patch 6 years ago
  Javen O'Neal 4cf3b2bee2 XWPFTable#getRows() should return an unmodifiable list unless the method can correctly update xmlbeans in response to modifying the list 6 years ago
  Javen O'Neal 1938207e59 make tableRows final; initialize where defined rather than in constructor. 6 years ago
  Javen O'Neal 145b69b1c6 deprecate XWPFTable#addNewRowBetween(int,int), which has not been implemented since 2008 when this class was first authored. (Unrelated: This closes #82 on github). 6 years ago
  Mark Murphy 25c25ea8ac Surface XSSF Header/Footer Attributes (60887) 6 years ago
  Dominik Stadler b7f7ff71b4 Fix some IntelliJ and JavaDoc warnings and avoid code-duplication and duplicated test-methods 6 years ago
  Javen O'Neal 37ee513fc9 bug 61474, github #81: pull up methods from RowShifter to BaseRowColShifter, since both row and column shifting should be able to shift formulas, comments, merged regions, conditional formatting, etc; add @since decorators for new *ColumnShifter and *RowColShifter classes 6 years ago
  Javen O'Neal 890d6e70e6 bug 61474, github #81: remove @Internal RowShifter#updateRowFormulas, move to XSSFRowColShifter; implement ColumnShifter#updateFormulas; remove duplicated JavaDocs (better to inherit) 6 years ago
  Javen O'Neal 0f14370c21 bug 61474, github #81: implement updateConditionalFormatting for ColumnShifter 6 years ago
  Javen O'Neal 2d7e44db5a bug 61474, github #81: implement updateNamedRanges for ColumnShifter 6 years ago
  Javen O'Neal 6ceee17033 bug 61474, github #81: add ColumnShifter interface; deduplicate some code in RowShifter, CFRecordsAggregate 6 years ago
  Javen O'Neal 25b94af3bb bug 61474, #81 on github: add @Override annotation; rename FormulaShifter shifter to FormulaShifter formulaShifter to reduce confusion with the shifter variable referring to the RowShifter 6 years ago
  Javen O'Neal 4e744a5739 rename ambiguous variable name shifter -> formulaShifter 6 years ago
  Javen O'Neal 7e0c095ff5 whitespace 6 years ago
  Andreas Beeker 37e4c32065 #61671 - XSLFSlide does not contain isHidden and setHidden like HSLFSlide does 6 years ago
  PJ Fanning aa9b57774f use StringBuilder in more places 6 years ago
  PJ Fanning d6f261473d add test case for bug 61701 and use StringBuilder in more places 6 years ago
  Javen O'Neal b4ee3da44f consolidate duplicated code: XSSFWorkbook#setBookViewsIfMissing() 6 years ago
  Javen O'Neal 98c6f2ba1f bug 61630: Patch from Daniel to fix XSSFExportToXML IllegalArgumentException: Comparison method violates its general contract! (bug 61630, comment 17, attachment 35468). Found during manual testing. 6 years ago
  Javen O'Neal 5eaf1d582d bug 61630: further XSSFExportToXML performance improvements from Daniel (bug 61630 comment 15, attachment 35450) 6 years ago
  Javen O'Neal 91fbf5db4f bug 61630: revert r1813240, which failed the integration test with org.apache.poi.stress.XSSFFileHandler on test-data/spreadsheet/59025.xlsx 6 years ago
  Javen O'Neal 4e782652dc bug 61630: further XSSFExportToXML performance improvements from Daniel (comment 9, bug 61630 attachment 35450) 6 years ago
  PJ Fanning 7dce661861 Remove more deprecated code 6 years ago
  PJ Fanning 5ecf32781d Introduce new BorderFormatting methods to expose border styles 6 years ago
  PJ Fanning e52d29df16 Remove use of deprecated methods 6 years ago
  PJ Fanning 2cd8c7bc65 Remove use of deprecated methods 6 years ago
  PJ Fanning dffa1ccd9c Remove use of deprecated methods 6 years ago
  Dominik Stadler 63bf8e8ba5 Add getter/setter for ReadingOrder to XSSF, closes issue #73 6 years ago
  Javen O'Neal 9a27ae194f bug 61630: performance improvements in XSSFExportToXml. Thanks to Daniel for the patch. 6 years ago
  Javen O'Neal 3a7e3846d5 fix compile error 6 years ago
  Javen O'Neal fb854a6f34 cleanup for r1812475: avoid NPEs from string.isEmpty() 6 years ago
  Javen O'Neal fac34b6740 cleanup for r1812476: avoid NPEs from string.isEmpty() 6 years ago
  Javen O'Neal 2ef3af567c replace "".equals(string) with string.isEmpty() to avoid null strings silently evaluating to false; most code should probably check string for null if it is not already 6 years ago
  Javen O'Neal b8de369f2c prefer literal.equals(variable) over variable.equals(literal) 6 years ago
  Javen O'Neal 8300528aad simplfy PackagingURIHelper#combine boolean logic using xor and replacing +FORWARD_SLASH_CHAR with FORWARD_SLASH_STRING 6 years ago
  Javen O'Neal 129db08b91 fix typo 6 years ago
  Javen O'Neal 117f08049b string.equals("") -> string.isEmpty() or "".equals(string) 6 years ago