summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Provide format-agnostic conditional formatting font colour getter and setterNick Burch2015-07-145-14/+63
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1691045 13f79535-47bb-0310-9956-ffa450edef68
| * Constant for the Office 2010 Conditional Formatting extensions namespaceNick Burch2015-07-141-1/+4
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1691015 13f79535-47bb-0310-9956-ffa450edef68
| * Bug 58133 - Agile encryption - wrong checksum calculationAndreas Beeker2015-07-131-1/+1
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690837 13f79535-47bb-0310-9956-ffa450edef68
| * Check more of the complex CF cases from the test filesNick Burch2015-07-131-2/+51
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690813 13f79535-47bb-0310-9956-ffa450edef68
| * Consistent whitespace/indentsNick Burch2015-07-131-75/+67
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690809 13f79535-47bb-0310-9956-ffa450edef68
| * Move some test checks to using ConditionType instead of raw bytesNick Burch2015-07-133-16/+31
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690808 13f79535-47bb-0310-9956-ffa450edef68
| * Enable CF2007 test for XLSX tooNick Burch2015-07-134-3/+17
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690805 13f79535-47bb-0310-9956-ffa450edef68
| * Provide a Conditional Formatting type class, and deprecate the byte-based ↵Nick Burch2015-07-136-17/+151
| | | | | | | | | | | | types, to better work with the wider range git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690803 13f79535-47bb-0310-9956-ffa450edef68
| * Have the HSSF ConditionalFormattingTable look for CF12 records as well, and ↵Nick Burch2015-07-132-8/+32
| | | | | | | | | | | | begin more detailed testing of the high level rules #58130 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690796 13f79535-47bb-0310-9956-ffa450edef68
| * Fix inconsistent indents/whitespaceNick Burch2015-07-131-214/+209
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690794 13f79535-47bb-0310-9956-ffa450edef68
| * Begin updating the HSSF CF code to work on the base types, so it can handle ↵Nick Burch2015-07-138-39/+104
| | | | | | | | | | | | both CF and CF12 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690793 13f79535-47bb-0310-9956-ffa450edef68
| * More clone supportNick Burch2015-07-131-1/+14
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690791 13f79535-47bb-0310-9956-ffa450edef68
| * Fix inconsistent indentsNick Burch2015-07-131-83/+81
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690790 13f79535-47bb-0310-9956-ffa450edef68
| * Fix generics, and use base typesNick Burch2015-07-131-9/+10
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690789 13f79535-47bb-0310-9956-ffa450edef68
| * Enable CFRule12 use #58130Nick Burch2015-07-135-4/+6
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690783 13f79535-47bb-0310-9956-ffa450edef68
| * More helpful output if a re-write test failsNick Burch2015-07-131-3/+9
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690780 13f79535-47bb-0310-9956-ffa450edef68
| * CFRule12 testsNick Burch2015-07-135-26/+104
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690778 13f79535-47bb-0310-9956-ffa450edef68
| * New future record interface, and more CFRule12 toString outputNick Burch2015-07-133-7/+80
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690773 13f79535-47bb-0310-9956-ffa450edef68
| * Allow dumping of null arraysNick Burch2015-07-131-4/+7
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690772 13f79535-47bb-0310-9956-ffa450edef68
| * Further CFRule12 parsingNick Burch2015-07-133-80/+207
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690742 13f79535-47bb-0310-9956-ffa450edef68
| * CFRule12 can have standard formats too, so push logic to base class #58130Nick Burch2015-07-138-228/+255
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690686 13f79535-47bb-0310-9956-ffa450edef68
| * Add Sheet.getMergedRegions to obtain them all as a list. Implement this for ↵David North2015-07-136-1/+105
| | | | | | | | | | | | | | | | XSSF using "deprecated" methods in XMLBeans which allow the operation to be linear in the number of regions rather than n-squared. Fixes #57893 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690661 13f79535-47bb-0310-9956-ffa450edef68
| * Bug 58113: Fix regression: NullPointerException when setting cell value to nullDominik Stadler2015-07-132-7/+49
| | | | | | | | | | | | add unit tests which verifies this for all three SS-implementations git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690652 13f79535-47bb-0310-9956-ffa450edef68
| * Patch from Chris Boyle to add basic support for .xlsm (macro-enabled) ↵David North2015-07-137-13/+266
| | | | | | | | | | | | | | | | workbooks. The binary blob containing the VBA macros may be copied from one such workbook into another. Fixes #58036 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690593 13f79535-47bb-0310-9956-ffa450edef68
| * Template IDs from which CFs can be basedNick Burch2015-07-121-0/+28
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690534 13f79535-47bb-0310-9956-ffa450edef68
| * Add some more conditional formatted styles in the test workbooks #58130Nick Burch2015-07-122-0/+0
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690530 13f79535-47bb-0310-9956-ffa450edef68
| * Refactor some of the CFRuleRecord logic out to CFRuleBase, and begin work on ↵Nick Burch2015-07-126-123/+365
| | | | | | | | | | | | CFRule12Record #58130 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690527 13f79535-47bb-0310-9956-ffa450edef68
| * Fix formatting/indents/commentsNick Burch2015-07-122-476/+421
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690512 13f79535-47bb-0310-9956-ffa450edef68
| * Introduce a CFHeaderBase common parent #58130Nick Burch2015-07-124-132/+207
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690503 13f79535-47bb-0310-9956-ffa450edef68
| * Update FtrHeader and CFHeader clone/createNick Burch2015-07-123-14/+13
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690500 13f79535-47bb-0310-9956-ffa450edef68
| * More whitespace / indent updatesNick Burch2015-07-124-635/+622
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690497 13f79535-47bb-0310-9956-ffa450edef68
| * Fix indent/whitespaceNick Burch2015-07-121-315/+312
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690495 13f79535-47bb-0310-9956-ffa450edef68
| * Start to support CF12 headers for #58130Nick Burch2015-07-125-32/+128
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690494 13f79535-47bb-0310-9956-ffa450edef68
| * Javadocs, and more record namesNick Burch2015-07-124-14/+20
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690490 13f79535-47bb-0310-9956-ffa450edef68
| * Javadoc and comment updates for CFsNick Burch2015-07-125-19/+12
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690486 13f79535-47bb-0310-9956-ffa450edef68
| * Some new-style conditional formattings, with gradients and iconsNick Burch2015-07-112-0/+0
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690409 13f79535-47bb-0310-9956-ffa450edef68
| * Add another Conditional Formatting example - multiple rules which overlapNick Burch2015-07-111-1/+67
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1690405 13f79535-47bb-0310-9956-ffa450edef68
| * OOXMLPrettyPrint: Populate the standalone-attribute always to avoid ↵Dominik Stadler2015-07-081-0/+1
| | | | | | | | | | | | differences in the resulting XML files from Excel and POI git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1689794 13f79535-47bb-0310-9956-ffa450edef68
| * Add some missing close(), reduce output in unit tests and remove some other ↵Dominik Stadler2015-07-074-15/+33
| | | | | | | | | | | | Eclipse warnings git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1689590 13f79535-47bb-0310-9956-ffa450edef68
| * Allow Eclipse to add some additional compiler warning settings added by ↵Dominik Stadler2015-07-071-0/+4
| | | | | | | | | | | | newer Eclipse versions, mostly Java 8 so not overly useful for us currently anyway git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1689589 13f79535-47bb-0310-9956-ffa450edef68
| * When writing the mini-stream, set the size of it on the root property #58061Nick Burch2015-07-064-5/+23
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1689505 13f79535-47bb-0310-9956-ffa450edef68
| * Helper method to report the number of blocks used in a BATNick Burch2015-07-062-2/+69
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1689504 13f79535-47bb-0310-9956-ffa450edef68
| * Bug 57744: Fix parsing the email submission data when id contains a hyphenDominik Stadler2015-07-035-4/+72
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1688998 13f79535-47bb-0310-9956-ffa450edef68
| * Bug 57678: Apply patch to better handle years in mail-messages between 1980 ↵Dominik Stadler2015-07-036-4/+74
| | | | | | | | | | | | and 1999. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1688993 13f79535-47bb-0310-9956-ffa450edef68
| * Fix OPOIFS generics warningsNick Burch2015-07-026-47/+36
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1688920 13f79535-47bb-0310-9956-ffa450edef68
| * To better match OPOIFS, pad to the end of a block with 0xFF/-1Nick Burch2015-07-012-0/+12
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1688543 13f79535-47bb-0310-9956-ffa450edef68
| * More NPOIFS ministream testsNick Burch2015-06-302-3/+95
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1688534 13f79535-47bb-0310-9956-ffa450edef68
| * Allow optional dumping of the raw ministream as wellNick Burch2015-06-301-11/+38
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1688533 13f79535-47bb-0310-9956-ffa450edef68
| * Revert to state before running unit-tests to not have arbitrary test-changes ↵Dominik Stadler2015-06-291-0/+0
| | | | | | | | | | | | applied to the sample file. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1688095 13f79535-47bb-0310-9956-ffa450edef68
| * Support optionally dumping the properties streamNick Burch2015-06-291-4/+45
| | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1688091 13f79535-47bb-0310-9956-ffa450edef68