You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by tn...@apache.org on 2002/03/06 22:21:25 UTC

cvs commit: xml-xerces/c/doc migration.xml releases.xml releases_plan.xml

tng         02/03/06 13:21:25

  Modified:    c/doc    migration.xml releases.xml releases_plan.xml
  Log:
  Xerces-C++ release update.
  
  Revision  Changes    Path
  1.21      +36 -29    xml-xerces/c/doc/migration.xml
  
  Index: migration.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/doc/migration.xml,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- migration.xml	5 Mar 2002 13:40:43 -0000	1.20
  +++ migration.xml	6 Mar 2002 21:21:25 -0000	1.21
  @@ -9,26 +9,57 @@
         <p>Topics discussed are:</p>
         <ul>
           <li><link anchor="NewFeatures">New features in &XercesCName; &XercesCVersion;</link></li>
  +        <li><link anchor="DirChange">Directory change in &XercesCName; &XercesCVersion;</link></li>
           <li><link anchor="API">Public API Changes in &XercesCName; &XercesCVersion;</link></li>
           <ul>
               <li><link anchor="NewAPI">New Public API</link></li>
               <li><link anchor="ModifiedAPI">Modified Public API</link></li>
               <li><link anchor="DeprecatedAPI">Deprecated Public API</link></li>
           </ul>
  -        <li><link anchor="DirChange">Directory change in &XercesCName; &XercesCVersion;</link></li>
         </ul>
       </s2>
   
       <anchor name="NewFeatures"/>
       <s2 title="New features in &XercesCName; &XercesCVersion;">
         <ul>
  -        <li>Added SAX2-ext's DeclHandler.</li>
  -        <li>Added support for building with new MacOSURLAccessCF NetAccessor.</li>
  -        <li>Used IDOMParser instead of DOMParser in Schema Processing for better performance.</li>
  -        <li>Added test case IDOMMemTest.</li>
  +        <li>Support SAX2-ext's DeclHandler.</li>
  +        <li>Directory sane_include reorganization: add sub-directory 'xercesc' to src / include folder.
  +            See <link anchor="DirChange">"Directory change in &XercesCName; &XercesCVersion;"</link>
  +            below for detail.</li>
  +        <li>More IDOM test cases - port IDOMMemTest, and merge ThreadTest and IThreadTest.</li>
  +        <li>Support IconvFBSD in multi-threading environment.</li>
  +        <li>Use IDOM in schema processing for faster performance.</li>
  +        <li>Add Project files for BCB6.</li>
  +        <li>Port to Caldera (SCO) OpenServer.</li>
  +        <li>Support building with new MacOSURLAccessCF NetAccessor that doesn't require
  +            Carbon but can allow Xerces to live solely within CoreServices layer.</li>
         </ul>
       </s2>
   
  +    <anchor name="DirChange"/>
  +    <s2 title="Directory change in &XercesCName; &XercesCVersion;">
  +        <ul>
  +            <li>A new directory, <em>src/xercesc</em> is created to be the new parent directory of
  +                all src's direct subdirectories.</li>
  +            <li>And in the binary package, all the headers are distributed in <em>include/xercesc</em> directory.</li>
  +            <li>Migration considerations:</li>
  +            <ul>
  +              <li>Windows application, <br/>
  +                  either change the <em>include directories </em> setting to
  +                  "..\..\..\..\..\src\<em>xercesc</em>" (Projects->settings->C/C++->Preprocessor), <br/>
  +                  or <br/>
  +                  change the relevant #include instances in the source/header files, accordingly, eg <br/>
  +                  #include &lt;util/XMLString.hpp&gt; be changed to <br/>
  +                  #include &lt;<em>xercesc</em>/util/XMLString.hpp&gt; </li>
  +              <li>Unix application, <br/>
  +                  either change the <em>include search path </em> in the Makefile to
  +                  " -I &lt;installroot&gt;/include/<em>xercesc</em>", <br/>
  +                  or <br/>
  +                  change the relevant #include instances in the source/header files as shown above. </li>
  +            </ul>
  +        </ul>
  +    </s2>
  +
       <anchor name="API"/>
       <s2 title="Public API Changes in &XercesCName; &XercesCVersion;">
   
  @@ -104,30 +135,6 @@
               </ul>
           </s3>
   
  -    </s2>
  -
  -    <anchor name="DirChange"/>
  -    <s2 title="Directory change in &XercesCName; &XercesCVersion;">
  -        <ul>
  -            <li>A new directory, <em>src/xercesc</em> is created to be the new parent directory to
  -                all src's direct subdirectories.</li>
  -            <li>And in the binary package, all the headers are distributed in <em>include/xercesc</em> directory.</li>
  -            <li>Migration considerations:</li>
  -            <ul>
  -              <li>Windows application, <br/>
  -                  shall either change the <em>include directories </em> setting to
  -                  "..\..\..\..\..\src\<em>xercesc</em>" (Projects->settings->C/C++->Preprocessor), <br/>
  -                  or <br/>
  -                  change the relevant #include instances in the source/header files, accordingly, eg <br/>
  -                  #include &lt;util/XMLString.hpp&gt; be changed to <br/>
  -                  #include &lt;<em>xercesc</em>/util/XMLString.hpp&gt; </li>
  -              <li>Unix application, <br/>
  -                  shall either change the <em>include search path </em> in the Makefile to
  -                  " -I &lt;installroot&gt;/include/<em>xercesc</em>", <br/>
  -                  or <br/>
  -                  change the relevant #include instances in the source/header files as shown above. </li>
  -            </ul>
  -        </ul>
       </s2>
   
       <s2 title="Migration Archive">
  
  
  
  1.61      +9 -1      xml-xerces/c/doc/releases.xml
  
  Index: releases.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/doc/releases.xml,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- releases.xml	5 Mar 2002 14:16:45 -0000	1.60
  +++ releases.xml	6 Mar 2002 21:21:25 -0000	1.61
  @@ -3,12 +3,20 @@
   
   <s1 title="Releases">
   
  -<s2 title="&XercesCName; Version 1.7.0: March 8, 2002">
  +<s2 title="&XercesCName; Version 1.7.0: March 7, 2002">
   <table>
       <tr>
           <td>Date</td>
           <td>Contributor</td>
           <td>Description</td>
  +    </tr>
  +
  +    <tr>
  +        <td>2002-03-06</td>
  +        <td>PeiYong Zhang</td>
  +        <td>Schema: Allow [+]? [0]* '.'? [0]* and normalize the input to positive zero string.
  +            And similarly input comforming to '-' [0]* '.'? [0]* is normalized to negative zero.
  +        </td>
       </tr>
   
       <tr>
  
  
  
  1.2       +29 -66    xml-xerces/c/doc/releases_plan.xml
  
  Index: releases_plan.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/doc/releases_plan.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- releases_plan.xml	5 Mar 2002 13:40:43 -0000	1.1
  +++ releases_plan.xml	6 Mar 2002 21:21:25 -0000	1.2
  @@ -4,9 +4,9 @@
   <s1 title="Future Releases Plan">
   
   <s2 title="&XercesCName; Future Releases Plan">
  -<p>This document hightlights the release plan for &XercesCName;.</p>
  -<s3 title="Current Status"><p>&XercesCName; 1.6.0 - released on December 6, 2001.</p></s3>
  -<s3 title="Next Target Release"><p>&XercesCName; 1.7.0 - plan to be released in the 2nd / 3rd week of March, 2002.</p></s3>
  +<p>This document highlights the release plan for &XercesCName;.</p>
  +<s3 title="Current Status"><p>&XercesCName; 1.7.0 - released on March 7, 2002.</p></s3>
  +<s3 title="Next Target Release"><p>&XercesCName; 1.8.0 - plan to be released in June or July.</p></s3>
   <s3 title="&XercesCName; Features list">
   <p> The following table lists the TODO items for &XercesCName;.  It does not include fixing
   bugs that are opened in Bugzilla; unless such Bugzilla bug involves a major development
  @@ -23,64 +23,6 @@
       </tr>
   
       <tr>
  -        <td>Add SAX2-ext's DeclHandler support</td>
  -        <td>Khaled Noaman</td>
  -        <td>January</td>
  -        <td>Complete</td>
  -    </tr>
  -
  -    <tr>
  -        <td>Directory sane_include reorganization: add sub-directory 'xercesc' to src / include folder.
  -            (proposed by Murray Cumming)</td>
  -        <td>PeiYong Zhang</td>
  -        <td>January</td>
  -        <td>Complete</td>
  -    </tr>
  -
  -    <tr>
  -        <td>More IDOM test cases - port IDOMMemTest, and merge ThreadTest and IThreadTest.</td>
  -        <td>Tinny Ng</td>
  -        <td>January</td>
  -        <td>Complete</td>
  -    </tr>
  -
  -    <tr>
  -        <td>Support IconvFBSD in multi-threading environment</td>
  -        <td>Max Gotlib</td>
  -        <td>January</td>
  -        <td>Complete</td>
  -    </tr>
  -
  -    <tr>
  -        <td>Use IDOM in schema processing for faster performance.</td>
  -        <td>Khaled Noaman</td>
  -        <td>February</td>
  -        <td>Complete</td>
  -    </tr>
  -
  -    <tr>
  -        <td>Project files for BCB6.</td>
  -        <td>Don Mastrovito</td>
  -        <td>February</td>
  -        <td>Complete</td>
  -    </tr>
  -
  -    <tr>
  -        <td>[Bug 6445] Caldera (SCO) OpenServer Port.</td>
  -        <td>Martin Kalen</td>
  -        <td>February</td>
  -        <td>Complete</td>
  -    </tr>
  -
  -    <tr>
  -        <td>Add support for building with new MacOSURLAccessCF NetAccessor that doesn't
  -            require Carbon but can allow Xerces to live soley within CoreServices layer.</td>
  -        <td>James Berry</td>
  -        <td>February</td>
  -        <td>Complete</td>
  -    </tr>
  -
  -    <tr>
           <td>Report Schema Error with matching column number and line number.</td>
           <td>Khaled Noaman</td>
           <td>March</td>
  @@ -117,6 +59,20 @@
       </tr>
   
       <tr>
  +        <td>Produce 64 bit binary distribution for Solaris</td>
  +        <td>PeiYong Zhang</td>
  +        <td>April</td>
  +        <td></td>
  +    </tr>
  +
  +    <tr>
  +        <td>Produce 64 bit binary distribution for HP</td>
  +        <td>PeiYong Zhang</td>
  +        <td>April</td>
  +        <td></td>
  +    </tr>
  +
  +    <tr>
           <td>Produce 64 bit binary distribution for Linux</td>
           <td>PeiYong Zhang</td>
           <td>May</td>
  @@ -124,7 +80,7 @@
       </tr>
   
       <tr>
  -        <td>Produce 64 bit binary distribution for Solaris</td>
  +        <td>Produce 64 bit binary distribution for Windows</td>
           <td>PeiYong Zhang</td>
           <td>May</td>
           <td></td>
  @@ -132,20 +88,27 @@
   
       <tr>
           <td>DOM Level 3 Core</td>
  -        <td></td>
  -        <td></td>
  +        <td>Tinny Ng</td>
  +        <td>April</td>
           <td></td>
       </tr>
   
       <tr>
           <td>DOM Level 3 Load and Save</td>
  -        <td></td>
  -        <td></td>
  +        <td>Tinny Ng</td>
  +        <td>May</td>
           <td></td>
       </tr>
   
       <tr>
           <td>DOM Level 3 Abstract Schema Load and Save</td>
  +        <td>Khaled Noaman</td>
  +        <td>April</td>
  +        <td></td>
  +    </tr>
  +
  +    <tr>
  +        <td>[Bug 5563] Add capacity to build Xerces as static library</td>
           <td></td>
           <td></td>
           <td></td>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org