diff options
author | Nick Burch <nick@apache.org> | 2007-10-15 10:43:37 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2007-10-15 10:43:37 +0000 |
commit | 1a2cdcd156a0f97acff5856a85a421b336768483 (patch) | |
tree | 2224fd53ee38fdde36cbe2bcf1f1cbc78cebac3f | |
parent | 05b35ebaf370b337d439cb142bd3283307ff2894 (diff) | |
download | poi-1a2cdcd156a0f97acff5856a85a421b336768483.tar.gz poi-1a2cdcd156a0f97acff5856a85a421b336768483.zip |
HDGF progress update
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@584723 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/documentation/content/xdocs/changes.xml | 3 | ||||
-rwxr-xr-x | src/documentation/content/xdocs/hdgf/index.xml | 8 | ||||
-rw-r--r-- | src/documentation/content/xdocs/status.xml | 4 |
3 files changed, 10 insertions, 5 deletions
diff --git a/src/documentation/content/xdocs/changes.xml b/src/documentation/content/xdocs/changes.xml index 2416654200..e4e67bee6d 100644 --- a/src/documentation/content/xdocs/changes.xml +++ b/src/documentation/content/xdocs/changes.xml @@ -17,7 +17,6 @@ limitations under the License. ==================================================================== --> -<!-- Don't forget to update status.xml too! --> <!DOCTYPE changes PUBLIC "-//APACHE//DTD Changes V1.1//EN" "./dtd/changes-v11.dtd"> <changes> @@ -35,7 +34,9 @@ <person id="YK" name="Yegor Kozlov" email="yegor@apache.org"/> </devs> + <!-- Don't forget to update status.xml too! --> <release version="3.0.2-FINAL" date="2007-??-??"> + <action dev="POI-DEVELOPERS" type="add">Improvements to the LZW compression engine used by HDGF</action> <action dev="POI-DEVELOPERS" type="add">HSSFPicture.resize() - a handy method to reset a picture to its original width and height</action> <action dev="POI-DEVELOPERS" type="add">Add a getSheetIndex(HSSFSheet) method to HSSFWorkbook, and allow a HSSFSheet to get at its parent HSSFWorkbook</action> <action dev="POI-DEVELOPERS" type="add">Move POIDocument out of Scratchpad, and update HSSFWorkbook to use it</action> diff --git a/src/documentation/content/xdocs/hdgf/index.xml b/src/documentation/content/xdocs/hdgf/index.xml index f14bb1e766..d36f976287 100755 --- a/src/documentation/content/xdocs/hdgf/index.xml +++ b/src/documentation/content/xdocs/hdgf/index.xml @@ -68,9 +68,11 @@ following are the steps that would need to be taken to implement it.</p> <ol> - <li>Re-write the decompression support in LZW4HDGF to be - less opaque, and also under the ASL.</li> - <li>Add compression support to the new LZw4HDGF.</li> + <li>Re-write the decompression support in LZW4HDGF as + HDGFLZW, which will be much better documented, and also + under the ASL. <strong>Completed October 2007</strong></li> + <li>Add compression support to HDGFLZW. + <strong>In progress</strong></li> <li>Have HDGF just write back the raw bytes it read in, and have a test to ensure the file is un-changed.</li> <li>Have HDGF generate the bytes to write out from the diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index 074b386de0..92050159aa 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -17,7 +17,6 @@ limitations under the License. ==================================================================== --> -<!-- Don't forget to update changes.xml too! --> <status> <developers> <!-- in strict alphabetical order --> @@ -31,8 +30,11 @@ <person id="YK" name="Yegor Kozlov" email="yegor@apache.org"/> </developers> + <!-- Don't forget to update changes.xml too! --> <changes> <release version="3.0.2-FINAL" date="2007-??-??"> + <action dev="POI-DEVELOPERS" type="add">Improvements to the LZW compression engine used by HDGF</action> + <action dev="POI-DEVELOPERS" type="add">HSSFPicture.resize() - a handy method to reset a picture to its original width and height</action> <action dev="POI-DEVELOPERS" type="add">Add a getSheetIndex(HSSFSheet) method to HSSFWorkbook, and allow a HSSFSheet to get at its parent HSSFWorkbook</action> <action dev="POI-DEVELOPERS" type="add">Move POIDocument out of Scratchpad, and update HSSFWorkbook to use it</action> <action dev="POI-DEVELOPERS" type="fix">43399 - [PATCH] - Fix for Cell References for rows > 32678</action> |