summaryrefslogtreecommitdiffstats
path: root/src/java
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch from Trejkaz from bug #43116 - Fix for Escher handling of embeded OLE2 ↵Nick Burch2007-08-151-1/+1
| | | | | | documents git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@566196 13f79535-47bb-0310-9956-ffa450edef68
* Patch from bug #43108 - when fetching system properties, use sensible ↵Nick Burch2007-08-153-8/+27
| | | | | | defaults if we're not able to access them git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@566183 13f79535-47bb-0310-9956-ffa450edef68
* Bug 43090: autoSizeColumn can calculate negative sizes for the column width ↵Yegor Kozlov2007-08-101-0/+3
| | | | | | due to a cast from integer to short git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@564689 13f79535-47bb-0310-9956-ffa450edef68
* Further enhancements to Font Metrics support, wrt fonts with bold/italic ↵Nick Burch2007-08-092-8/+37
| | | | | | varients, such as dialog (plus tests) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@564263 13f79535-47bb-0310-9956-ffa450edef68
* If the Escher layer is asked to draw text with an invalid font, throw a much ↵Nick Burch2007-08-091-0/+8
| | | | | | more useful error. Plus test git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@564219 13f79535-47bb-0310-9956-ffa450edef68
* Have HSSFDateUtil.isCellDateFormatted make use of ↵Nick Burch2007-08-063-4/+61
| | | | | | HSSFDateUtils.isADateFormat. A few improvements to isADateFormat, and to HSSFCellStyle to allow calling of it. Plus tests git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@563129 13f79535-47bb-0310-9956-ffa450edef68
* fixed Bug 42999: HSSFPatriarch positioning problemYegor Kozlov2007-08-031-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@562536 13f79535-47bb-0310-9956-ffa450edef68
* you can now protect files with writeProtectWorkbookAndrew C. Oliver2007-07-186-6/+322
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@557333 13f79535-47bb-0310-9956-ffa450edef68
* keep the javadoc compiler quietYegor Kozlov2007-07-024-9/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@552525 13f79535-47bb-0310-9956-ffa450edef68
* oops...forgot theseAndrew C. Oliver2007-07-022-0/+259
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@552522 13f79535-47bb-0310-9956-ffa450edef68
* Now can protect sheets with a password. So everyone may cease whining about itAndrew C. Oliver2007-07-025-30/+208
| | | | | | | already :-) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@552425 13f79535-47bb-0310-9956-ffa450edef68
* Yet more javadoc fixesNick Burch2007-06-2920-63/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@551914 13f79535-47bb-0310-9956-ffa450edef68
* Lots more javadoc warning fixesNick Burch2007-06-29129-563/+148
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@551912 13f79535-47bb-0310-9956-ffa450edef68
* Some more fixes for javadoc warningsNick Burch2007-06-295-6/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@551908 13f79535-47bb-0310-9956-ffa450edef68
* Restored the cast: JDK 1.4 needs it. :-(Rainer Klute2007-06-261-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@550886 13f79535-47bb-0310-9956-ffa450edef68
* make the code compatible with JDK 1.4.2Yegor Kozlov2007-06-261-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@550726 13f79535-47bb-0310-9956-ffa450edef68
* Removed unnecessary cast.Rainer Klute2007-06-251-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@550566 13f79535-47bb-0310-9956-ffa450edef68
* Consistency check added when reading property set stream. An ↵Rainer Klute2007-06-231-0/+24
| | | | | | IllegalPropertyDataException is thrown if the property set stream is larger than it claims to be. git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@550021 13f79535-47bb-0310-9956-ffa450edef68
* Add a new method on HSSFDateUtil of isADateFormat, which will cope with both ↵Nick Burch2007-06-171-2/+38
| | | | | | internal excel date formats, and custom date formats the are for dates (plus test) git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@548044 13f79535-47bb-0310-9956-ffa450edef68
* replace Jakarta POI --> Apache POI in package.html filesYegor Kozlov2007-06-0617-17/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@544742 13f79535-47bb-0310-9956-ffa450edef68
* Replace the single method JavaDoc copied from the JDK with our own ↵Nick Burch2007-06-042-16/+34
| | | | | | documentation, which is possibly also easier to grok git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@544197 13f79535-47bb-0310-9956-ffa450edef68
* http://issues.apache.org/bugzilla/show_bug.cgi?id=23951Andrew C. Oliver2007-06-042-1/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@544151 13f79535-47bb-0310-9956-ffa450edef68
* Detect, and report a meaningful error, if we come across an Office 2007 XML ↵Nick Burch2007-04-232-0/+44
| | | | | | document git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@531419 13f79535-47bb-0310-9956-ffa450edef68
* applied the patch submitted in Bug 38976: added createPicture to HSSFShapeGroupYegor Kozlov2007-04-161-0/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@529206 13f79535-47bb-0310-9956-ffa450edef68
* applied the patch submitted in Bug 41223: Simple image extraction for ↵Yegor Kozlov2007-04-162-11/+174
| | | | | | HSSFWorkbook git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@529196 13f79535-47bb-0310-9956-ffa450edef68
* Fix for bug 41946: remember if the complex part of an array property is ↵Yegor Kozlov2007-04-121-10/+20
| | | | | | empty and write back the original empty data git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@527816 13f79535-47bb-0310-9956-ffa450edef68
* fixed bug 41761: NPE when serializing a workbook with empty rows Yegor Kozlov2007-03-202-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@520416 13f79535-47bb-0310-9956-ffa450edef68
* improved work with cell commentsYegor Kozlov2007-03-122-35/+56
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@517261 13f79535-47bb-0310-9956-ffa450edef68
* fix amateur hour coding mistake Andrew C. Oliver2007-03-021-5/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@513609 13f79535-47bb-0310-9956-ffa450edef68
* http://issues.apache.org/bugzilla/show_bug.cgi?id=40548Andrew C. Oliver2007-03-021-5/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@513605 13f79535-47bb-0310-9956-ffa450edef68
* Allow user defined named ranges. Calling super doesn't seem to break ↵Andrew C. Oliver2007-03-021-1/+4
| | | | | | | | | | anything and throwing the exception prevents writing rationale files with user defined named ranges... Open to discussion if anyone knows why we're being so fickle here... git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@513604 13f79535-47bb-0310-9956-ffa450edef68
* not autofit for formula cellsYegor Kozlov2007-02-261-2/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@511909 13f79535-47bb-0310-9956-ffa450edef68
* support for auto-sizing worksheet columnsYegor Kozlov2007-02-131-0/+99
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@507076 13f79535-47bb-0310-9956-ffa450edef68
* changing attributes of existing cell comments is reflected after saveYegor Kozlov2007-01-312-5/+24
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@501875 13f79535-47bb-0310-9956-ffa450edef68
* Add standard licence header for src/java directoryMark Thomas2007-01-1526-21/+455
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@496526 13f79535-47bb-0310-9956-ffa450edef68
* License comment fixed.Rainer Klute2007-01-151-17/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@496419 13f79535-47bb-0310-9956-ffa450edef68
* Yegor's patch from bug #41242Nick Burch2007-01-051-0/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@493098 13f79535-47bb-0310-9956-ffa450edef68
* Comment support from bug 41198, patch from YegorNick Burch2007-01-0113-7/+772
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@491629 13f79535-47bb-0310-9956-ffa450edef68
* Switching from ASL 1.1 to AL 2.0 - no one had a reason for these being this ↵Henri Yandell2006-12-3110-520/+150
| | | | | | way on the mailing list git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@491503 13f79535-47bb-0310-9956-ffa450edef68
* Applied copy2license script to the files that were converted by dos2unix. ↵Henri Yandell2006-12-224-20/+24
| | | | | | ant jar continues to pass. git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@489762 13f79535-47bb-0310-9956-ffa450edef68
* Applying dos2unix on some of the Java files. The copy2license script isn't ↵Henri Yandell2006-12-224-389/+389
| | | | | | picking up the dos line endings. Hopefully not a problem for anyone git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@489760 13f79535-47bb-0310-9956-ffa450edef68
* Applying the copy2license.pl script (with tiny modification to allow for ↵Henri Yandell2006-12-22412-2060/+2472
| | | | | | more whitespace than it expects in the POI header) to all files. ant jar succeeds, and the svn diff has been verified by eye. Still more files to do, this is the first pass. git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@489730 13f79535-47bb-0310-9956-ffa450edef68
* When sorting the contents of a directory, do so in a way that doesn't upset ↵Nick Burch2006-12-121-3/+30
| | | | | | Excel when it comes to Macros. Correct logic from Bill, and fix+test from Yegor. See bug #39234 git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@486265 13f79535-47bb-0310-9956-ffa450edef68
* Support Excel files which contain a WORKBOOK entry, rather than the usual ↵Nick Burch2006-11-301-1/+23
| | | | | | Workbook one. Fixes bug 40840 git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@480987 13f79535-47bb-0310-9956-ffa450edef68
* Bug 30635: getLastCellNum return last cell num + 1. Made this clear in javadoc.Jason Height2006-09-112-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@442183 13f79535-47bb-0310-9956-ffa450edef68
* BUG 27496: get/setPageBreak and get/getColumnBreak now work correctly if a ↵Jason Height2006-09-082-19/+42
| | | | | | template excel file is loaded which does not contain PaneRecords is loaded. git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@441652 13f79535-47bb-0310-9956-ffa450edef68
* replaced use of String.contains(..) with String.indexOf(..) >= 0 to make it ↵Amol S. Deshmukh2006-08-291-1/+1
| | | | | | JDK1.4 compatible git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@438085 13f79535-47bb-0310-9956-ffa450edef68
* Just removed a bunch of unused imports etc. Reduces eclipse warningsJason Height2006-08-299-21/+21
| | | | | | Jason git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@437998 13f79535-47bb-0310-9956-ffa450edef68
* bug 23631: support for getting the current pane information in excelJason Height2006-08-295-7/+144
| | | | git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@437930 13f79535-47bb-0310-9956-ffa450edef68
* bug 31044: Corrected parsing of references which contain double sheet names ↵Jason Height2006-08-281-2/+13
| | | | | | | | ie 'Sheet 1'!F1:'Sheet 1'!F10. Although i have hacked it a bit such that it gets translated to 'Sheet 1'!F1:F10 git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@437684 13f79535-47bb-0310-9956-ffa450edef68