/[Apache-SVN]
ViewVC logotype

Revision 700234


Jump to revision: Previous Next
Author: josh
Date: Mon Sep 29 20:09:09 2008 UTC (15 years, 8 months ago)
Changed paths: 45
Log Message:
Merged revisions 699178,699487,699489,699761 via svnmerge from 
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
........


Changed paths

Path Details
Directorypoi/branches/ooxml/ modified , props 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/model/LinkTable.java modified , text changed
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/ExternSheetRecord.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/SupBookRecord.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/AreaI.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/AreaPtgBase.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/AttrPtg.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/ExternSheetNameResolver.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 modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/formula/eval/RangeEval.java
(Copied from poi/trunk/src/java/org/apache/poi/hssf/record/formula/eval/RangeEval.java, r699761)
added
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/usermodel/HSSFEvaluationWorkbook.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/usermodel/HSSFFormulaEvaluator.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/util/AreaReference.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/util/CellReference.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/CellLocation.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/CollaboratingWorkbooksEnvironment.java
(Copied from poi/trunk/src/java/org/apache/poi/ss/formula/CollaboratingWorkbooksEnvironment.java, r699761)
added
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/EvaluationCache.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/EvaluationWorkbook.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/ExternSheetReferenceToken.java
(Copied from poi/trunk/src/java/org/apache/poi/ss/formula/ExternSheetReferenceToken.java, r699761)
added
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/FormulaParser.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/FormulaParsingWorkbook.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/FormulaRenderingWorkbook.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/OperandClassTransformer.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/OperationEvaluatorFactory.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/WorkbookEvaluator.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/util/AreaReference.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/util/CellReference.java modified , text changed
Directorypoi/branches/ooxml/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationWorkbook.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/multibookFormulaA.xls
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/data/multibookFormulaA.xls, r699761)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/data/multibookFormulaB.xls
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/data/multibookFormulaB.xls, r699761)
added
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/TestSupBookRecord.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/TestSheetNameFormatter.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/eval/AllFormulaEvalTests.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/eval/TestFormulaBugs.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/formula/eval/TestRangeEval.java
(Copied from poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/eval/TestRangeEval.java, r699761)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/ss/formula/AllSSFormulaTests.java
(Copied from poi/trunk/src/testcases/org/apache/poi/ss/formula/AllSSFormulaTests.java, r699761)
added
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/ss/formula/TestWorkbookEvaluator.java
(Copied from poi/trunk/src/testcases/org/apache/poi/ss/formula/TestWorkbookEvaluator.java, r699761)
added

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26