You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by ju...@apache.org on 2004/12/07 21:05:13 UTC

cvs commit: xml-xalan/c/xdocs/sources/xalan index.xml programming.xml whatsnew.xml

june        2004/12/07 12:05:13

  Modified:    c/xdocs/sources/xalan index.xml programming.xml whatsnew.xml
  Log:
  Changes to docs in anticipation of 1.9 release
  
  Revision  Changes    Path
  1.40      +1 -1      xml-xalan/c/xdocs/sources/xalan/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/xdocs/sources/xalan/index.xml,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- index.xml	3 Nov 2004 16:54:09 -0000	1.39
  +++ index.xml	7 Dec 2004 20:05:12 -0000	1.40
  @@ -22,7 +22,7 @@
   <p>Xalan is an XSLT processor for transforming XML documents into HTML, text, or other XML document types.</p>
   <p>&xslt4c-current; is a robust implementation of the W3C Recommendations for XSL Transformations (XSLT) and the XML Path 
      Language (XPath). It works with a compatible release of the &xml4c; XML parser: &xml4c-used;. The focus for this release is on 
  -   bug fixes, pluggable memory management, and performance improvements in stylesheet execution.  For the details, see 
  +   bug fixes, pluggable memory management, and enhanced stability improvements in stylesheet execution.  For the details, see 
      <link idref="whatsnew">What's New In This Release</link>.</p>
   </s2>
   
  
  
  
  1.2       +2 -2      xml-xalan/c/xdocs/sources/xalan/programming.xml
  
  Index: programming.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/xdocs/sources/xalan/programming.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- programming.xml	3 Nov 2004 16:54:09 -0000	1.1
  +++ programming.xml	7 Dec 2004 20:05:12 -0000	1.2
  @@ -33,8 +33,8 @@
   <anchor name="memory"/>
   <s2 title="Pluggable Memory Management">
   <p>Pluggable memory management was added as a new feature in &xslt4c-current;.  This feature introduces an
  -object called MemoryManager which allows users with a deeper understanding of their application's 
  -characteristics to utilize a more efficient allocation method.  This MemoryManager object can be applied to 
  +object called MemoryManager which allows applications with stricter memory management requirements to 
  +utilize a more efficient allocation method.  This MemoryManager object can be applied to 
   each processor instance, thus recovery procedures from memory leaks or processor crashes will be applied to 
   the associated instance only.</p>
   <p>The memory management model is similar to the memory management feature provided by &xml4c;.  For more 
  
  
  
  1.3       +39 -14    xml-xalan/c/xdocs/sources/xalan/whatsnew.xml
  
  Index: whatsnew.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/xdocs/sources/xalan/whatsnew.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- whatsnew.xml	6 Nov 2004 06:39:41 -0000	1.2
  +++ whatsnew.xml	7 Dec 2004 20:05:12 -0000	1.3
  @@ -54,20 +54,45 @@
   <anchor name="bugfixes"/>
   <s2 title="Bugs Fixed in this Release">
   <p>The bugs fixed in this release include:</p>
  -  <table>
  -      <tr>
  -         <th>JIRA #</th>
  -         <th>Abstract</th>
  -      </tr>
  -      <tr>
  -         <td>XALANC-414</td>
  -         <td>DOCS: Apache 2.0 license update</td>
  -      </tr>
  -      <tr>
  -         <td>XALANC-428</td>
  -         <td>Usage patterns doc spelling fixes</td>
  -      </tr>
  -   </table>
  +<ul>
  +   <li>Fixed bug in binary operators. Failed to detect a missing term. (XPathProcessorImpl.cpp, XPathProcessorImpl.hpp)</li>
  +   <li>Fixed threadsafe issues in XalanEXSLTDateTime. (Bugzilla 28818) (XalanEXSLTDateTime.cpp)</li>
  +   <li>Fixed incorrect linefeed serialization after an XML declaration. (various files) </li>
  +   <li>Fixed behaviour of xsl:number to conform to XSLT erratum E24 (See http://www.w3.org/1999/11/REC-xslt-19991116-errata/). 
  +       (ElemNumber.cpp) </li>
  +   <li>Fixed memory corruption when encoding of the output is set to UTF-16. (Jira XALANC-438) (FormatterToXML_UTF16.cpp)</li>
  +   <li>Fixed InvalidStackContextException exception. endExecuteChildren() not being called. (ElemVariable.cpp, ElemWithParam.cpp) </li>
  +   <li>Fixed problem with global variables. (Bugzilla 27959) (VariablesStack.cpp) </li>
  +   <li>Fixed bug in capacity(). (XalanDOMString.hpp) </li>
  +   <li>Fixed bug in creation/deletion of key maps (key-value/node-list pairs) for tree-fragments. (Jira XALANC-425) 
  +       (StylesheetExecutionContextDefault.cpp) </li>
  +   <li>Fixed leakage of DOMStringPrintWriter instances. (StylesheetExecutionContextDefault.cpp)</li>
  +   <li>Fixed bug in reset(). (StylesheetExecutionContextDefault.hpp)</li>
  +   <li>Fixed bug in with the omit-xml-declaration attribute (xsl:output). (Bugzilla 29545) (FormatterToXMLBase.cpp)</li>
  +   <li>Calling a named template should not change the current template rule. (Bugzilla 27841) (various files)</li>
  +   <li>Fixed conflict resolution problem for unique attributes with the same qname. (Bugzilla 23955) (ElemAttribute.cpp)</li>
  +   <li>Fixed problem with out-of-scope xsl:variable's not being detected in certain circumstances. 
  +      (Bugzilla 29079) (ElemTemplateElement.cpp)</li>
  +   <li>Fixed bug in exslt extension function date-time().  Wrong GMT offsets were being reported. 
  +      (Bugzilla 27365) (XalanEXSLTDateTime.cpp)</li>
  +   <li>Fixed bug in XalanSourceTreeElementNA::getLocalName(). (Bugzilla 27982) (XalanSourceTreeElementNA.cpp)</li>
  +   <li>Fixed bug in XalanTransformer::initialize() (Bugzilla 22350)  (XalanTransformer.cpp)</li>
  +   <li>Cleaned up whitespace stripping. Fixed bug with whitespace stripping and xsl:copy-of. (various files)</li>
  +   <li>Cleaned up embedded string literals and unnecessary copies. (various files)</li>  
  +   <li>Removed createDOMFactory() call, because we cannot truly support it. (XMLParserLiaison.hpp)</li>
  +   <li>Cleaned up minor spelling problems in XalanMsg_en_US.xlf. (Bugzilla 30750)</li>
  +   <li>Fixed compilation problems with cygwin, gcc 2.95.3 and Tru64.</li>
  +   <li>Fixed compilation problems with HP aCC v3.52. (Bugzilla 29983)</li>
  +   <li>Fixed compilation problem with gcc 3.4.0 (Jira XALANC-423)</li>   
  +   <li>Fixed Win64 linkage problem.  Do not link with the Intel's default libmmd.lib library.</li>
  +   <li>Fixed problem with INSTALL_{PROGRAM->DATA}. (Bugzilla 27404)</li>
  +   <li>Build fails if no ICUROOT is set. (Jira XALANC-422)</li>
  +   <li>FreeBSD configure changes for threading.  (Bugzilla 27406)</li>
  +   <li>Update runConfigure to include new HP Itanium platform (hp-11-ia64). (Bugzilla 28452)</li>
  +   <li>Fixed AIX packaging bug. ICU on AIX now produces archives instead of shared objects.</li>
  +   <li>Fixed bug in CompileStylesheet.dsp that prevented building the sample on Win32.</li>
  +   <li>Fixed spelling errors in usagepatterns.xml. (JIRA XALANC-428)</li>
  +</ul>
   </s2>
   
   <anchor name="bugs"/>
  
  
  

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