/[Apache-SVN]
ViewVC logotype

Revision 709262


Jump to revision: Previous Next
Author: josh
Date: Thu Oct 30 22:06:10 2008 UTC (15 years, 5 months ago)
Changed paths: 39
Log Message:
Merged revisions 708385,708996,709054,709217,709221,709235 via svnmerge from 
https://svn.apache.org/repos/asf/poi/trunk

........
  r708385 | josh | 2008-10-27 16:44:44 -0700 (Mon, 27 Oct 2008) | 1 line
  
  Small fix for bug in RecordInputStream.readAllContinuedRemainder()  introduced in r707778.  It seems like only BiffViewer was affected.
........
  r708996 | josh | 2008-10-29 13:13:58 -0700 (Wed, 29 Oct 2008) | 1 line
  
  Allowed for quad-byte padding alignment on ObjRecord
........
  r709054 | josh | 2008-10-29 17:21:24 -0700 (Wed, 29 Oct 2008) | 1 line
  
  removed obsolete methods
........
  r709217 | josh | 2008-10-30 10:56:34 -0700 (Thu, 30 Oct 2008) | 1 line
  
  Fixed compiler warnings / simplified code
........
  r709221 | josh | 2008-10-30 11:33:35 -0700 (Thu, 30 Oct 2008) | 1 line
  
  Optimised slow test case (after reviewing original purpose)
........
  r709235 | josh | 2008-10-30 13:17:04 -0700 (Thu, 30 Oct 2008) | 1 line
  
  Fix for bug 15716 - - converted Ptg arrays into Formula objects to optimise memory usage
........


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/record/ArrayRecord.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/CFRuleRecord.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/DVRecord.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/ExternalNameRecord.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/FormulaRecord.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/NameRecord.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/ObjRecord.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/SharedFormulaRecord.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/SharedValueRecordBase.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/TableRecord.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/aggregates/FormulaRecordAggregate.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/aggregates/RecordAggregate.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/aggregates/RowRecordsAggregate.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/aggregates/ValueRecordsAggregate.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/cf/BorderFormatting.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/record/cf/PatternFormatting.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/usermodel/HSSFBorderFormatting.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/HSSFEvaluationWorkbook.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/usermodel/HSSFPatternFormatting.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/util/CellRangeAddress8Bit.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/hssf/util/CellRangeAddressList.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/Formula.java
(Copied from poi/trunk/src/java/org/apache/poi/ss/formula/Formula.java, r709235)
added
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/formula/SheetRefEvaluator.java modified , props changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/util/CellRangeAddress.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/ss/util/CellRangeAddressList.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/util/LittleEndianByteArrayOutputStream.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/util/LittleEndianOutput.java modified , text changed
Directorypoi/branches/ooxml/src/java/org/apache/poi/util/LittleEndianOutputStream.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/TestNameRecord.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/TestObjRecord.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/record/TestSharedFormulaRecord.java modified , text changed
Directorypoi/branches/ooxml/src/testcases/org/apache/poi/hssf/usermodel/TestWorkbook.java modified , text changed

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26