You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ja...@apache.org on 2001/11/03 06:32:36 UTC

cvs commit: xml-xerces/perl ChangeLog Changes MANIFEST

jasons      01/11/02 21:32:36

  Modified:    perl     ChangeLog Changes MANIFEST
  Log:
  usual
  
  Revision  Changes    Path
  1.36      +78 -0     xml-xerces/perl/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/xml-xerces/perl/ChangeLog,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- ChangeLog	2001/10/12 04:37:11	1.35
  +++ ChangeLog	2001/11/03 05:32:36	1.36
  @@ -1,3 +1,81 @@
  +2001-11-02  Jason E. Stewart  <ja...@openinformatics.com>
  +
  +	* t/IDOM_DOMException.t (Repository): 
  +	createDocument() now works
  +
  +	* t/EntityResolver.t (Repository): 
  +	Wrap methods in eval{}
  +
  +	* t/IDOM_Attr.t (Repository): 
  +	* t/DOM_Attr.t (Repository): 
  +	Test that we can set attributes using IV's and NV's
  +
  +	* t/DOMPrint.t (Repository): 
  +	* t/DOMCreate.t (Repository): 
  +	* t/DOMCount.t (Repository): 
  +	* t/LocalFileInputSource.t (Repository): 
  +	* t/SAX2Count.t (Repository): 
  +	* t/SAXCount.t (Repository): 
  +	Uses $SAMPLE_DIR to be directory independent
  +
  +	* t/TestUtils.pm (Repository): 
  +	Added $SAMPLE_DIR
  +
  +	* Makefile.PL (Repository): 
  +	Now requires Perl 5.6
  +	New version numbering
  +	XERCES_DEVEL sets -Wall and -g
  +	
  +
  +	* FAQ (Repository): 
  +	Added Unicode info
  +
  +	* Xerces.i (Repository): 
  +	removed #includes for iostream stuff
  +	Added #include for TransService.hpp
  +	Added static UTF-8 transcoder
  +	Added debug flag for UTF-8 transcoding
  +	Converted all all XMLURL constructors to use XMLCh* and not char* 
  +	Added forgotten XMLURL ctor
  +	ignored duplicate QName methods
  +	now properly ignore operators with DOM_NullPtr
  +	Added $VERSION to Xerces.pm
  +
  +	* postModule.pl (Repository): 
  +	Added IDOM_Node::operator== and != 
  +	the variable stubs code is now needed because of the UTF-8
  +	   debugging flags
  +	removed useless SWIG-1.1 cruft
  +	Fixed XMLUri bug where constructor was calling tied() on a
  +	  string. 
  +	Added forgotten cases to I?DOM_Node::serialize()
  +	
  +	
  +
  +	* postSource.pl (Repository): 
  +	Added static UTF-8 transcoder (used by typemaps)
  +	Added static ISO-8859-1 transcoder (unsused)
  +	Added IDOM_Node::operator== and != -- these don't exist on the C++
  +	   side because you only need to compare the pointers. But in perl
  +	   those concealed in the SV.
  +	added (char*) cast to sv_derived_from() call
  +
  +	* Handler/Makefile.PL (Repository): 
  +	Added $CFLAGS from top-level Makefile.PL
  +
  +	* hints/solaris_2.pl (Repository): 
  +	Fixed -HAS_BOOL to -DHAS_BOOL
  +
  +	* Xerces_headers/util/XMLUri.hpp (Repository): 
  +	* Xerces_headers/util/XMLURL.hpp (Repository): 
  +	* Xerces_headers/util/PlatformUtils.hpp (Repository): 
  +	Modified with preSWIG.pl
  +
  +	* typemaps.i (Repository): 
  +	Thanks to SWIG-1.3.10 all the redundant typemaps were eliminated
  +	XMLCh* in/out transcode from/to UTF-8/UTF-16
  +	DOMString in/out transcode from/to UTF-8/UTF-16
  +
   2001-10-11  Jason E. Stewart  <ja...@openinformatics.com>
   
   	* postModule.pl (Repository): 
  
  
  
  1.17      +9 -0      xml-xerces/perl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/xml-xerces/perl/Changes,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- Changes	2001/10/12 04:37:11	1.16
  +++ Changes	2001/11/03 05:32:36	1.17
  @@ -1,5 +1,14 @@
   Revision history for Perl extension Genex.
   
  +1.5.2-0 Fri Nov  2 11:38:02 MST 2001
  +	- Version numbering change, to reflect that this is the first
  +	  release of XML::Xerces to require Xerces-C-1.5.2 
  +	- Unicode now works! I modified all I/O between Perl and
  +	  Xerces-C to use transcoders to properly convert between
  +	  Perl's internal UTF-8 format and Xerces-C's internal UTF-16
  +	  format. 
  +	- 
  +
   1.5.7 Sun Oct  7 10:36:23 MDT 2001
           - cerr is no longer used by any source files, so compile
             problems with libstdc++ should be gone.
  
  
  
  1.16      +16 -3     xml-xerces/perl/MANIFEST
  
  Index: MANIFEST
  ===================================================================
  RCS file: /home/cvs/xml-xerces/perl/MANIFEST,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- MANIFEST	2001/10/07 16:53:10	1.15
  +++ MANIFEST	2001/11/03 05:32:36	1.16
  @@ -13,9 +13,6 @@
   Handler/PerlErrorCallbackHandler.cpp
   Handler/PerlErrorCallbackHandler.hpp
   Handler/PerlErrorCallbackHandler.swig.hpp
  -Handler/PerlExceptionHandler.cpp
  -Handler/PerlExceptionHandler.hpp
  -Handler/PerlExceptionHandler.swig.hpp
   Handler/PerlEntityResolverHandler.hpp
   Handler/PerlEntityResolverHandler.i
   Handler/PerlEntityResolverHandler.swig.hpp
  @@ -56,6 +53,7 @@
   hints/dec_osf.pl
   hints/linux.pl
   hints/solaris_2.pl
  +hints/aix.pl
   postModule.pl
   postSource.pl
   preSwig.pl
  @@ -74,6 +72,21 @@
   samples/SAXCount.pl
   samples/SAX2Count.pl
   samples/IDOMCount.pl
  +samples/IDOMPrint.pl
  +t/AttributeList.t
  +t/Attributes.t
  +t/DOM_Document.t
  +t/DOM_Node.t
  +t/IDOMCount.t
  +t/IDOMPrint.t
  +t/IDOM_Document.t
  +t/IDOM_Entity.t
  +t/IDOM_NamedNodeMap.t
  +t/IDOM_Node.t
  +t/IDOM_NodeList.t
  +t/XMLURL.t
  +t/XMLUri.t
  +t/letter.xml
   t/DOM_Attr.t
   t/DOM_Element.t
   t/IDOM_Attr.t
  
  
  

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