glens       2003/07/13 06:16:33

  Modified:    .        Tag: REL_2_BRANCH build.xml
               src/documentation/content/xdocs Tag: REL_2_BRANCH status.xml
               src/documentation/resources/images Tag: REL_2_BRANCH
                        group-logo.gif
  Added:       src/documentation/content/xdocs/dtd Tag: REL_2_BRANCH
                        book-cocoon-v10.dtd changes-v11.dtd
                        document-v11.dtd faq-v11.dtd javadoc-v04draft.dtd
                        specification-v11.dtd todo-v11.dtd
  Removed:     src/documentation/xdocs/dtd Tag: REL_2_BRANCH
                        book-cocoon-v10.dtd changes-v11.dtd
                        document-v11.dtd faq-v11.dtd javadoc-v04draft.dtd
                        specification-v11.dtd todo-v11.dtd
  Log:
  A few things for the 2.0-pre2 release.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.41.2.3  +23 -16    jakarta-poi/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/build.xml,v
  retrieving revision 1.41.2.2
  retrieving revision 1.41.2.3
  diff -u -r1.41.2.2 -r1.41.2.3
  --- build.xml 2 Jun 2003 08:03:30 -0000       1.41.2.2
  +++ build.xml 13 Jul 2003 13:16:32 -0000      1.41.2.3
  @@ -6,7 +6,7 @@
           Glen Stampoultzis   glens at apache.org
   
   
  -    This build was tested with and 1.5.3 although it will probably work with
  +    This build was tested with ant 1.5.3 although it will probably work with
       other versions.  The following jar files should be installed
       into the ant lib directory:
   
  @@ -83,7 +83,7 @@
       <property name="changelog.file" value="${build.site}/changelog.html"/>
       <property name="dist.dir" value="build/dist"/>
       <property name="jar.name" value="poi"/>
  -    <property name="version.id" value="2.0-pre1"/>
  +    <property name="version.id" value="2.0-pre2"/>
       <property name="halt.on.test.failure" value="true"/>
   
       <path id="main.classpath">
  @@ -142,14 +142,17 @@
   
       <target name="check-jars">
           <condition property="jars.present">
  +         <or>
               <and>
                   <available file="${main.jar1.dir}"/>
                   <available file="${main.jar2.dir}"/>
                   <available file="${contrib.jar1.dir}"/>
                   <available file="${contrib.jar2.dir}"/>
  -                <available file="${contrib.jar3.dir}"/>
  -                <available file="${junit.jar1.dir}"/>
  +                     <available file="${contrib.jar3.dir}"/>
  +                     <available file="${junit.jar1.dir}"/>
               </and>
  +                     <isset property="disconnected"/>
  +         </or>
           </condition>
       </target>
   
  @@ -401,6 +404,18 @@
           </condition>
       </target>
   
  +    <target name="-cvschangelog" unless="disconnected">
  +        <cvschangelog destfile="${changelog.file}" daysinpast="30"/>
  +
  +     <style in="${changelog.file}"
  +            out="${build.site.src}/src/documentation/content/changelog.html"
  +            style="changelog.xsl">
  +            <param name="title" expression="POI Change Log"/>
  +            <param name="module" expression="jakarta-poi"/>
  +            <param name="cvsweb" expression="http://cvs.apache.org/viewcvs/"/>
  +        </style>
  +    </target>
  +
       <target name="reports" depends="-check-reports" unless="reports.notRequired"
           description="Creates junit,jdepend and javadoc reports">
           <antcall target="test">
  @@ -440,15 +455,7 @@
               out="${jdepend.report.out.dir}/index.html"
               style="jdepend.xsl"/>
   
  -        <cvschangelog destfile="${changelog.file}" daysinpast="30"/>
  -
  -        <style in="${changelog.file}"
  -            out="${build.site.src}/src/documentation/content/changelog.html"
  -            style="changelog.xsl">
  -            <param name="title" expression="POI Change Log"/>
  -            <param name="module" expression="jakarta-poi"/>
  -            <param name="cvsweb" expression="http://cvs.apache.org/viewcvs/"/>
  -        </style>
  +     <antcall target="-cvschangelog"/>
   
           <javadoc
               destdir="${apidocs.report.dir}"
  @@ -562,9 +569,9 @@
   
           <tar destfile="${dist.dir}/${jar.name}-bin-${version.id}-${DSTAMP}.tar.gz" 
compression="gzip">
               <tarfileset dir="${build.site}" prefix="docs"/>
  -            <tarfileset file="${dist.dir}/${jar.name}-${version.id}.jar"/>
  -            <tarfileset file="${dist.dir}/${jar.name}-contrib-${version.id}.jar"/>
  -            <tarfileset 
file="${dist.dir}/${jar.name}-scratchpad-${version.id}.jar"/>
  +            <tarfileset file="${dist.dir}/${jar.name}-${version.id}-${DSTAMP}.jar"/>
  +            <tarfileset 
file="${dist.dir}/${jar.name}-contrib-${version.id}-${DSTAMP}.jar"/>
  +            <tarfileset 
file="${dist.dir}/${jar.name}-scratchpad-${version.id}-${DSTAMP}.jar"/>
               <tarfileset dir="legal" prefix="legal"/>
           </tar>
   
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.2.2.1   +32 -1     jakarta-poi/src/documentation/content/xdocs/status.xml
  
  Index: status.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/documentation/content/xdocs/status.xml,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- status.xml        24 Apr 2003 00:53:28 -0000      1.2
  +++ status.xml        13 Jul 2003 13:16:32 -0000      1.2.2.1
  @@ -54,6 +54,37 @@
   
           <title>History of Changes</title>
   
  +        <release version="2.0-pre2" date="6 July 2003">
  +        <action dev="POI-DEVELOPERS" type="fix">A nasty concurrency problem has 
been fixed. Any users working in a multithreaded environment should seriously consider 
upgrading to this release.</action>
  +     <action dev="POI-DEVELOPERS" type="update">The EXTSST record has been 
implemented. This record is used by excel for optimized reading of strings.</action>
  +        <action dev="POI-DEVELOPERS" type="update">When rows are shifted, the 
merged regions now move with them. If a row contains 2 merged cells, the resulting 
shifted row should have those cells merged as well.</action>
  +        <action dev="POI-DEVELOPERS" type="fix">There were some issues when 
removing merged 
  +                 regions (specifically, removing all of them and then adding some 
more) and have been resolved.</action>         
  +        <action dev="POI-DEVELOPERS" type="fix">When a sheet contained shared 
formulas (when a formula is 
  +                 dragged across greater than 6 cells), the clone would fail. We now 
support cloning of 
  +                 sheets that contain this Excel optimization. </action>
  +        <action dev="POI-DEVELOPERS" type="add">Support added for reading formulas 
with UnaryPlus and UnaryMinus operators.</action>
  +        </release>
  +        <release version="2.0-pre1" date="17 May 2003">
  +        <action dev="POI-DEVELOPERS" type="add">Patch applied for deep cloning of 
worksheets was provided</action>
  +        <action dev="POI-DEVELOPERS" type="add">Patch applied to allow sheet 
reordering</action>
  +        <action dev="POI-DEVELOPERS" type="add">Added additional print area setting 
methods using row/column numbers</action>
  +        <action dev="POI-DEVELOPERS" type="fix">HDF:  Negative Array size 
fix</action>
  +        <action dev="POI-DEVELOPERS" type="update">Added argument pointers to 
support the IF formula</action>
  +        <action dev="POI-DEVELOPERS" type="update">Formulas: Added special 
character support for string literals, specifically for SUMIF formula support and 
addresses a bug as well</action>
  +        <action dev="POI-DEVELOPERS" type="fix">BlockingInputStream committed to 
help ensure reads</action>
  +        <action dev="POI-DEVELOPERS" type="fix">Fixed problem with NaN values 
differing from the investigated value from file reads in FormulaRecords</action>
  +        <action dev="POI-DEVELOPERS" type="fix">Patch for getColumnWidth in 
HSSF</action>
  +        <action dev="POI-DEVELOPERS" type="add">Patch for dealing with mult-level 
numbered lists in HDF</action>
  +        <action dev="POI-DEVELOPERS" type="fix">Due to named reference work, 
several named-ranged bugs were closed</action>
  +        <action dev="POI-DEVELOPERS" type="fix">Patch applied to prevent sheet 
corruption after a template modification</action>
  +        <action dev="POI-DEVELOPERS" type="update">Shared Formulas now 
Supported</action>
  +        <action dev="POI-DEVELOPERS" type="update">Added GreaterEqual, LessEqual 
and NotEqual to Formula Parser</action>
  +        <action dev="POI-DEVELOPERS" type="update">Added GreaterThan and LessThan 
functionality to formulas</action>
  +        <action dev="POI-DEVELOPERS" type="fix">Patches for i10n</action>
  +        <action dev="POI-DEVELOPERS" type="update">POI Build System Updated</action>
  +        <action dev="POI-DEVELOPERS" type="fix">font names can now be null</action>
  +        </release>
           <release version="1.10-dev" date="19 Feb 2003">
               <action dev="POI-DEVELOPERS" type="add">Support for zoom level</action>
               <action dev="POI-DEVELOPERS" type="add">Freeze and split pane 
support</action>
  @@ -149,4 +180,4 @@
   
       </changes>
   
  -</status>
  \ No newline at end of file
  +</status>
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.3.2.1   +48 -81    jakarta-poi/src/documentation/resources/images/group-logo.gif
  
        <<Binary file>>
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +0 -0      
jakarta-poi/src/documentation/content/xdocs/dtd/book-cocoon-v10.dtd
  
  Index: book-cocoon-v10.dtd
  ===================================================================
  RCS file: 
/home/cvs/jakarta-poi/src/documentation/content/xdocs/dtd/book-cocoon-v10.dtd,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  1.1.2.1   +0 -0      jakarta-poi/src/documentation/content/xdocs/dtd/changes-v11.dtd
  
  Index: changes-v11.dtd
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/documentation/content/xdocs/dtd/changes-v11.dtd,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  1.1.2.1   +0 -0      jakarta-poi/src/documentation/content/xdocs/dtd/document-v11.dtd
  
  Index: document-v11.dtd
  ===================================================================
  RCS file: 
/home/cvs/jakarta-poi/src/documentation/content/xdocs/dtd/document-v11.dtd,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  1.1.2.1   +0 -0      jakarta-poi/src/documentation/content/xdocs/dtd/faq-v11.dtd
  
  Index: faq-v11.dtd
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/documentation/content/xdocs/dtd/faq-v11.dtd,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  1.1.2.1   +0 -0      
jakarta-poi/src/documentation/content/xdocs/dtd/javadoc-v04draft.dtd
  
  Index: javadoc-v04draft.dtd
  ===================================================================
  RCS file: 
/home/cvs/jakarta-poi/src/documentation/content/xdocs/dtd/javadoc-v04draft.dtd,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  1.1.2.1   +0 -0      
jakarta-poi/src/documentation/content/xdocs/dtd/specification-v11.dtd
  
  Index: specification-v11.dtd
  ===================================================================
  RCS file: 
/home/cvs/jakarta-poi/src/documentation/content/xdocs/dtd/specification-v11.dtd,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  1.1.2.1   +0 -0      jakarta-poi/src/documentation/content/xdocs/dtd/todo-v11.dtd
  
  Index: todo-v11.dtd
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/documentation/content/xdocs/dtd/todo-v11.dtd,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to