aboutsummaryrefslogtreecommitdiffstats
path: root/src/ooxml
Commit message (Expand)AuthorAgeFilesLines
* add forbidden api checks for non-Locale toLowerCase and toUpperCasePJ Fanning2017-11-211-1/+3
* [bug-61792] basic testPJ Fanning2017-11-202-1/+22
* [bug-61792] some changes to avoid iterating over chars of StringsPJ Fanning2017-11-201-21/+12
* javadocs and Quick page improvements for XSSF Header/FooterMark Murphy2017-11-198-13/+83
* ignore a unit test that snuck in. It was created to investigate an open bug ...Greg Woolsey2017-11-151-0/+1
* Fixes Bug 61764 Conditional formatting rules don't evaluate properly for some...Greg Woolsey2017-11-153-0/+76
* Fix setting a font-color if no previous color is defined for the fontDominik Stadler2017-11-134-3/+82
* Fix testsDominik Stadler2017-11-131-9/+2
* bug 61745: remove String#toString() usage found by forbidden apis checkJaven O'Neal2017-11-131-4/+4
* bug 61745: add support for charts in XWPF/docx. Thanks to Sandeep Tiwari for ...Javen O'Neal2017-11-125-1/+273
* XWPFTable#getRows() should return an unmodifiable list unless the method can ...Javen O'Neal2017-11-121-1/+2
* make tableRows final; initialize where defined rather than in constructor.Javen O'Neal2017-11-121-3/+1
* deprecate XWPFTable#addNewRowBetween(int,int), which has not been implemented...Javen O'Neal2017-11-121-1/+12
* Surface XSSF Header/Footer Attributes (60887)Mark Murphy2017-11-1119-115/+918
* Enhance unit-test to Verify that bug 58785 is already via via some other changeDominik Stadler2017-11-061-9/+48
* Add test-case which shows that bug 55814 is fixed already by other changesDominik Stadler2017-11-041-0/+33
* Fix some IntelliJ and JavaDoc warnings and avoid code-duplication and duplica...Dominik Stadler2017-11-042-34/+33
* bug 61474, github #81: pull up methods from RowShifter to BaseRowColShifter, ...Javen O'Neal2017-11-043-3/+13
* bug 61474, github #81: remove @Internal RowShifter#updateRowFormulas, move to...Javen O'Neal2017-11-043-160/+118
* bug 61474, github #81: implement updateConditionalFormatting for ColumnShifterJaven O'Neal2017-11-043-59/+67
* bug 61474, github #81: implement updateNamedRanges for ColumnShifterJaven O'Neal2017-11-043-15/+22
* bug 61474, github #81: add ColumnShifter interface; deduplicate some code in ...Javen O'Neal2017-11-043-39/+145
* bug 61474, #81 on github: add @Override annotation; rename FormulaShifter shi...Javen O'Neal2017-11-041-25/+30
* rename ambiguous variable name shifter -> formulaShifterJaven O'Neal2017-11-041-2/+2
* whitespaceJaven O'Neal2017-11-041-12/+12
* #61671 - XSLFSlide does not contain isHidden and setHidden like HSLFSlide doesAndreas Beeker2017-11-022-0/+101
* use StringBuilder in more placesPJ Fanning2017-10-3117-344/+343
* add test case for bug 61701 and use StringBuilder in more placesPJ Fanning2017-10-317-17/+40
* consolidate duplicated code: XSSFWorkbook#setBookViewsIfMissing()Javen O'Neal2017-10-311-21/+11
* bug 61630: Patch from Daniel to fix XSSFExportToXML IllegalArgumentException:...Javen O'Neal2017-10-261-1/+1
* bug 61630: further XSSFExportToXML performance improvements from Daniel (bug ...Javen O'Neal2017-10-251-23/+31
* bug 61630: revert r1813240, which failed the integration test with org.apache...Javen O'Neal2017-10-241-25/+22
* bug 61630: further XSSFExportToXML performance improvements from Daniel (comm...Javen O'Neal2017-10-241-22/+25
* Remove more deprecated codePJ Fanning2017-10-232-38/+1
* Remove more deprecated codePJ Fanning2017-10-231-0/+3
* Introduce new BorderFormatting methods to expose border stylesPJ Fanning2017-10-221-95/+30
* Remove use of deprecated methodsPJ Fanning2017-10-223-104/+54
* Remove use of deprecated methodsPJ Fanning2017-10-222-128/+75
* Remove use of deprecated methodsPJ Fanning2017-10-224-5/+5
* Add getter/setter for ReadingOrder to XSSF, closes issue #73Dominik Stadler2017-10-183-1/+62
* bug 61630: performance improvements in XSSFExportToXml. Thanks to Daniel for ...Javen O'Neal2017-10-181-16/+18
* fix compile errorJaven O'Neal2017-10-181-1/+2
* cleanup for r1812475: avoid NPEs from string.isEmpty()Javen O'Neal2017-10-181-4/+5
* cleanup for r1812476: avoid NPEs from string.isEmpty()Javen O'Neal2017-10-182-2/+2
* replace "".equals(string) with string.isEmpty() to avoid null strings silentl...Javen O'Neal2017-10-1810-14/+14
* prefer literal.equals(variable) over variable.equals(literal)Javen O'Neal2017-10-181-22/+18
* convert "".equals(string) to string.isEmpty()Javen O'Neal2017-10-181-1/+1
* simplfy PackagingURIHelper#combine boolean logic using xor and replacing +FOR...Javen O'Neal2017-10-181-6/+2
* fix typoJaven O'Neal2017-10-181-1/+1
* string.equals("") -> string.isEmpty() or "".equals(string)Javen O'Neal2017-10-187-21/+24