summaryrefslogtreecommitdiffstats
path: root/poi
Commit message (Collapse)AuthorAgeFilesLines
...
* [bug-65701] use createElementNS in agile encyption writer codePJ Fanning2021-11-246-17/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895303 13f79535-47bb-0310-9956-ffa450edef68
* [github-281] Thanks to This closes #281PJ Fanning2021-11-241-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895284 13f79535-47bb-0310-9956-ffa450edef68
* [bug-65700] do not warn if transformer factory does not support ↵PJ Fanning2021-11-232-1/+9
| | | | | | accessExternalDTD property git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895276 13f79535-47bb-0310-9956-ffa450edef68
* #65694 - HSLF - handle date/time fields and formatsAndreas Beeker2021-11-225-41/+87
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895248 13f79535-47bb-0310-9956-ffa450edef68
* javadoc issuePJ Fanning2021-11-211-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895235 13f79535-47bb-0310-9956-ffa450edef68
* use try block to close input streamsPJ Fanning2021-11-202-8/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895202 13f79535-47bb-0310-9956-ffa450edef68
* some incorrect uses of PJ Fanning2021-11-183-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895151 13f79535-47bb-0310-9956-ffa450edef68
* try to make comments table more extensiblePJ Fanning2021-11-171-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895104 13f79535-47bb-0310-9956-ffa450edef68
* javadocPJ Fanning2021-11-161-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895084 13f79535-47bb-0310-9956-ffa450edef68
* javadocPJ Fanning2021-11-161-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895078 13f79535-47bb-0310-9956-ffa450edef68
* javadocPJ Fanning2021-11-161-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895077 13f79535-47bb-0310-9956-ffa450edef68
* Move org.apache.poi.hssf.dev classes from poi:main to poi:testAndreas Beeker2021-11-1519-1643/+785
| | | | | | Use CloseShieldOutputStream instead of CloseIgnoringInputStream git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895041 13f79535-47bb-0310-9956-ffa450edef68
* Code cleanup - repetitive callsAndreas Beeker2021-11-144-11/+19
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895031 13f79535-47bb-0310-9956-ffa450edef68
* missing licensePJ Fanning2021-11-141-0/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895019 13f79535-47bb-0310-9956-ffa450edef68
* [github-278] Resolve all SpotBugs P1 issues in Main and Test. Thanks to ↵PJ Fanning2021-11-141-0/+19
| | | | | | Andreas Reichel. This closes #278 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895017 13f79535-47bb-0310-9956-ffa450edef68
* [github-278] Resolve all SpotBugs P1 issues in Main and Test. Thanks to ↵PJ Fanning2021-11-1412-43/+39
| | | | | | Andreas Reichel. This closes #278 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895016 13f79535-47bb-0310-9956-ffa450edef68
* [bug-65675] add regression testPJ Fanning2021-11-093-3/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894884 13f79535-47bb-0310-9956-ffa450edef68
* remove old deprecated clone methodPJ Fanning2021-11-081-13/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894849 13f79535-47bb-0310-9956-ffa450edef68
* use spaces for indentsPJ Fanning2021-11-081-11/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894829 13f79535-47bb-0310-9956-ffa450edef68
* Adjust trimming sheetnames > 31 charsDominik Stadler2021-11-073-5/+38
| | | | | | | | | | | Define Constant MAX_SENSITIVE_SHEET_NAME_LEN = 31 Warn about trimmed sheet names Implement sheetname trimming for HSSFWorkbook Add use case tests Closes #273 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894817 13f79535-47bb-0310-9956-ffa450edef68
* Use append(char) instead of string where possibleDominik Stadler2021-11-0714-24/+24
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894814 13f79535-47bb-0310-9956-ffa450edef68
* Use parallel build to speed up building and running testsDominik Stadler2021-11-071-0/+1
| | | | | | | | | | | | | | | | Enable parallel building and parallel test-execution Provide a configuration to still build/test serially on CI via CI_BUILD=TRUE gradle --no-parallel --max-workers=1 clean build Adjust Jenkins DSL to set CI_BUILD to avoid problems in CI Adjust TestAllFiles to not fail when parallel builds are enabled Reduce memory settings to reduce requirements on build-environments Add gradle plugin to list task-dependencies Thanks to Andreas Reichel for the PR Closes #275 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894812 13f79535-47bb-0310-9956-ffa450edef68
* Add some more forbidden-apis to prefer core JDK classes over Guava and ↵Dominik Stadler2021-11-073-20/+20
| | | | | | | | commons-codec Also prevent java logging from being used inadvertently git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894810 13f79535-47bb-0310-9956-ffa450edef68
* forbidden apiPJ Fanning2021-11-021-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894699 13f79535-47bb-0310-9956-ffa450edef68
* [github-269] more work on external workbook links (formulas). Thanks to ↵PJ Fanning2021-11-024-9/+33
| | | | | | @aspojo. This closes #269 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894695 13f79535-47bb-0310-9956-ffa450edef68
* Add some more JavaDocDominik Stadler2021-11-022-2/+24
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894679 13f79535-47bb-0310-9956-ffa450edef68
* Optimize formula evaluation of row-referencesDominik Stadler2021-11-023-7/+36
| | | | | | | | | | We currently walk 1 million rows for every formula which uses a column-reference like "$A" Execution time of test-case TestVlookup.testFullColumnAreaRef61841 went from more than 16 seconds to around 2 seconds git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894675 13f79535-47bb-0310-9956-ffa450edef68
* javadocPJ Fanning2021-10-311-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894642 13f79535-47bb-0310-9956-ffa450edef68
* try to add LICENSE and NOTICE to sources jarsPJ Fanning2021-10-251-0/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894565 13f79535-47bb-0310-9956-ffa450edef68
* try to add LICENSE and NOTICE to javadoc jarsPJ Fanning2021-10-251-0/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894564 13f79535-47bb-0310-9956-ffa450edef68
* reflections 0.10.2PJ Fanning2021-10-251-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894561 13f79535-47bb-0310-9956-ffa450edef68
* revert github-267 due to broken testsPJ Fanning2021-10-254-25/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894550 13f79535-47bb-0310-9956-ffa450edef68
* [github-267] Issue with sheet range in formula With spaces and quotes. ↵PJ Fanning2021-10-253-9/+23
| | | | | | Thanks to aspojo. This closes #267 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894549 13f79535-47bb-0310-9956-ffa450edef68
* #65653 - HSLF FillType for texture and background color fills ignoredAndreas Beeker2021-10-241-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894538 13f79535-47bb-0310-9956-ffa450edef68
* configurable max record lenPJ Fanning2021-10-246-10/+87
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894525 13f79535-47bb-0310-9956-ffa450edef68
* configurable max record lenPJ Fanning2021-10-2320-103/+40
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894516 13f79535-47bb-0310-9956-ffa450edef68
* [bug-65650] use image/x-pict mime typePJ Fanning2021-10-232-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894507 13f79535-47bb-0310-9956-ffa450edef68
* more support for configurable max record lenPJ Fanning2021-10-221-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894494 13f79535-47bb-0310-9956-ffa450edef68
* javadocPJ Fanning2021-10-222-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894476 13f79535-47bb-0310-9956-ffa450edef68
* get some T.DIST tests to workPJ Fanning2021-10-222-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894473 13f79535-47bb-0310-9956-ffa450edef68
* get some T.DIST tests to workPJ Fanning2021-10-221-1/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894471 13f79535-47bb-0310-9956-ffa450edef68
* get some T.DIST tests to work (still not right on cumulative=false)PJ Fanning2021-10-225-7/+115
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894470 13f79535-47bb-0310-9956-ffa450edef68
* fix negative X on T.DIST.RTPJ Fanning2021-10-224-5/+96
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894469 13f79535-47bb-0310-9956-ffa450edef68
* fix names of t.dist functionsPJ Fanning2021-10-225-13/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894468 13f79535-47bb-0310-9956-ffa450edef68
* make max record sizes configurablePJ Fanning2021-10-211-23/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894454 13f79535-47bb-0310-9956-ffa450edef68
* make max record sizes configurablePJ Fanning2021-10-2126-304/+409
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894453 13f79535-47bb-0310-9956-ffa450edef68
* make max record sizes configurablePJ Fanning2021-10-2116-17/+256
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894452 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixesAndreas Beeker2021-10-2033-1020/+906
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894426 13f79535-47bb-0310-9956-ffa450edef68
* ant 1.10.12PJ Fanning2021-10-201-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894425 13f79535-47bb-0310-9956-ffa450edef68
* sonar fixesAndreas Beeker2021-10-1918-963/+925
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894393 13f79535-47bb-0310-9956-ffa450edef68