aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 706772,707450,707481 via svnmerge from Josh Micich2008-10-2631-600/+1350
| | | | | | | | | | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r706772 | josh | 2008-10-21 14:25:50 -0700 (Tue, 21 Oct 2008) | 1 line Fix for bug 46053 - fixed evaluation cache dependency analysis when changing blank cells ........ r707450 | josh | 2008-10-23 12:08:42 -0700 (Thu, 23 Oct 2008) | 1 line Fix for bug 45778 - made ObjRecord read sub-record ftLbsData properly ........ r707481 | josh | 2008-10-23 14:42:05 -0700 (Thu, 23 Oct 2008) | 1 line fixed re-serialization of tAttrChoose ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@707942 13f79535-47bb-0310-9956-ffa450edef68
* applied patches #46079, #46080 and #46081 by Gisella BronzettiYegor Kozlov2008-10-256-203/+478
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@707843 13f79535-47bb-0310-9956-ffa450edef68
* more cleanup and refactoring of the ooxml code:1. removed deprecated methods ↵Yegor Kozlov2008-10-2533-512/+460
| | | | | | | | | | from xssf and interfaces 2. minimized the accessibility of internal constructors 3. more javadocs git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@707839 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 703100,703197,703302,703596,703620,703645,703651,706540 via ↵Josh Micich2008-10-2587-1641/+1592
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from https://svn.apache.org/repos/asf/poi/trunk ........ r703100 | josh | 2008-10-09 01:33:54 -0700 (Thu, 09 Oct 2008) | 1 line Removed last occurrences of storing Ptg arrays in Stacks. Some related clean-up. ........ r703197 | josh | 2008-10-09 09:10:39 -0700 (Thu, 09 Oct 2008) | 1 line Should have been submitted with r703100 (changes to Ptg) ........ r703302 | josh | 2008-10-09 17:40:58 -0700 (Thu, 09 Oct 2008) | 1 line Fix for bug 45964 - support for link formulas in Text Objects ........ r703596 | josh | 2008-10-10 15:59:14 -0700 (Fri, 10 Oct 2008) | 1 line Made RecordInputStream final (major clean-up in test cases and BiffViewer) ........ r703620 | josh | 2008-10-10 18:11:05 -0700 (Fri, 10 Oct 2008) | 2 lines fix for bug 45866 - allowed for change of unicode compression across Continue records ........ r703645 | yegor | 2008-10-11 03:31:24 -0700 (Sat, 11 Oct 2008) | 1 line fixed error in eval.xml: use &lt; instead of '<' ........ r703651 | yegor | 2008-10-11 05:01:42 -0700 (Sat, 11 Oct 2008) | 1 line set trunk version.id=3.3-alpha1 ........ r706540 | yegor | 2008-10-20 23:47:35 -0700 (Mon, 20 Oct 2008) | 1 line updated release version on the index page, started a new section in the change log ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@707807 13f79535-47bb-0310-9956-ffa450edef68
* 1. important algorithmic improvements of XSSFRow and XSSFSheet, removed ↵Yegor Kozlov2008-10-239-622/+1081
| | | | | | | | | | LinkedList in favor of TreeMap, that allowed O(Log(N)) performance instead of O(N) when adding new rows and cells2. Revised cell value accessors in XSSFCell. Now both HSSF and XSSF handle various cell types equally. The same exceptions are thrown in case of type mismatch, same behaviour when setting nulls, etc. 3. Moved FormulaError codes out of the Cell interface into enum. Interface isn't a proper place for it 4. Finally finished javadoc on XSSFRow and XSSFCell git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@707445 13f79535-47bb-0310-9956-ffa450edef68
* 1. implemented XSSFSheet.autosizeColumn(), for now mostly duplicated HSSF ↵Yegor Kozlov2008-10-2125-297/+449
| | | | | | | | code, will be refactored in future.2. fixed bug #45974: XSSFCell.getCellStyle can return null3. more code cleanup and reaftoring, removed usages of obsolete XSSFCell.getCellNum() in favor of XSSFCell.getColumnIndex(), also more javadoc in core classes 4. fixed a blocker: calling XSSFSheet.getNumMergedRegions() resulted in unreadable workbook, this methods structurally modified worksheet and added unnecessary data git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@706691 13f79535-47bb-0310-9956-ffa450edef68
* cleanup of POIXMLDocument constructors and related sub-classesYegor Kozlov2008-10-195-85/+108
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@706032 13f79535-47bb-0310-9956-ffa450edef68
* more code cleanup and refactoring: (a) removed references to ooxml schemas ↵Yegor Kozlov2008-10-1934-936/+733
| | | | | | | | | | from XSSF enums, they should not depend on ooxml-schemas.jar (b) removed "for testing only" constructors, the goal is to have a single, maximum 2 constructors for objects inherited from POIXMLDocumentPart (c) more javadocs git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@706003 13f79535-47bb-0310-9956-ffa450edef68
* applied patch #46003 by Gisella BronzettiYegor Kozlov2008-10-174-67/+382
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@705701 13f79535-47bb-0310-9956-ffa450edef68
* applied patches #46004 and #46006 submitted by Gisella BronzettiYegor Kozlov2008-10-178-71/+454
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@705684 13f79535-47bb-0310-9956-ffa450edef68
* should have been included in r705638Yegor Kozlov2008-10-171-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@705662 13f79535-47bb-0310-9956-ffa450edef68
* more progress on SpreadsheetML drawing layer;finished XSSFPicture, ↵Yegor Kozlov2008-10-1728-395/+1267
| | | | | | auto-sizing is supported; implemented initial support for shape groups. Common HSSF-XSSF drawing interfaces are still TODO. git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@705638 13f79535-47bb-0310-9956-ffa450edef68
* refactored POIXMLFactory and related classes; simplified XSSFRelation - now ↵Yegor Kozlov2008-10-1210-335/+197
| | | | | | it's just a set of definitions of XSSF relations, all read/load stuff is not used anymore and was removed. Also, removed Workbook.getCustomPallete() - it's OLE-specific git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@703814 13f79535-47bb-0310-9956-ffa450edef68
* applied patch #45967 by Gisella Bronzetti: support for XSSFPrintSetup objectYegor Kozlov2008-10-1212-29/+941
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@703778 13f79535-47bb-0310-9956-ffa450edef68
* Initial support for SpreadsheetML drawings,implemented XSSFPicture, added ↵Yegor Kozlov2008-10-1024-181/+1712
| | | | | | ability to add pictures to workbook, refactored XSSFPictureData to be a subclass of POIXMLDocumentPart. Also refactored misc odds and ends in order to produce xml better compatible with what MS Office produces git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@703490 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 703092 via svnmerge from Josh Micich2008-10-0912-33/+50
| | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r703092 | josh | 2008-10-09 00:44:37 -0700 (Thu, 09 Oct 2008) | 1 line converted short HSSFCell.getCellNum to int getColumnIndex ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@703096 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 703063 via svnmerge from Josh Micich2008-10-0932-563/+1626
| | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r703063 | josh | 2008-10-08 23:07:36 -0700 (Wed, 08 Oct 2008) | 1 line Performance optimisation for EvaluationCache. Changed to use HSSFCell as key into cache entry map. Reduced dependency information storage for blank cells. Introduced EvaluationSheet and EvaluationCell interfaces. Modified HSSFFormulaEvaluator API to have simpler notify~ methods ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@703083 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 701756,702231 via svnmerge from Josh Micich2008-10-0962-696/+325
| | | | | | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r701756 | josh | 2008-10-05 00:22:12 -0700 (Sun, 05 Oct 2008) | 1 line Fixing comments and formatting inside Record subclasses ........ r702231 | josh | 2008-10-06 12:13:41 -0700 (Mon, 06 Oct 2008) | 1 line Fix for 43354 - made the formula evaluator capable of handling missing function arguments ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@703070 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 700479,700493,700916,701302,701569,701598,701747 via ↵Josh Micich2008-10-0923-460/+815
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from https://svn.apache.org/repos/asf/poi/trunk ........ r700479 | yegor | 2008-09-30 07:32:37 -0700 (Tue, 30 Sep 2008) | 1 line reverted the change made in r693085 , see bug #45859 ........ r700493 | yegor | 2008-09-30 08:11:26 -0700 (Tue, 30 Sep 2008) | 1 line initial support for creating hyperlinks in HSLF, units test are still to do ........ r700916 | josh | 2008-10-01 13:56:21 -0700 (Wed, 01 Oct 2008) | 1 line Fixed bug in CellCacheEntry (support for caching blank evaluation results) ........ r701302 | yegor | 2008-10-02 22:27:06 -0700 (Thu, 02 Oct 2008) | 1 line fixed bug #45889:rrayIndexOutOfBoundsException when constructing HSLF Table with a single row ........ r701569 | josh | 2008-10-03 16:50:22 -0700 (Fri, 03 Oct 2008) | 1 line Fix for bug 45912 - ArrayIndexOutOfBoundsException in EmbeddedObjectRefSubRecord ........ r701598 | josh | 2008-10-03 21:59:26 -0700 (Fri, 03 Oct 2008) | 1 line changed workbook reference to index in CellLocation ........ r701747 | josh | 2008-10-04 21:43:48 -0700 (Sat, 04 Oct 2008) | 1 line Better bounds checking in RecordInputStream. Removed rarely used methods readShortArray and putShortArray ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@703069 13f79535-47bb-0310-9956-ffa450edef68
* applied patch #45492 submitted by Gisella Bronzetti,also performed major ↵Yegor Kozlov2008-10-0518-772/+2226
| | | | | | cleanup of StylesTable and its components, the goal was to ensure that StylesTable works as a cache of styling components, not just a regular store of fill patterns and cell styles. git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@701797 13f79535-47bb-0310-9956-ffa450edef68
* applied patches provided by Gisella Bronzetti in bugs #45918, #45917 and #45920Yegor Kozlov2008-10-017-634/+1052
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@700844 13f79535-47bb-0310-9956-ffa450edef68
* iterator over sheet data in XSSFReader returns sheets in logical order, ↵Yegor Kozlov2008-10-013-113/+202
| | | | | | i.e. as they are defined in workbook.xml (was in physical order, as they were stored in the relationship table) git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@700821 13f79535-47bb-0310-9956-ffa450edef68
* refactored POIXMLDocument to be a composite of POIXMLDocumentPart, this way ↵Yegor Kozlov2008-09-3026-2256/+3022
| | | | | | | | XSSFWorkbook is a root of a tree: XSSFSheets are children, XSSFDrawings are children of worksheets, etc, Also, performed major cleanup of core XSSF classes and test cases git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@700472 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 700280,700304,700327,700356 via svnmerge from Josh Micich2008-09-30213-4060/+302
| | | | | | | | | | | | | | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r700280 | josh | 2008-09-29 15:04:20 -0700 (Mon, 29 Sep 2008) | 1 line Fix for bug 45876 - allowed BoundSheetRecord to take sheet names longer than 31 chars ........ r700304 | josh | 2008-09-29 16:12:53 -0700 (Mon, 29 Sep 2008) | 1 line Updated formula evaluator documentation due to bugzilla 45768 ........ r700327 | josh | 2008-09-29 19:30:53 -0700 (Mon, 29 Sep 2008) | 1 line Removed validateSid method from Record classes ........ r700356 | josh | 2008-09-29 23:18:44 -0700 (Mon, 29 Sep 2008) | 1 line Refactored fillFields() method into constructor in Record class hierarchy ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@700359 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 700005,700203-700204 via svnmerge from Josh Micich2008-09-2930-732/+522
| | | | | | | | | | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r700005 | josh | 2008-09-29 00:27:14 -0700 (Mon, 29 Sep 2008) | 1 line Fix for bug 45890 - made HSSFSheet.shiftRows also update conditional formats ........ r700203 | josh | 2008-09-29 11:43:53 -0700 (Mon, 29 Sep 2008) | 1 line Refactoring row-blocks record reading logic in Sheet ........ r700204 | josh | 2008-09-29 11:48:43 -0700 (Mon, 29 Sep 2008) | 1 line Should have been submitted with c700203 (Refactoring row-blocks record reading logic in Sheet) ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@700243 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 699178,699487,699489,699761 via svnmerge from Josh Micich2008-09-2944-1263/+2115
| | | | | | | | | | | | | | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r699178 | josh | 2008-09-25 21:49:20 -0700 (Thu, 25 Sep 2008) | 1 line Changed HSSFEvaluationWorkbook to avoid re-parsing cell formulas during execution. (working towards fix for bug 45865) ........ r699487 | josh | 2008-09-26 13:25:45 -0700 (Fri, 26 Sep 2008) | 1 line Fix formula parser to properly support the range operator. Small fixes to parsing of sheet names and full column references. ........ r699489 | josh | 2008-09-26 13:32:06 -0700 (Fri, 26 Sep 2008) | 1 line Code cleanup in junit ........ r699761 | josh | 2008-09-27 19:04:31 -0700 (Sat, 27 Sep 2008) | 1 line Bug 45865 - modified Formula Parser/Evaluator to handle cross-worksheet formulas ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@700234 13f79535-47bb-0310-9956-ffa450edef68
* Cleaned up test codeJosh Micich2008-09-291-80/+51
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@699991 13f79535-47bb-0310-9956-ffa450edef68
* Clean-up of generics in XSSFRelationJosh Micich2008-09-293-2121/+2168
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@699990 13f79535-47bb-0310-9956-ffa450edef68
* Applied patch 45899 - XSSFWorkbook getActiveSheetIndex / setActiveSheetJosh Micich2008-09-294-44/+62
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@699989 13f79535-47bb-0310-9956-ffa450edef68
* Applied patch 45898 - fixed XSSFCellFill getFillBackgroundColor and ↵Josh Micich2008-09-295-1061/+1100
| | | | | | getFillForegroundColor to not throw NPE if fill has not been set. Some other code clean up. git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@699984 13f79535-47bb-0310-9956-ffa450edef68
* applied patches #45894 and #45892, also major cleanup of XSSFSheet and ↵Yegor Kozlov2008-09-2614-290/+667
| | | | | | related classes git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@699185 13f79535-47bb-0310-9956-ffa450edef68
* misc ooxml improvements:"Yegor Kozlov2008-09-2510-152/+239
| | | | | | | | 1. preserve themes across read-write 2. properly set default properties of a new worksheet git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@698838 13f79535-47bb-0310-9956-ffa450edef68
* patch #45881 from Sourcesense: implemented cell fills and borders, added ↵Yegor Kozlov2008-09-246-254/+491
| | | | | | examples git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@698674 13f79535-47bb-0310-9956-ffa450edef68
* XSSFFont improvements from patch #45874Yegor Kozlov2008-09-2411-269/+559
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@698651 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 698047 via svnmerge from Josh Micich2008-09-2326-304/+1351
| | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r698047 | josh | 2008-09-22 17:40:22 -0700 (Mon, 22 Sep 2008) | 1 line Optimised the FormulaEvaluator to take cell dependencies into account ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@698370 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 698039 via svnmerge from Josh Micich2008-09-236-607/+377
| | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r698039 | josh | 2008-09-22 16:43:50 -0700 (Mon, 22 Sep 2008) | 1 line Some clean-up in BoundSheetRecord ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@698282 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 697562,697580,697584,697589,697595,697599 via svnmerge from Nick Burch2008-09-2316-59/+493
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r697562 | nick | 2008-09-21 18:49:20 +0100 (Sun, 21 Sep 2008) | 1 line Fix bug #45784 - Support long chart titles in SeriesTextRecords ........ r697580 | nick | 2008-09-21 19:43:49 +0100 (Sun, 21 Sep 2008) | 1 line Include the sheet name in the output of examples.XLS2CSVmra ........ r697584 | nick | 2008-09-21 19:56:32 +0100 (Sun, 21 Sep 2008) | 1 line Test to show that bug #45492 is invalid ........ r697589 | nick | 2008-09-21 20:17:41 +0100 (Sun, 21 Sep 2008) | 1 line Update hssf.extractor.ExcelExtractor to optionally output blank cells too ........ r697595 | nick | 2008-09-21 20:31:34 +0100 (Sun, 21 Sep 2008) | 1 line Improved tests to show that bugs #45062 and #44292 are fixed ........ r697599 | nick | 2008-09-21 20:50:21 +0100 (Sun, 21 Sep 2008) | 1 line Apply part of patch from bug #16936, with the rest made more HSSFCell like - Initial support for whole-row cell styling ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@698257 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 697559 via svnmerge from Nick Burch2008-09-237-0/+95
| | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r697559 | nick | 2008-09-21 18:38:39 +0100 (Sun, 21 Sep 2008) | 1 line Fix bug #45777 - Throw an exception if HSSF Footer or Header is attemped to be set too long, rather than having it break during writing out ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@698250 13f79535-47bb-0310-9956-ffa450edef68
* removing svn:mergeinfo property on SharedStringSource which was set during ↵Josh Micich2008-09-230-0/+0
| | | | | | r697548 git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@698067 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 697520 via svnmerge from Nick Burch2008-09-217-26/+249
| | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r697520 | yegor | 2008-09-21 15:14:34 +0100 (Sun, 21 Sep 2008) | 1 line patch from bug #45844: Addtional diagnostics for SlideShowRecordDumper ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@697548 13f79535-47bb-0310-9956-ffa450edef68
* Get version numbering consistentNick Burch2008-09-212-8/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@697539 13f79535-47bb-0310-9956-ffa450edef68
* Update for 3.5 beta 4 being the next versionNick Burch2008-09-213-9/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@697538 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 697145 via svnmerge from Josh Micich2008-09-193-158/+138
| | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r697145 | josh | 2008-09-19 09:34:21 -0700 (Fri, 19 Sep 2008) | 1 line Some clean-up after r696898 (partitioning common formula logic). Fixed compiler error in example XLS2CSVmra ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@697148 13f79535-47bb-0310-9956-ffa450edef68
* formula improvements from joshYegor Kozlov2008-09-193-0/+73
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@696969 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 696860,696898 via svnmerge from Josh Micich2008-09-1969-1498/+2040
| | | | | | | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk Quite a lot of manual fixing required. Also moved CellValue to top level class. ........ r696860 | josh | 2008-09-18 17:02:21 -0700 (Thu, 18 Sep 2008) | 1 line code clean-up (removed compiler warnings/unused methods) ........ r696898 | josh | 2008-09-18 19:19:58 -0700 (Thu, 18 Sep 2008) | 1 line Partitioning common formula logic. Introduced FormulaParsingWorkbook and EvaluationWorkbook interfaces to make merge with ooxml branch easier ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@696961 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 696813 via svnmerge from Josh Micich2008-09-1853-262/+394
| | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r696813 | josh | 2008-09-18 14:22:23 -0700 (Thu, 18 Sep 2008) | 1 line Partitioning common formula logic. Introduced FormulaRenderingWorkbook interface to make merge with ooxml branch easier ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@696847 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 696622-696623,696627 via svnmerge from Josh Micich2008-09-186-1/+58
| | | | | | | | | | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r696622 | yegor | 2008-09-18 03:28:24 -0700 (Thu, 18 Sep 2008) | 1 line fixed bug #45829: HSSFPicture.getImageDimension() fails when DPI of image is zero ........ r696623 | yegor | 2008-09-18 03:45:00 -0700 (Thu, 18 Sep 2008) | 1 line fixed bug 45815: bit mask values inStyleTextPropAtom are not preserved across read-write ........ r696627 | yegor | 2008-09-18 03:58:39 -0700 (Thu, 18 Sep 2008) | 1 line patch from bug #45814: Specify RecordType for slide show Handout ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@696839 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions 696501 via svnmerge fromJosh Micich2008-09-185-38/+18
| | | | | | | | | | | | | https://svn.apache.org/repos/asf/poi/trunk ........ r696501 | josh | 2008-09-17 15:35:09 -0700 (Wed, 17 Sep 2008) | 1 line Small tweak to NamePtg and Ref3DPtg ........ git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@696831 13f79535-47bb-0310-9956-ffa450edef68
* removed extra line that caused compilation errorYegor Kozlov2008-09-181-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@696762 13f79535-47bb-0310-9956-ffa450edef68
* 1. initial support for rich text in xssf"Yegor Kozlov2008-09-1834-993/+1552
| | | | | | | | | | 2. cleaned common ooxml-ole2 interfaces, removed ole2-specific stuff 3. added new examples from the quick guide 4. misc xssf refactoring, tending to use enums intstead of final static constants 5. refactored XSSFFont 6. included test-ooxml and jar-ooxml in the dist target, they are part of release and should be there git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@696584 13f79535-47bb-0310-9956-ffa450edef68