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 2001/11/13 14:21:59 UTC

cvs commit: xml-xerces/c/src/validators/datatype ENTITYDatatypeValidator.cpp

tng         01/11/13 05:21:59

  Modified:    c/src/validators/datatype ENTITYDatatypeValidator.cpp
  Log:
  Schema fix: Entities should be unparsed.
  
  Revision  Changes    Path
  1.7       +5 -2      xml-xerces/c/src/validators/datatype/ENTITYDatatypeValidator.cpp
  
  Index: ENTITYDatatypeValidator.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/ENTITYDatatypeValidator.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ENTITYDatatypeValidator.cpp	2001/10/09 20:50:27	1.6
  +++ ENTITYDatatypeValidator.cpp	2001/11/13 13:21:59	1.7
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: ENTITYDatatypeValidator.cpp,v 1.6 2001/10/09 20:50:27 peiyongz Exp $
  + * $Id: ENTITYDatatypeValidator.cpp,v 1.7 2001/11/13 13:21:59 tng Exp $
    * $Log: ENTITYDatatypeValidator.cpp,v $
  + * Revision 1.7  2001/11/13 13:21:59  tng
  + * Schema fix: Entities should be unparsed.
  + *
    * Revision 1.6  2001/10/09 20:50:27  peiyongz
    * init(): take 1 arg
    *
  @@ -139,7 +142,7 @@
           DTDEntityDecl* decl = fEntityDeclPool->getByKey(content);
   
           if (!decl                ||
  -            (decl->isUnparsed())  )
  +            (!decl->isUnparsed())  )
           {
               ThrowXML1(InvalidDatatypeValueException
                       , XMLExcepts::VALUE_ENTITY_Invalid
  
  
  

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