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/05/27 20:39:22 UTC

cvs commit: xml-xerces/c/src/xercesc/parsers SAX2XMLReaderImpl.cpp SAX2XMLReaderImpl.hpp SAXParser.cpp SAXParser.hpp XercesDOMParser.cpp XercesDOMParser.hpp

tng         02/05/27 11:39:22

  Modified:    c/src/xercesc/parsers SAX2XMLReaderImpl.cpp
                        SAX2XMLReaderImpl.hpp SAXParser.cpp SAXParser.hpp
                        XercesDOMParser.cpp XercesDOMParser.hpp
  Log:
  To get ready for 64 bit large file, use XMLSSize_t to represent line and column number.
  
  Revision  Changes    Path
  1.4       +11 -4     xml-xerces/c/src/xercesc/parsers/SAX2XMLReaderImpl.cpp
  
  Index: SAX2XMLReaderImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/SAX2XMLReaderImpl.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SAX2XMLReaderImpl.cpp	22 May 2002 20:53:41 -0000	1.3
  +++ SAX2XMLReaderImpl.cpp	27 May 2002 18:39:21 -0000	1.4
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: SAX2XMLReaderImpl.cpp,v $
  + * Revision 1.4  2002/05/27 18:39:21  tng
  + * To get ready for 64 bit large file, use XMLSSize_t to represent line and column number.
  + *
    * Revision 1.3  2002/05/22 20:53:41  knoaman
    * Prepare for DOM L3 :
    * - Make use of the XMLEntityHandler/XMLErrorReporter interfaces, instead of using
  @@ -1010,7 +1013,7 @@
   
           fDeclHandler->attributeDecl(elemDecl.getFullName(),
                                       attDef.getFullName(),
  -                                    (isEnumeration) ? enumBuf.getRawBuffer() 
  +                                    (isEnumeration) ? enumBuf.getRawBuffer()
                                                       : attDef.getAttTypeString(attDef.getType()),
                                       defAttTypeStr,
                                       attDef.getValue());
  @@ -1077,7 +1080,7 @@
      if (!fHasExternalSubset && fLexicalHandler)
           fLexicalHandler->endDTD();
   
  -    // Unused by SAX DTDHandler interface at this time    
  +    // Unused by SAX DTDHandler interface at this time
   }
   
   
  @@ -1255,8 +1258,8 @@
                           , const XMLCh* const                errorText
                           , const XMLCh* const                systemId
                           , const XMLCh* const                publicId
  -                        , const unsigned int                lineNum
  -                        , const unsigned int                colNum)
  +                        , const XMLSSize_t                  lineNum
  +                        , const XMLSSize_t                  colNum)
   {
       SAXParseException toThrow = SAXParseException
       (
  
  
  
  1.3       +5 -2      xml-xerces/c/src/xercesc/parsers/SAX2XMLReaderImpl.hpp
  
  Index: SAX2XMLReaderImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/SAX2XMLReaderImpl.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SAX2XMLReaderImpl.hpp	13 Feb 2002 16:09:24 -0000	1.2
  +++ SAX2XMLReaderImpl.hpp	27 May 2002 18:39:21 -0000	1.3
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: SAX2XMLReaderImpl.hpp,v $
  + * Revision 1.3  2002/05/27 18:39:21  tng
  + * To get ready for 64 bit large file, use XMLSSize_t to represent line and column number.
  + *
    * Revision 1.2  2002/02/13 16:09:24  knoaman
    * Move SAX2 features/properties names constants to XMLUni.
    *
  @@ -787,8 +790,8 @@
           , const XMLCh* const                errorText
           , const XMLCh* const                systemId
           , const XMLCh* const                publicId
  -        , const unsigned int                lineNum
  -        , const unsigned int                colNum
  +        , const XMLSSize_t                   lineNum
  +        , const XMLSSize_t                   colNum
       );
   
       /**
  
  
  
  1.3       +9 -2      xml-xerces/c/src/xercesc/parsers/SAXParser.cpp
  
  Index: SAXParser.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/SAXParser.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SAXParser.cpp	22 May 2002 20:53:41 -0000	1.2
  +++ SAXParser.cpp	27 May 2002 18:39:21 -0000	1.3
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: SAXParser.cpp,v $
  + * Revision 1.3  2002/05/27 18:39:21  tng
  + * To get ready for 64 bit large file, use XMLSSize_t to represent line and column number.
  + *
    * Revision 1.2  2002/05/22 20:53:41  knoaman
    * Prepare for DOM L3 :
    * - Make use of the XMLEntityHandler/XMLErrorReporter interfaces, instead of using
  @@ -986,8 +989,8 @@
                           , const XMLCh* const                errorText
                           , const XMLCh* const                systemId
                           , const XMLCh* const                publicId
  -                        , const unsigned int                lineNum
  -                        , const unsigned int                colNum)
  +                        , const XMLSSize_t                  lineNum
  +                        , const XMLSSize_t                  colNum)
   {
       SAXParseException toThrow = SAXParseException
       (
  
  
  
  1.3       +5 -2      xml-xerces/c/src/xercesc/parsers/SAXParser.hpp
  
  Index: SAXParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/SAXParser.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SAXParser.hpp	20 Feb 2002 18:17:01 -0000	1.2
  +++ SAXParser.hpp	27 May 2002 18:39:21 -0000	1.3
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: SAXParser.hpp,v $
  + * Revision 1.3  2002/05/27 18:39:21  tng
  + * To get ready for 64 bit large file, use XMLSSize_t to represent line and column number.
  + *
    * Revision 1.2  2002/02/20 18:17:01  tng
    * [Bug 5977] Warnings on generating apiDocs.
    *
  @@ -1396,8 +1399,8 @@
           , const XMLCh* const                errorText
           , const XMLCh* const                systemId
           , const XMLCh* const                publicId
  -        , const unsigned int                lineNum
  -        , const unsigned int                colNum
  +        , const XMLSSize_t                  lineNum
  +        , const XMLSSize_t                  colNum
       );
   
       /**
  
  
  
  1.4       +3 -3      xml-xerces/c/src/xercesc/parsers/XercesDOMParser.cpp
  
  Index: XercesDOMParser.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/XercesDOMParser.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XercesDOMParser.cpp	22 May 2002 20:53:41 -0000	1.3
  +++ XercesDOMParser.cpp	27 May 2002 18:39:21 -0000	1.4
  @@ -59,7 +59,7 @@
   *  handler with the scanner. In these handler methods, appropriate DOM nodes
   *  are created and added to the DOM tree.
   *
  -* $Id: XercesDOMParser.cpp,v 1.3 2002/05/22 20:53:41 knoaman Exp $
  +* $Id: XercesDOMParser.cpp,v 1.4 2002/05/27 18:39:21 tng Exp $
   *
   */
   
  @@ -130,8 +130,8 @@
                                , const XMLCh* const                errorText
                                , const XMLCh* const                systemId
                                , const XMLCh* const                publicId
  -                             , const unsigned int                lineNum
  -                             , const unsigned int                colNum)
  +                             , const XMLSSize_t                  lineNum
  +                             , const XMLSSize_t                  colNum)
   {
       SAXParseException toThrow = SAXParseException
           (
  
  
  
  1.4       +3 -3      xml-xerces/c/src/xercesc/parsers/XercesDOMParser.hpp
  
  Index: XercesDOMParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/parsers/XercesDOMParser.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XercesDOMParser.hpp	22 May 2002 20:53:41 -0000	1.3
  +++ XercesDOMParser.hpp	27 May 2002 18:39:21 -0000	1.4
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: XercesDOMParser.hpp,v 1.3 2002/05/22 20:53:41 knoaman Exp $
  + * $Id: XercesDOMParser.hpp,v 1.4 2002/05/27 18:39:21 tng Exp $
    *
    */
   
  @@ -233,8 +233,8 @@
           , const XMLCh* const                errorText
           , const XMLCh* const                systemId
           , const XMLCh* const                publicId
  -        , const unsigned int                lineNum
  -        , const unsigned int                colNum
  +        , const XMLSSize_t                  lineNum
  +        , const XMLSSize_t                  colNum
       );
   
       /** Reset any error data before a new parse
  
  
  

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