499 Commits (2fbe2f48a15ea0aaca4315b12f7b1365ceb6d549)

Author SHA1 Message Date
  Nick Burch 2fbe2f48a1 Fix bug #49931 - Avoid concurrency problems when re-ordering multiple HSSF header records for a PageSettingsBlock 13 years ago
  Nick Burch 97c27ca476 Fix bug #49765 - Fix XWPFDocument.addPicture so that it correctly sets up relationships 13 years ago
  Nick Burch 8b2f2bcff6 Work inspired by bug #48018 - get HWPF lists more consistent in read vs write, and preserve order as apparently that matters. Includes a fair number of list related unit tests, but not for everything 13 years ago
  Nick Burch d71e92ace2 Apply patch from bug #49820 - Fix HWPF paragraph levels, so that outline levels can be properly fetched 13 years ago
  Nick Burch 3e1adda4ed Hopefully fix bug #47271 - Avoid infinite loops on broken HWPF documents with a corrupt CHP style with a parent of itself 13 years ago
  Nick Burch 3ed873b593 Fix bug #49936 - Handle HWPF documents with problematic HeaderStories better 13 years ago
  Nick Burch 8cd8659010 Fix support for sections in old word 6 / word 95 files 13 years ago
  Nick Burch 0aa3daebee Fix bug #49941 - Correctly handle space preservation of XSSFRichTextRuns when applying fonts to parts of the string 13 years ago
  Nick Burch 6b1a10ac97 Correct XWPFRun detection of bold/italic in a paragraph with multiple runs of different styles 13 years ago
  Nick Burch 3d0143a196 Link XWPFPicture to XWPFRun, so that embedded pictures can be access from where they live in the text stream 13 years ago
  Nick Burch fa56cf7435 XWPF paragraph improvements - Make XWPFParagraph make more use of XWPFRun, and less on internal StringBuffers. Also improve handling of Hyperlinks inside XWPFParagraph objects through XWPFHyperlinkRun 13 years ago
  Nick Burch db4de8a4f3 Add a getBodyElements() method to XWPF IBody, to make access to embedded paragraphs and tables easier, and a few tidy-ups 13 years ago
  Nick Burch 0a3ac7d1e3 More XSLFRelation entries for common .pptx file parts 13 years ago
  Yegor Kozlov 45f1391ee7 fixed evaluation of shared formulas in XSSF, see Bugzilla 49872 13 years ago
  Yegor Kozlov 0a97b41c1d avoid corruption of XSSFWorkbook after removing all merged cells from sheet, see Bugzilla 49895 13 years ago
  Yegor Kozlov eac4e0b485 fixed inconsistent behaviour between HSSF and XSSF when creating consecutive names, see Bugzilla 49907 13 years ago
  Nick Burch 7d24de3173 Add getMimeType() method to HWPF Picture, and fix some generics warnings 13 years ago
  Maxim Valyanskiy a6fdb05e5d update status.xml (code for reading Ole10Native data) 13 years ago
  Nick Burch 8d475c729d Add getMimeType() method to HSSF/XSSF PictureData, alongside existing file extension 13 years ago
  Yegor Kozlov 6d0d44d0aa allow sheet names longer than 31 chars in XSSF, enforce name uniqueness on the first 31 chars 13 years ago
  Yegor Kozlov 409b9af380 improved API for hiding sheets, see Bugzilla 49878 14 years ago
  Yegor Kozlov 7bc987afea fixed XSSFWorkbook.createSheet to throw exception if sheet name begins or ends with a single quote ('), see Bugzilla 49875 14 years ago
  Yegor Kozlov e99294ebc5 fixed XSSFFormulaEvaluator to support blank cells, added BaseTestFormulaEvaluator - a common superclass for testing implementations of FormulaEvaluator 14 years ago
  Yegor Kozlov ab64ce8ec4 added a getter for _iStartAt in ListFormatOverrideLevel 14 years ago
  Yegor Kozlov 6f9470cc89 change cell type to error when setting Double.NaN or Infinities, see Bugzilla 49761 14 years ago
  Yegor Kozlov 5fc4b570ca ensure that CTNumPr is included in poi-ooxml-schemas.jar (Bugzilla 49833) 14 years ago
  Yegor Kozlov d6e6f426f5 fixed LEFT and RIGHT to return #VALUE! when called with a negative operand, see Bugzilla 49841 14 years ago
  Yegor Kozlov d959321d72 fixed evaluation of XSSF workbooks containing formulas with reference errors (#REF!), see Bugzilla 49783 14 years ago
  Yegor Kozlov b98b01b29b fixed fetching names of user defined styles, see Bugzila 49751 14 years ago
  Yegor Kozlov faa64fa1f4 support for protecting a XSSF workbook, see Bugzilla #48900 14 years ago
  Yegor Kozlov be31b22715 fixed FormulaParser to correctly process defined names with underscore, see bugzilla 49725 14 years ago
  Yegor Kozlov ea9c0b028f added support for RANDBETWEEN(), see Bugzilla 48526 14 years ago
  Yegor Kozlov 125c86b6de fixed OperandResolver to correctly handle inputs with leading decimal place, see Bug #49723 14 years ago
  Yegor Kozlov fc6fe5f375 initial support for excel auto-filters 14 years ago
  Nick Burch 6387556b49 Prepare for 3.7 beta 2 14 years ago
  Nick Burch 818bc29696 Fix bug #47990 - Support for .msg attachments within a MAPIMessage .msg 14 years ago
  Nick Burch ddbddfafa4 Improve handling and warnings when closing OPCPackage objects 14 years ago
  Nick Burch cc8c15ca6c Fix bug #49702 - Correct XSSFWorkbook.getNumCellStyles to check the right styles list 14 years ago
  Nick Burch ba5f6a5cf3 Add patch from bug #49690 - Add WorkbookUtil, which provies a way of generating valid sheet names 14 years ago
  Nick Burch 7c0f62f764 Fix bug #49694 - Use DataFormatter when autosizing columns, to better match the real display width of formatted cells 14 years ago
  Nick Burch 62499bc465 Fix bug #49441 - Allow overriding and guessing of HSMF non-unicode string encodings 14 years ago
  Nick Burch 452fa02182 Fix bug #49689 - Allow the setting of user style names on newly created HSSF cell styles 14 years ago
  Nick Burch fbff3e557b Refactor to make it easier to tell which content types each POIXMLTextExtractor handles 14 years ago
  Yegor Kozlov f575bfa013 Added clone support for UserSView* and Feat* families of records, see bug #49649 14 years ago
  Yegor Kozlov 8ddb1b6dbd Support for escaped unicode characters in Shared String Table, see bug #49653 14 years ago
  Yegor Kozlov e46e2c44a7 prevent ArrayIndexOutOfBoundException in UnknowEscherRecord, see bug #49579 14 years ago
  Yegor Kozlov 247f441b31 preserve leading and trailing white spaces in XWPFRun, see bug #49593 14 years ago
  Yegor Kozlov c9f9d48ff8 insert the content of fldSimple fields into the XWPFWordTextExtractor output, see bug #49455 14 years ago
  Yegor Kozlov af0406cd10 Fixed parsing formulas containing defined names beginning with an underscore, see Bug 9640 14 years ago
  Yegor Kozlov b735d6736a support for POISSON function, see bug #49538 14 years ago