/[Apache-SVN]
ViewVC logotype

Revision 618325


Jump to revision: Previous Next
Author: ugo
Date: Mon Feb 4 16:55:43 2008 UTC (16 years, 3 months ago)
Changed paths: 69
Log Message:
Merged revisions 615190-618235 via svnmerge from 
https://svn.apache.org/repos/asf/poi/trunk

........
  r615190 | nick | 2008-01-25 12:52:39 +0100 (Fri, 25 Jan 2008) | 1 line
  
  Correctly handle the last paragraph via a fix to TableCell - patch from bug #44292
........
  r615255 | nick | 2008-01-25 17:15:49 +0100 (Fri, 25 Jan 2008) | 1 line
  
  Don't swap AreaPtg references from relative to absolute, by correctly processing the fields. Patch from bug #44293
........
  r615259 | nick | 2008-01-25 17:33:59 +0100 (Fri, 25 Jan 2008) | 1 line
  
  Add a test to show the bug #42618 appears to be incorrect
........
  r615310 | yegor | 2008-01-25 20:27:56 +0100 (Fri, 25 Jan 2008) | 1 line
  
  commented failing test42618()
........
  r615315 | yegor | 2008-01-25 20:37:22 +0100 (Fri, 25 Jan 2008) | 1 line
  
  fix bug #44296: HSLF Not Extracting Slide Background Image
........
  r615610 | yegor | 2008-01-27 15:55:32 +0100 (Sun, 27 Jan 2008) | 1 line
  
  fix bug #44297: IntPtg must operate with unsigned short. Reading signed short results in incorrect formula calculation.
........
  r615769 | yegor | 2008-01-28 09:53:19 +0100 (Mon, 28 Jan 2008) | 1 line
  
  start a new POI 3.1 section in the change log
........
  r615859 | nick | 2008-01-28 13:18:12 +0100 (Mon, 28 Jan 2008) | 1 line
  
  Mostly fix bug 42618 (really this time...) - can now open the file properly, but getCellFormula() is still playing up (bug #44306 opened for this)
........
  r617156 | nick | 2008-01-31 17:41:53 +0100 (Thu, 31 Jan 2008) | 1 line
  
  Lots of documentation updates, to make it clearer how the code actually works
........
  r617167 | nick | 2008-01-31 18:30:16 +0100 (Thu, 31 Jan 2008) | 1 line
  
  Convert HSSFEventFactory to using the new HSSFRecordStream, which returns fully-formed HSSFRecords. HSSFRecordStream allows for pull-style eventusermodel processing
........
  r617483 | nick | 2008-02-01 13:13:08 +0100 (Fri, 01 Feb 2008) | 1 line
  
  Tweak the javadoc so it's clearer on the overview what the getFormat method does
........
  r617487 | nick | 2008-02-01 13:29:38 +0100 (Fri, 01 Feb 2008) | 1 line
  
  Improvements to how SystemOutLogger and CommonsLogger log messages with exceptions, and avoid an infinite loop with certain log messages with exceptions - triggered by bug #44326
........
  r617491 | nick | 2008-02-01 14:02:06 +0100 (Fri, 01 Feb 2008) | 1 line
  
  Patch from bug #44336 - correctly escape sheet names in formula references, including tests for this, and fixes to old tests that were expecting the un-escaped sheet names
........
  r617516 | nick | 2008-02-01 16:20:55 +0100 (Fri, 01 Feb 2008) | 1 line
  
  Make a start on the hyperlink record support - not finished yet though, so not enabled
........
  r617523 | nick | 2008-02-01 16:41:32 +0100 (Fri, 01 Feb 2008) | 1 line
  
  Get the Hyperlink record code so that it doesn't break any existing tests, and add in (no usermodel support yet though)
........
  r617555 | nick | 2008-02-01 17:52:58 +0100 (Fri, 01 Feb 2008) | 1 line
  
  More Hyperlink support. Doesn't end up in HSSFCell just yet, as the records are in the wrong bit of the file, so don't get associated with the sheet. All tests still passing though
........
  r617834 | yegor | 2008-02-02 18:06:14 +0100 (Sat, 02 Feb 2008) | 1 line
  
  usermodel support for excel hyperlinks
........
  r618230 | nick | 2008-02-04 11:48:29 +0100 (Mon, 04 Feb 2008) | 1 line
  
  Implement CountA, CountIf, Index, Rows and Columns functions. Patch from Josh Micich in bug #44345
........
  r618235 | nick | 2008-02-04 12:14:49 +0100 (Mon, 04 Feb 2008) | 1 line
  
  Test file with hyperlinks on many sheets, of different types
........


Changed paths

Path Details
Directorypoi/branches/ooxml/ modified , props changed
Directorypoi/branches/ooxml/build.xml modified , text changed
Directorypoi/branches/ooxml/src/documentation/content/xdocs/changes.xml modified , text changed
Directorypoi/branches/ooxml/src/documentation/content/xdocs/status.xml modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/dev/BiffViewer.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/eventusermodel/HSSFEventFactory.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/eventusermodel/HSSFRecordStream.java
(Copied from poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFRecordStream.java, r618235)
added
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/model/Workbook.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/HyperlinkRecord.java
(Copied from poi/trunk/src/java/org/apache/poi/hssf/record/HyperlinkRecord.java, r618235)
added
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/RecordFactory.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/RecordInputStream.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/Area3DPtg.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/AreaPtg.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/ConcatPtg.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/IntPtg.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/Ptg.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/RangePtg.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/Ref3DPtg.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/SheetNameFormatter.java
(Copied from poi/trunk/src/java/org/apache/poi/hssf/record/formula/SheetNameFormatter.java, r618235)
added
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/UnknownPtg.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/usermodel/HSSFDataFormat.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/usermodel/HSSFHyperlink.java
(Copied from poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFHyperlink.java, r618235)
added
Directorypoi/branches/ooxml/src/java/org/apache/poi/util/CommonsLogger.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/util/POILogger.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/util/SystemOutLogger.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/src/org/apache/poi/hslf/model/Fill.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/src/org/apache/poi/hslf/model/Picture.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/src/org/apache/poi/hslf/model/Shape.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/src/org/apache/poi/hslf/model/Slide.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/src/org/apache/poi/hssf/record/formula/functions/Columns.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/src/org/apache/poi/hssf/record/formula/functions/Counta.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/src/org/apache/poi/hssf/record/formula/functions/Countif.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/src/org/apache/poi/hssf/record/formula/functions/Index.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/src/org/apache/poi/hssf/record/formula/functions/Rows.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/src/org/apache/poi/hwpf/usermodel/TableRow.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hslf/data/44296.ppt
(Copied from poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/data/44296.ppt, r618235)
added
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestBugs.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hssf/data/44297.xls
(Copied from poi/trunk/src/scratchpad/testcases/org/apache/poi/hssf/data/44297.xls, r618235)
added
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/AllIndividualFunctionEvaluationTests.java
(Copied from poi/trunk/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/AllIndividualFunctionEvaluationTests.java, r618235)
added
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/EvalFactory.java
(Copied from poi/trunk/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/EvalFactory.java, r618235)
added
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/NumericFunctionInvoker.java
(Copied from poi/trunk/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/NumericFunctionInvoker.java, r618235)
added
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/TestCountFuncs.java
(Copied from poi/trunk/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/TestCountFuncs.java, r618235)
added
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/TestIndex.java
(Copied from poi/trunk/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/TestIndex.java, r618235)
added
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/TestRowCol.java
(Copied from poi/trunk/src/scratchpad/testcases/org/apache/poi/hssf/record/formula/functions/TestRowCol.java, r618235)
added
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hssf/usermodel/TestBug44297.java
(Copied from poi/trunk/src/scratchpad/testcases/org/apache/poi/hssf/usermodel/TestBug44297.java, r618235)
added
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hssf/usermodel/TestFormulaEvaluatorDocs.java modified , text changed
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hwpf/data/Bug44292.doc
(Copied from poi/trunk/src/scratchpad/testcases/org/apache/poi/hwpf/data/Bug44292.doc, r618235)
added
Directorypoi/branches/ooxml/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestProblems.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/HSSFTests.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/data/HyperlinksOnManySheets.xls
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/data/HyperlinksOnManySheets.xls, r618235)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/data/SimpleWithChoose.xls
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/data/SimpleWithChoose.xls, r618235)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/data/TestDataValidation.xls modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/data/WithHyperlink.xls
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/data/WithHyperlink.xls, r618235)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/data/WithTwoHyperLinks.xls
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/data/WithTwoHyperLinks.xls, r618235)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/eventusermodel/TestHSSFEventFactory.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/model/TestFormulaParser.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/TestFormulaRecord.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/TestHyperlinkRecord.java
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/record/TestHyperlinkRecord.java, r618235)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/AbstractPtgTestCase.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/AllFormulaTests.java
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/AllFormulaTests.java, r618235)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/TestArea3DPtg.java
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/TestArea3DPtg.java, r618235)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/TestAreaPtg.java
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/TestAreaPtg.java, r618235)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/TestFuncPtg.java modified , props changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/TestRef3DPtg.java
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/TestRef3DPtg.java, r618235)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/TestSheetNameFormatter.java
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/TestSheetNameFormatter.java, r618235)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/usermodel/TestNamedRange.java modified , text changed

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26