You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by jb...@apache.org on 2005/06/17 04:56:50 UTC

svn commit: r191054 [11/15] - in /xerces/c/branches/xerces-2.7: Projects/MacOS/ Projects/MacOS/CodeWarrior/XercesLib/ Projects/Win32/BCB4/Xerces-all/ Projects/Win32/BCB5/Xerces-all/ scripts/ src/xercesc/com/ src/xercesc/dom/ src/xercesc/dom/impl/ src/xercesc/framework/ src/xercesc/framework/psvi/ src/xercesc/internal/ src/xercesc/parsers/ src/xercesc/sax/ src/xercesc/sax2/ src/xercesc/util/ src/xercesc/util/Compilers/ src/xercesc/util/MsgLoaders/ICU/ src/xercesc/util/MsgLoaders/InMemory/ src/xercesc/util/MsgLoaders/MsgCatalog/ src/xercesc/util/MsgLoaders/Win32/ src/xercesc/util/NetAccessors/Socket/ src/xercesc/util/NetAccessors/WinSock/ src/xercesc/util/NetAccessors/libWWW/ src/xercesc/util/Platforms/AIX/ src/xercesc/util/Platforms/BeOS/ src/xercesc/util/Platforms/Cygwin/ src/xercesc/util/Platforms/FreeBSD/ src/xercesc/util/Platforms/HPUX/ src/xercesc/util/Platforms/IRIX/ src/xercesc/util/Platforms/Interix/ src/xercesc/util/Platforms/Linux/ src/xercesc/util/Platforms/OS2/ src/xercesc/util/Platforms/OS390/ src/xercesc/util/Platforms/OS400/ src/xercesc/util/Platforms/OpenServer/ src/xercesc/util/Platforms/PTX/ src/xercesc/util/Platforms/QNX/ src/xercesc/util/Platforms/Solaris/ src/xercesc/util/Platforms/Tandem/ src/xercesc/util/Platforms/UnixWare/ src/xercesc/util/Platforms/Win32/ src/xercesc/util/Transcoders/Cygwin/ src/xercesc/util/Transcoders/ICU/ src/xercesc/util/Transcoders/Iconv/ src/xercesc/util/Transcoders/Iconv390/ src/xercesc/util/Transcoders/Iconv400/ src/xercesc/util/Transcoders/IconvFBSD/ src/xercesc/util/Transcoders/IconvGNU/ src/xercesc/util/Transcoders/Uniconv390/ src/xercesc/util/Transcoders/Win32/ src/xercesc/util/regx/ src/xercesc/validators/DTD/ src/xercesc/validators/common/ src/xercesc/validators/datatype/ src/xercesc/validators/schema/ src/xercesc/validators/schema/identity/ tools/IANACharset/ tools/ICUData/ tools/NLS/Xlat/

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/ParserForXMLSchema.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/ParserForXMLSchema.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/ParserForXMLSchema.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/ParserForXMLSchema.cpp Thu Jun 16 19:56:35 2005
@@ -15,65 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.9  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.8  2004/01/29 11:51:21  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.7  2003/12/17 00:18:37  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.6  2003/05/15 18:42:54  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.5  2003/03/18 19:38:28  knoaman
- * Schema Errata E2-18 + misc. regex fixes.
- *
- * Revision 1.4  2003/01/13 19:02:23  knoaman
- * [Bug 14390] C++ Indentifier collision with Python.
- *
- * Revision 1.3  2002/11/04 15:17:00  tng
- * C++ Namespace Support.
- *
- * Revision 1.2  2002/03/18 19:29:53  knoaman
- * Change constant names to eliminate possible conflict with user defined ones.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:29  peiyongz
- * sane_include
- *
- * Revision 1.6  2001/09/20 13:11:42  knoaman
- * Regx  + misc. fixes
- *
- * Revision 1.5  2001/06/01 14:15:37  knoaman
- * Add a return value to satisfy compilers that complain about
- * no return value, although that code will not be executed.
- *
- * Revision 1.4  2001/05/11 21:50:56  knoaman
- * Schema updates and fixes.
- *
- * Revision 1.3  2001/05/11 13:26:44  tng
- * Copyright update.
- *
- * Revision 1.2  2001/05/03 18:17:30  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
- * Revision 1.1  2001/03/02 19:26:43  knoaman
- * Schema: Regular expression handling part II
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeFactory.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeFactory.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeFactory.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeFactory.cpp Thu Jun 16 19:56:35 2005
@@ -15,43 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.4  2004/10/20 15:18:49  knoaman
- * Allow option of initializing static data in XMLPlatformUtils::Initialize
- *
- * Revision 1.3  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.2  2002/11/04 15:17:00  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:29  peiyongz
- * sane_include
- *
- * Revision 1.4  2001/05/11 13:26:45  tng
- * Copyright update.
- *
- * Revision 1.3  2001/05/03 18:17:33  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
- * Revision 1.2  2001/03/22 13:23:32  knoaman
- * Minor modifications to eliminate compiler warnings.
- *
- * Revision 1.1  2001/03/02 19:26:44  knoaman
- * Schema: Regular expression handling part II
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeToken.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeToken.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeToken.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeToken.cpp Thu Jun 16 19:56:35 2005
@@ -15,64 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.11  2005/05/05 01:12:24  dbertoni
- * Fix for Jira issue XERCESC-1391.
- *
- * Revision 1.10  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.9  2003/12/17 00:18:37  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.8  2003/05/16 21:37:00  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.7  2003/05/15 21:46:47  knoaman
- * Add missing include.
- *
- * Revision 1.6  2002/11/04 15:17:00  tng
- * C++ Namespace Support.
- *
- * Revision 1.5  2002/10/15 18:15:02  knoaman
- * [Bug 13490]: - new[]/delete mismatch in RangeToken.cpp
- *
- * Revision 1.4  2002/05/27 11:46:53  tng
- * Fix compilation error.  The definition should match declaration.
- *
- * Revision 1.3  2002/05/24 16:42:20  knoaman
- * Performance fixes: eliminate mulitple calls to addRange and sort.
- *
- * Revision 1.2  2002/03/18 19:29:53  knoaman
- * Change constant names to eliminate possible conflict with user defined ones.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:30  peiyongz
- * sane_include
- *
- * Revision 1.4  2001/05/29 19:39:33  knoaman
- * Typo fix
- *
- * Revision 1.3  2001/05/11 13:26:45  tng
- * Copyright update.
- *
- * Revision 1.2  2001/05/03 18:17:37  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
- * Revision 1.1  2001/03/02 19:26:46  knoaman
- * Schema: Regular expression handling part II
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeTokenMap.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeTokenMap.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeTokenMap.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RangeTokenMap.cpp Thu Jun 16 19:56:35 2005
@@ -15,73 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.13  2004/11/12 23:24:58  knoaman
- * Fix multi threading problem.
- *
- * Revision 1.12  2004/10/20 15:18:49  knoaman
- * Allow option of initializing static data in XMLPlatformUtils::Initialize
- *
- * Revision 1.11  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.10  2004/07/22 15:37:18  knoaman
- * Use file static instance instead of local static instance
- *
- * Revision 1.9  2004/01/13 16:17:10  knoaman
- * Fo sanity, use class name to qualify method
- *
- * Revision 1.8  2004/01/09 22:41:58  knoaman
- * Use a global static mutex for locking when creating local static mutexes instead of compareAndSwap
- *
- * Revision 1.7  2003/12/17 00:18:37  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.6  2003/10/17 16:44:34  knoaman
- * Fix multithreading problem.
- *
- * Revision 1.5  2003/05/18 14:02:06  knoaman
- * Memory manager implementation: pass per instance manager.
- *
- * Revision 1.4  2003/05/15 19:10:23  knoaman
- * Add missing include.
- *
- * Revision 1.3  2003/03/04 21:11:12  knoaman
- * [Bug 17516] Thread safety problems in ../util/ and ../util/regx.
- *
- * Revision 1.2  2002/11/04 15:17:00  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:30  peiyongz
- * sane_include
- *
- * Revision 1.5  2001/10/25 15:06:26  tng
- * Thread safe the static instance.
- *
- * Revision 1.4  2001/10/23 23:13:41  peiyongz
- * [Bug#880] patch to PlatformUtils:init()/term() and related. from Mark Weaver
- *
- * Revision 1.3  2001/07/16 21:28:25  knoaman
- * fix bug - no delete for the static instance in destructor.
- *
- * Revision 1.2  2001/05/11 13:26:45  tng
- * Copyright update.
- *
- * Revision 1.1  2001/05/03 18:17:40  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegularExpression.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegularExpression.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegularExpression.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegularExpression.cpp Thu Jun 16 19:56:35 2005
@@ -15,106 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.26  2005/05/05 01:12:24  dbertoni
- * Fix for Jira issue XERCESC-1391.
- *
- * Revision 1.25  2005/04/05 18:18:34  knoaman
- * Performance: do not make a copy of the expression to match.
- *
- * Revision 1.24  2005/04/01 17:36:25  dbertoni
- * Fix for Jira issue XERCESC-1389.
- *
- * Revision 1.23  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.22  2004/01/13 20:05:00  peiyongz
- * revert code back to previous version
- *
- * Revision 1.19  2003/12/24 15:24:15  cargilld
- * More updates to memory management so that the static memory manager.
- *
- * Revision 1.18  2003/12/17 05:16:59  neilg
- * ensure all uses of ArrayJanitor use a memory manager
- *
- * Revision 1.17  2003/12/17 00:18:37  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.16  2003/12/16 12:25:48  cargilld
- * Change a conditional expression to an if-else to avoid a compiler problem.
- *
- * Revision 1.15  2003/10/01 16:32:40  neilg
- * improve handling of out of memory conditions, bug #23415.  Thanks to David Cargill.
- *
- * Revision 1.14  2003/08/14 02:57:27  knoaman
- * Code refactoring to improve performance of validation.
- *
- * Revision 1.13  2003/05/25 21:42:41  knoaman
- * Allocate/Deallocate Context::xxx only when necessary.
- *
- * Revision 1.12  2003/05/18 14:02:06  knoaman
- * Memory manager implementation: pass per instance manager.
- *
- * Revision 1.11  2003/05/16 21:37:00  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.10  2003/05/16 06:01:57  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.9  2003/05/16 00:03:10  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.8  2003/05/15 18:42:54  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.7  2003/05/12 10:08:22  gareth
- * The correct file this time.
- *
- * Revision 1.5  2002/12/18 13:01:02  gareth
- * New functionality - tokenize and replace. Fixed REVISIT for case insensitive match. Patch by Jennifer Schachter.
- *
- * Revision 1.4  2002/11/04 15:17:00  tng
- * C++ Namespace Support.
- *
- * Revision 1.3  2002/10/15 18:56:02  knoaman
- * [Bug 13604] while loop never terminates.
- *
- * Revision 1.2  2002/03/18 19:29:53  knoaman
- * Change constant names to eliminate possible conflict with user defined ones.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:30  peiyongz
- * sane_include
- *
- * Revision 1.6  2002/01/02 20:09:11  knoaman
- * Fix for regular expression patterns that begin with ".".
- *
- * Revision 1.5  2001/10/09 12:20:25  tng
- * Leak fix: Need to delete fMatch if adopted.
- *
- * Revision 1.4  2001/05/11 21:50:58  knoaman
- * Schema updates and fixes.
- *
- * Revision 1.3  2001/05/11 13:26:46  tng
- * Copyright update.
- *
- * Revision 1.2  2001/05/03 18:17:42  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
- * Revision 1.1  2001/03/02 19:22:52  knoaman
- * Schema: Regular expression handling part I
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegxParser.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegxParser.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegxParser.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegxParser.cpp Thu Jun 16 19:56:35 2005
@@ -15,88 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.13  2005/02/20 01:58:17  cargilld
- * Update error message from regular expressions.
- *
- * Revision 1.12  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.11  2004/01/29 11:51:21  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.10  2003/12/17 00:18:37  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.9  2003/05/18 14:02:06  knoaman
- * Memory manager implementation: pass per instance manager.
- *
- * Revision 1.8  2003/05/16 00:03:10  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.7  2003/05/15 18:42:55  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.6  2003/03/18 19:38:28  knoaman
- * Schema Errata E2-18 + misc. regex fixes.
- *
- * Revision 1.5  2003/03/04 16:36:17  knoaman
- * RegEx: fix for character category escape
- *
- * Revision 1.4  2003/01/13 19:02:23  knoaman
- * [Bug 14390] C++ Indentifier collision with Python.
- *
- * Revision 1.3  2002/11/04 15:17:00  tng
- * C++ Namespace Support.
- *
- * Revision 1.2  2002/03/18 19:29:53  knoaman
- * Change constant names to eliminate possible conflict with user defined ones.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:30  peiyongz
- * sane_include
- *
- * Revision 1.10  2001/11/20 20:48:10  knoaman
- * Fix for invalid repeating quantifier check.
- *
- * Revision 1.9  2001/11/16 15:56:37  knoaman
- * Add check for invalid repeating quantifier.
- *
- * Revision 1.8  2001/09/20 13:11:42  knoaman
- * Regx  + misc. fixes
- *
- * Revision 1.7  2001/08/31 16:53:41  knoaman
- * Misc. fixes.
- *
- * Revision 1.6  2001/07/26 12:46:48  knoaman
- * Fix for bug 2815.
- *
- * Revision 1.5  2001/06/06 13:49:27  jberry
- * Fix two improper NULL tests
- *
- * Revision 1.4  2001/05/11 21:51:01  knoaman
- * Schema updates and fixes.
- *
- * Revision 1.3  2001/05/11 13:26:48  tng
- * Copyright update.
- *
- * Revision 1.2  2001/05/03 18:17:45  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
- * Revision 1.1  2001/03/02 19:22:54  knoaman
- * Schema: Regular expression handling part I
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegxUtil.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegxUtil.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegxUtil.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/RegxUtil.cpp Thu Jun 16 19:56:35 2005
@@ -15,34 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.6  2005/04/01 17:36:25  dbertoni
- * Fix for Jira issue XERCESC-1389.
- *
- * Revision 1.5  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.4  2003/05/16 00:03:10  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.3  2003/05/15 18:42:55  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.2  2002/11/04 15:17:00  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:31  peiyongz
- * sane_include
- *
- * Revision 1.3  2001/06/07 20:55:38  tng
- * Fix no newline at the end warning.  By Pei Yong Zhang.
- *
- * Revision 1.2  2001/05/11 13:26:49  tng
- * Copyright update.
- *
- * Revision 1.1  2001/03/02 19:22:56  knoaman
- * Schema: Regular expression handling part I
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/StringToken.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/StringToken.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/StringToken.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/StringToken.cpp Thu Jun 16 19:56:35 2005
@@ -15,31 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.6  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.5  2004/01/29 11:51:21  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.4  2003/12/17 00:18:37  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.3  2003/05/16 00:03:10  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.2  2002/11/04 15:17:00  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:31  peiyongz
- * sane_include
- *
- * Revision 1.2  2001/05/11 13:26:49  tng
- * Copyright update.
- *
- * Revision 1.1  2001/03/02 19:22:57  knoaman
- * Schema: Regular expression handling part I
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/Token.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/Token.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/Token.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/Token.cpp Thu Jun 16 19:56:35 2005
@@ -15,49 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.7  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.6  2003/12/17 00:18:37  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.5  2002/11/21 14:56:35  gareth
- * Fixed bug in Token::analyzeFirstCharacter so that . matches new line with head character optimisation enabled. As per discussion Jennifer Schachter had with Khaled.
- *
- * Revision 1.4  2002/11/04 15:17:00  tng
- * C++ Namespace Support.
- *
- * Revision 1.3  2002/10/15 18:11:02  knoaman
- * [Bug 13489]: missing 'return' in Token.cpp
- *
- * Revision 1.2  2002/03/18 19:29:53  knoaman
- * Change constant names to eliminate possible conflict with user defined ones.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:31  peiyongz
- * sane_include
- *
- * Revision 1.3  2001/05/11 13:26:50  tng
- * Copyright update.
- *
- * Revision 1.2  2001/05/03 18:17:49  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
- * Revision 1.1  2001/03/02 19:22:58  knoaman
- * Schema: Regular expression handling part I
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/TokenFactory.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/TokenFactory.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/TokenFactory.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/TokenFactory.cpp Thu Jun 16 19:56:35 2005
@@ -15,76 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.14  2004/10/20 15:18:49  knoaman
- * Allow option of initializing static data in XMLPlatformUtils::Initialize
- *
- * Revision 1.13  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.12  2004/01/29 11:51:21  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.11  2004/01/09 22:41:58  knoaman
- * Use a global static mutex for locking when creating local static mutexes instead of compareAndSwap
- *
- * Revision 1.10  2003/12/17 00:18:37  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.9  2003/10/17 16:44:34  knoaman
- * Fix multithreading problem.
- *
- * Revision 1.8  2003/05/18 14:02:06  knoaman
- * Memory manager implementation: pass per instance manager.
- *
- * Revision 1.7  2003/05/16 21:37:00  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.6  2003/05/16 00:03:10  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.5  2003/03/04 21:11:12  knoaman
- * [Bug 17516] Thread safety problems in ../util/ and ../util/regx.
- *
- * Revision 1.4  2002/12/24 17:59:07  tng
- * Build with ICU 2.4
- *
- * Revision 1.3  2002/11/04 15:17:00  tng
- * C++ Namespace Support.
- *
- * Revision 1.2  2002/03/18 19:29:53  knoaman
- * Change constant names to eliminate possible conflict with user defined ones.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:31  peiyongz
- * sane_include
- *
- * Revision 1.5  2001/06/07 20:55:39  tng
- * Fix no newline at the end warning.  By Pei Yong Zhang.
- *
- * Revision 1.4  2001/05/11 13:26:51  tng
- * Copyright update.
- *
- * Revision 1.3  2001/05/03 18:17:52  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
- * Revision 1.2  2001/03/22 13:23:34  knoaman
- * Minor modifications to eliminate compiler warnings.
- *
- * Revision 1.1  2001/03/02 19:23:00  knoaman
- * Schema: Regular expression handling part I
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/UnicodeRangeFactory.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/UnicodeRangeFactory.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/UnicodeRangeFactory.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/UnicodeRangeFactory.cpp Thu Jun 16 19:56:35 2005
@@ -15,58 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.9  2005/05/06 21:45:45  dbertoni
- * Change for loop control variable for compilers that don't enforce for scope.
- *
- * Revision 1.8  2005/05/05 01:12:24  dbertoni
- * Fix for Jira issue XERCESC-1391.
- *
- * Revision 1.7  2004/11/12 23:24:58  knoaman
- * Fix multi threading problem.
- *
- * Revision 1.6  2004/10/20 15:18:49  knoaman
- * Allow option of initializing static data in XMLPlatformUtils::Initialize
- *
- * Revision 1.5  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.4  2003/12/17 00:18:37  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.3  2002/11/04 15:17:01  tng
- * C++ Namespace Support.
- *
- * Revision 1.2  2002/02/05 13:20:06  tng
- * [Bug 5716] Can't parse with Validation more than one file.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:34  peiyongz
- * sane_include
- *
- * Revision 1.4  2001/10/15 18:30:40  knoaman
- * Add support for 'Pi' and 'Pf'.
- *
- * Revision 1.3  2001/05/11 13:26:51  tng
- * Copyright update.
- *
- * Revision 1.2  2001/05/03 18:17:56  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
- * Revision 1.1  2001/03/02 19:26:48  knoaman
- * Schema: Regular expression handling part II
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/UnionToken.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/UnionToken.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/UnionToken.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/UnionToken.cpp Thu Jun 16 19:56:35 2005
@@ -15,58 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.9  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.8  2003/12/24 15:24:15  cargilld
- * More updates to memory management so that the static memory manager.
- *
- * Revision 1.7  2003/12/17 00:18:37  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.6  2003/05/18 14:02:06  knoaman
- * Memory manager implementation: pass per instance manager.
- *
- * Revision 1.5  2003/05/16 21:37:00  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.4  2003/05/16 00:03:10  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.3  2002/11/04 15:17:01  tng
- * C++ Namespace Support.
- *
- * Revision 1.2  2002/03/18 19:29:53  knoaman
- * Change constant names to eliminate possible conflict with user defined ones.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:34  peiyongz
- * sane_include
- *
- * Revision 1.4  2001/06/05 14:50:32  knoaman
- * Fixes to regular expression.
- *
- * Revision 1.3  2001/05/11 13:26:52  tng
- * Copyright update.
- *
- * Revision 1.2  2001/05/03 18:17:59  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
- * Revision 1.1  2001/03/02 19:23:02  knoaman
- * Schema: Regular expression handling part I
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/XMLRangeFactory.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/XMLRangeFactory.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/XMLRangeFactory.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/XMLRangeFactory.cpp Thu Jun 16 19:56:35 2005
@@ -15,58 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.9  2005/05/05 01:12:24  dbertoni
- * Fix for Jira issue XERCESC-1391.
- *
- * Revision 1.8  2004/11/12 23:24:58  knoaman
- * Fix multi threading problem.
- *
- * Revision 1.7  2004/10/20 15:18:49  knoaman
- * Allow option of initializing static data in XMLPlatformUtils::Initialize
- *
- * Revision 1.6  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.5  2003/05/18 14:02:06  knoaman
- * Memory manager implementation: pass per instance manager.
- *
- * Revision 1.4  2002/11/04 15:17:01  tng
- * C++ Namespace Support.
- *
- * Revision 1.3  2002/05/24 16:42:20  knoaman
- * Performance fixes: eliminate mulitple calls to addRange and sort.
- *
- * Revision 1.2  2002/02/05 13:20:06  tng
- * [Bug 5716] Can't parse with Validation more than one file.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:34  peiyongz
- * sane_include
- *
- * Revision 1.4  2001/10/15 20:18:32  knoaman
- * Fix for bug 4177.
- *
- * Revision 1.3  2001/05/11 13:26:52  tng
- * Copyright update.
- *
- * Revision 1.2  2001/05/03 18:18:02  knoaman
- * Some design changes:
- * o Changed the TokenFactory from a single static instance, to a
- *    normal class. Each RegularExpression object will have its own
- *    instance of TokenFactory, and that instance will be passed to
- *    other classes that need to use a TokenFactory to create Token
- *    objects (with the exception of RangeTokenMap).
- * o Added a new class RangeTokenMap to map a the different ranges
- *    in a given category to a specific RangeFactory object. In the old
- *    design RangeFactory had dual functionality (act as a Map, and as
- *    a factory for creating RangeToken(s)). The RangeTokenMap will
- *    have its own copy of the TokenFactory. There will be only one
- *    instance of the RangeTokenMap class, and that instance will be
- *    lazily deleted when XPlatformUtils::Terminate is called.
- *
- * Revision 1.1  2001/03/02 19:26:50  knoaman
- * Schema: Regular expression handling part II
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/util/regx/XMLUniCharacter.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/regx/XMLUniCharacter.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/util/regx/XMLUniCharacter.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/util/regx/XMLUniCharacter.cpp Thu Jun 16 19:56:35 2005
@@ -15,28 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.5  2005/05/19 15:46:32  cargilld
- * 390 update: use ICU table which is present with the uniconv390.
- *
- * Revision 1.4  2004/09/08 13:56:47  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.3  2002/12/24 17:59:07  tng
- * Build with ICU 2.4
- *
- * Revision 1.2  2002/11/04 15:17:01  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:34  peiyongz
- * sane_include
- *
- * Revision 1.2  2001/05/11 13:26:52  tng
- * Copyright update.
- *
- * Revision 1.1  2001/03/02 19:26:51  knoaman
- * Schema: Regular expression handling part II
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDef.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDef.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDef.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDef.cpp Thu Jun 16 19:56:35 2005
@@ -15,39 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.6  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.5  2003/10/10 16:24:51  peiyongz
- * Implementation of Serialization/Deserialization
- *
- * Revision 1.4  2003/05/16 21:43:19  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.3  2003/05/15 18:54:50  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.2  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
- * sane_include
- *
- * Revision 1.3  2000/03/02 19:55:39  roddey
- * This checkin includes many changes done while waiting for the
- * 1.1.0 code to be finished. I can't list them all here, but a list is
- * available elsewhere.
- *
- * Revision 1.2  2000/02/09 21:42:37  abagchi
- * Copyright swatswat
- *
- * Revision 1.1.1.1  1999/11/09 01:03:24  twl
- * Initial checkin
- *
- * Revision 1.2  1999/11/08 20:45:39  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDef.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDef.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDef.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDef.hpp Thu Jun 16 19:56:35 2005
@@ -15,49 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.10  2004/09/20 14:47:13  amassari
- * Mark some methods as deprecated
- *
- * Revision 1.9  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.8  2004/01/29 11:52:30  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.7  2003/12/17 00:18:40  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.6  2003/10/10 16:24:51  peiyongz
- * Implementation of Serialization/Deserialization
- *
- * Revision 1.5  2003/05/16 21:43:19  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.4  2003/05/15 18:54:50  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.3  2003/01/29 19:46:40  gareth
- * added DOMTypeInfo API
- *
- * Revision 1.2  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
- * sane_include
- *
- * Revision 1.3  2000/02/24 20:16:48  abagchi
- * Swat for removing Log from API docs
- *
- * Revision 1.2  2000/02/09 21:42:37  abagchi
- * Copyright swat
- *
- * Revision 1.1.1.1  1999/11/09 01:03:26  twl
- * Initial checkin
- *
- * Revision 1.2  1999/11/08 20:45:39  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 #if !defined(DTDATTDEF_HPP)

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDefList.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDefList.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDefList.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDefList.cpp Thu Jun 16 19:56:35 2005
@@ -15,51 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.10  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.9  2004/01/29 11:52:30  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.8  2003/12/17 00:18:40  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.7  2003/11/13 23:19:49  peiyongz
- * initSize
- *
- * Revision 1.6  2003/11/10 21:54:51  neilg
- * implementation for new stateless means of traversing attribute definition lists
- *
- * Revision 1.5  2003/10/20 11:46:28  gareth
- * Pass in memory manager to constructors and use for creation of enumerators.
- *
- * Revision 1.4  2003/10/17 21:14:30  peiyongz
- * using XTemplateSerializer
- *
- * Revision 1.3  2003/10/10 16:24:51  peiyongz
- * Implementation of Serialization/Deserialization
- *
- * Revision 1.2  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
- * sane_include
- *
- * Revision 1.3  2000/03/02 19:55:39  roddey
- * This checkin includes many changes done while waiting for the
- * 1.1.0 code to be finished. I can't list them all here, but a list is
- * available elsewhere.
- *
- * Revision 1.2  2000/02/09 21:42:37  abagchi
- * Copyright swatswat
- *
- * Revision 1.1.1.1  1999/11/09 01:03:27  twl
- * Initial checkin
- *
- * Revision 1.2  1999/11/08 20:45:39  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDefList.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDefList.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDefList.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDAttDefList.hpp Thu Jun 16 19:56:35 2005
@@ -15,43 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.8  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.7  2004/01/29 11:52:30  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.6  2003/11/10 21:54:51  neilg
- * implementation for new stateless means of traversing attribute definition lists
- *
- * Revision 1.5  2003/10/20 11:46:28  gareth
- * Pass in memory manager to constructors and use for creation of enumerators.
- *
- * Revision 1.4  2003/10/10 16:24:51  peiyongz
- * Implementation of Serialization/Deserialization
- *
- * Revision 1.3  2002/12/06 13:27:22  tng
- * [Bug 9083] Make some classes be exportable.
- *
- * Revision 1.2  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
- * sane_include
- *
- * Revision 1.3  2000/02/24 20:16:48  abagchi
- * Swat for removing Log from API docs
- *
- * Revision 1.2  2000/02/09 21:42:37  abagchi
- * Copyright swat
- *
- * Revision 1.1.1.1  1999/11/09 01:03:28  twl
- * Initial checkin
- *
- * Revision 1.2  1999/11/08 20:45:39  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDElementDecl.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDElementDecl.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDElementDecl.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDElementDecl.hpp Thu Jun 16 19:56:35 2005
@@ -15,82 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.12  2004/10/28 20:18:26  peiyongz
- * Data member reshuffle
- *
- * Revision 1.11  2004/09/20 14:47:13  amassari
- * Mark some methods as deprecated
- *
- * Revision 1.10  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.9  2004/01/29 11:52:30  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.8  2003/12/12 18:35:44  peiyongz
- * getObjectType()
- *
- * Revision 1.7  2003/10/10 16:24:51  peiyongz
- * Implementation of Serialization/Deserialization
- *
- * Revision 1.6  2003/10/08 21:33:18  peiyongz
- * Synchronize ContentSpec/ContentModel/FormattedModel
- *
- * Revision 1.5  2003/05/16 21:43:19  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.4  2003/05/15 18:54:50  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.3  2003/01/29 19:46:40  gareth
- * added DOMTypeInfo API
- *
- * Revision 1.2  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
- * sane_include
- *
- * Revision 1.12  2001/09/05 20:49:10  knoaman
- * Fix for complexTypes with mixed content model.
- *
- * Revision 1.11  2001/08/21 16:06:11  tng
- * Schema: Unique Particle Attribution Constraint Checking.
- *
- * Revision 1.10  2001/05/11 13:27:08  tng
- * Copyright update.
- *
- * Revision 1.9  2001/04/19 18:17:20  tng
- * Schema: SchemaValidator update, and use QName in Content Model
- *
- * Revision 1.8  2001/03/21 21:56:19  tng
- * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
- *
- * Revision 1.7  2001/03/21 19:29:43  tng
- * Schema: Content Model Updates, by Pei Yong Zhang.
- *
- * Revision 1.6  2001/02/26 19:29:21  tng
- * Schema: add virtual method getURI(), getContentSpec and setContenSpec in XMLElementDecl, and DTDElementDecl.
- *
- * Revision 1.5  2001/02/26 19:22:02  tng
- * Schema: add parameter prefix in findElem and findAttr.
- *
- * Revision 1.4  2000/02/24 20:16:49  abagchi
- * Swat for removing Log from API docs
- *
- * Revision 1.3  2000/02/09 21:42:37  abagchi
- * Copyright swat
- *
- * Revision 1.2  1999/11/23 01:51:04  rahulj
- * Cannot use class qualifier in class defn. CC under HPUX is happy.
- *
- * Revision 1.1.1.1  1999/11/09 01:03:32  twl
- * Initial checkin
- *
- * Revision 1.3  1999/11/08 20:45:40  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDEntityDecl.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDEntityDecl.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDEntityDecl.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDEntityDecl.hpp Thu Jun 16 19:56:35 2005
@@ -15,41 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.6  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.5  2003/10/10 16:24:51  peiyongz
- * Implementation of Serialization/Deserialization
- *
- * Revision 1.4  2003/05/16 21:43:19  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.3  2003/03/07 18:17:12  tng
- * Return a reference instead of void for operator=
- *
- * Revision 1.2  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
- * sane_include
- *
- * Revision 1.4  2000/02/24 20:16:49  abagchi
- * Swat for removing Log from API docs
- *
- * Revision 1.3  2000/02/09 21:42:37  abagchi
- * Copyright swat
- *
- * Revision 1.2  2000/01/20 01:57:07  rahulj
- * Reported by marc@ist.de
- * Removed extra 'const' qualifiers.
- *
- * Revision 1.1.1.1  1999/11/09 01:03:34  twl
- * Initial checkin
- *
- * Revision 1.2  1999/11/08 20:45:40  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDGrammar.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDGrammar.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDGrammar.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDGrammar.cpp Thu Jun 16 19:56:35 2005
@@ -15,82 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.22  2004/10/28 20:18:26  peiyongz
- * Data member reshuffle
- *
- * Revision 1.21  2004/10/20 15:19:07  knoaman
- * Allow option of initializing static data in XMLPlatformUtils::Initialize
- *
- * Revision 1.20  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.19  2004/07/21 15:07:13  peiyongz
- * rewind previous change
- *
- * Revision 1.17  2004/03/03 23:03:28  peiyongz
- * Using serialize() to save/load object created in ctor
- *
- * Revision 1.16  2004/01/29 11:52:30  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.15  2004/01/13 16:17:09  knoaman
- * Fo sanity, use class name to qualify method
- *
- * Revision 1.14  2004/01/09 22:41:58  knoaman
- * Use a global static mutex for locking when creating local static mutexes instead of compareAndSwap
- *
- * Revision 1.13  2003/11/12 20:32:47  peiyongz
- * Do not serialize/deserialize fElemNonDeclPool
- *
- * Revision 1.12  2003/11/06 15:03:45  peiyongz
- * initialize data member
- *
- * Revision 1.11  2003/10/17 21:14:30  peiyongz
- * using XTemplateSerializer
- *
- * Revision 1.10  2003/10/14 15:20:42  peiyongz
- * Implementation of Serialization/Deserialization
- *
- * Revision 1.9  2003/09/22 19:49:02  neilg
- * implement change to Grammar::putElem(XMLElementDecl, bool).  If Grammars are used only to hold declared objects, there will be no need for the fElemNonDeclPool tables; make Grammar implementations lazily create them only if the application requires them (which good cpplications should not.)
- *
- * Revision 1.8  2003/08/14 03:00:46  knoaman
- * Code refactoring to improve performance of validation.
- *
- * Revision 1.7  2003/07/31 17:09:59  peiyongz
- * Grammar embed grammar description
- *
- * Revision 1.6  2003/05/18 14:02:06  knoaman
- * Memory manager implementation: pass per instance manager.
- *
- * Revision 1.5  2003/05/15 18:54:50  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.4  2002/12/04 02:47:25  knoaman
- * scanner re-organization.
- *
- * Revision 1.3  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.2  2002/07/11 18:19:28  knoaman
- * Grammar caching/preparsing - initial implementation.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
- * sane_include
- *
- * Revision 1.4  2001/09/14 14:50:22  tng
- * Schema: Fix some wildcard bugs, and some retrieving qualified/unqualified element decl problems.
- *
- * Revision 1.3  2001/05/11 13:27:08  tng
- * Copyright update.
- *
- * Revision 1.2  2001/04/19 18:17:20  tng
- * Schema: SchemaValidator update, and use QName in Content Model
- *
- * Revision 1.1  2001/03/21 21:56:20  tng
- * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDGrammar.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDGrammar.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDGrammar.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDGrammar.hpp Thu Jun 16 19:56:35 2005
@@ -15,73 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.17  2004/10/28 20:18:26  peiyongz
- * Data member reshuffle
- *
- * Revision 1.16  2004/10/20 15:19:07  knoaman
- * Allow option of initializing static data in XMLPlatformUtils::Initialize
- *
- * Revision 1.15  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.14  2004/01/29 11:52:30  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.13  2003/12/22 15:22:58  gareth
- * made getRootElemID const. Bug #25699
- *
- * Revision 1.12  2003/12/17 00:18:40  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.11  2003/10/14 15:20:42  peiyongz
- * Implementation of Serialization/Deserialization
- *
- * Revision 1.10  2003/09/22 19:49:02  neilg
- * implement change to Grammar::putElem(XMLElementDecl, bool).  If Grammars are used only to hold declared objects, there will be no need for the fElemNonDeclPool tables; make Grammar implementations lazily create them only if the application requires them (which good cpplications should not.)
- *
- * Revision 1.9  2003/08/14 03:00:46  knoaman
- * Code refactoring to improve performance of validation.
- *
- * Revision 1.8  2003/07/31 17:09:59  peiyongz
- * Grammar embed grammar description
- *
- * Revision 1.7  2003/05/16 21:43:19  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.6  2003/05/15 18:54:50  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.5  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.4  2002/08/22 15:05:39  tng
- * Remove unused parameter variables in inline functions.
- *
- * Revision 1.3  2002/07/11 18:19:28  knoaman
- * Grammar caching/preparsing - initial implementation.
- *
- * Revision 1.2  2002/07/05 17:08:10  tng
- * [Bug 10119] Grammar::getGrammarType need a const modifier
- *
- * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
- * sane_include
- *
- * Revision 1.5  2001/09/14 14:50:22  tng
- * Schema: Fix some wildcard bugs, and some retrieving qualified/unqualified element decl problems.
- *
- * Revision 1.4  2001/05/28 20:56:17  tng
- * Schema: Move getTargetNamespace as virtual function in base class Grammar
- *
- * Revision 1.3  2001/05/11 13:27:09  tng
- * Copyright update.
- *
- * Revision 1.2  2001/04/19 18:17:21  tng
- * Schema: SchemaValidator update, and use QName in Content Model
- *
- * Revision 1.1  2001/03/21 21:56:20  tng
- * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDScanner.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDScanner.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDScanner.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDScanner.cpp Thu Jun 16 19:56:35 2005
@@ -15,209 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.39  2005/04/05 15:12:36  cargilld
- * Implement support for disabling default entity resolution.
- *
- * Revision 1.38  2005/03/20 19:02:45  cargilld
- * Implement versions of uppercase and compareIstring that only check a to z, instead of all characters, and don't rely on functionality provided in the transcoders.
- *
- * Revision 1.37  2005/01/07 15:28:49  amassari
- * Removed warnings
- *
- * Revision 1.36  2004/12/14 02:06:40  cargilld
- * More error message updates.
- *
- * Revision 1.35  2004/09/30 13:14:27  amassari
- * Fix jira#1280 - Borland leaks memory if break or continue are used inside a catch block
- *
- * Revision 1.34  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.33  2004/07/06 15:57:55  amassari
- * Fix for jira#1226: when a 32 bit entity is encountered, reset the secondCh variable after using it
- *
- * Revision 1.32  2004/01/29 11:52:30  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.31  2003/12/31 15:40:00  cargilld
- * Release memory when an error is encountered.
- *
- * Revision 1.30  2003/12/17 00:18:40  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.29  2003/10/01 16:32:41  neilg
- * improve handling of out of memory conditions, bug #23415.  Thanks to David Cargill.
- *
- * Revision 1.28  2003/07/10 19:50:12  peiyongz
- * Stateless Grammar: create grammar components with grammarPool's memory Manager
- *
- * Revision 1.27  2003/05/18 14:02:06  knoaman
- * Memory manager implementation: pass per instance manager.
- *
- * Revision 1.26  2003/05/16 21:43:19  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.25  2003/05/15 18:54:50  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.24  2003/03/10 15:28:07  tng
- * XML1.0 Errata E38
- *
- * Revision 1.23  2003/02/05 22:07:09  tng
- * [Bug 3111] Problem with LexicalHandler::startDTD() and LexicalHandler::endDTD().
- *
- * Revision 1.22  2003/01/20 22:01:38  tng
- * Need to check text decl when expanding PE
- *
- * Revision 1.21  2003/01/16 21:30:14  tng
- * [Bug 16151] Memory leak in DTDScanner with ill-formed DTD declaration.  Fix by David Bertoni.
- *
- * Revision 1.20  2002/12/24 16:12:19  tng
- * For performance reason, move the character check to scancharref.
- *
- * Revision 1.19  2002/12/20 22:10:47  tng
- * XML 1.1
- *
- * Revision 1.18  2002/12/18 14:17:55  gareth
- * Fix to bug #13438. When you eant a vector that calls delete[] on its members you should use RefArrayVectorOf.
- *
- * Revision 1.17  2002/12/04 02:47:25  knoaman
- * scanner re-organization.
- *
- * Revision 1.16  2002/11/14 22:34:11  tng
- * [Bug 14265] Access violation with Null systemId/publicId in DTDScanner
- *
- * Revision 1.15  2002/11/05 21:40:36  tng
- * Oasis test fix:
- * 1.  Should check if content model allow character for CDataSection case
- * 2. Should check partial markup in entity for INCLUDE and IGNORE scenario
- * 3. If standalone is yes, reference to entity where its declaration is external is a well-formness fatal error (XML 1.0 Section 4.1)
- * If standalone is yes, reference to parameter entity where is declaration is external is a validity constraint (XML 1.0 Section 2.9)
- * 4.  XML 1.0 Section 2.8 Partial markup in parameter entity reference.
- * If it is a complete declaration, partial markup is a fatal error.
- *
- * Revision 1.14  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.13  2002/09/24 20:10:30  tng
- * Performance: use XMLString::equals instead of XMLString::compareString
- *
- * Revision 1.12  2002/08/22 21:05:29  tng
- * [Bug 7475] Xerces-C++ reports validation error with Docbook.
- *
- * Revision 1.11  2002/08/22 20:26:01  tng
- * [Bug 7512] Wrong error message created .
- *
- * Revision 1.10  2002/08/22 19:29:13  tng
- * [Bug 11448] DomCount has problems with XHTML1.1 DTD.
- *
- * Revision 1.9  2002/08/19 14:40:31  tng
- * Fix: public id / system id in entity decl should be null if empty
- *
- * Revision 1.8  2002/07/26 13:33:44  knoaman
- * Public/System id for notations should be stored as NULL if missing.
- *
- * Revision 1.7  2002/07/11 18:39:48  knoaman
- * Access entities through the DTDGrammar instead of the scanner.
- *
- * Revision 1.6  2002/06/06 20:36:33  tng
- * Fix: Valid encoding name is not checked in scanning Text Decl
- *
- * Revision 1.5  2002/05/30 16:17:19  tng
- * Add feature to optionally ignore external DTD.
- *
- * Revision 1.4  2002/05/03 14:51:16  peiyongz
- * Bug#8769: UMR detected by memory tool - patch from Kenneth Palsson
- *
- * Revision 1.3  2002/02/28 22:34:36  peiyongz
- * Bug#2717: patch to Unterminated INCLUDE section causes infinite loop with setExitOnFirstFatalError(false)
- *
- * Revision 1.2  2002/02/26 21:06:53  knoaman
- * Create ZeroOrOne node only if needed.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:44  peiyongz
- * sane_include
- *
- * Revision 1.25  2002/01/24 16:30:50  tng
- * [Bug 3111] Problem with LexicalHandler::startDTD() and LexicalHandler::endDTD() .
- *
- * Revision 1.24  2001/12/17 15:39:14  knoaman
- * Fix for surrogate pair support.
- *
- * Revision 1.23  2001/12/14 20:21:37  knoaman
- * Add surrogate support to comments and processing instrunctions.
- *
- * Revision 1.22  2001/12/06 17:51:18  tng
- * Performance Enhancement. The ContentSpecNode constructor always copied the QName
- * that was passed to it.  Added a second constructor that allows the QName to be just assigned, not copied.
- * That was because there are some cases in which a temporary QName was constructed, passed to ContentSpecNode, and then deleted.
- * There were examples of that in TraverseSchema and DTDScanner.
- * By Henry Zongaro.
- *
- * Revision 1.21  2001/11/13 13:27:28  tng
- * Move root element check to XMLScanner.
- *
- * Revision 1.20  2001/09/05 20:49:10  knoaman
- * Fix for complexTypes with mixed content model.
- *
- * Revision 1.19  2001/08/02 16:54:39  tng
- * Reset some Scanner flags in scanReset().
- *
- * Revision 1.18  2001/07/13 16:57:11  tng
- * ScanId fix.
- *
- * Revision 1.17  2001/07/12 20:10:18  tng
- * Partial Markup in Parameter Entity is validity constraint and thus should be just error, not fatal error.
- *
- * Revision 1.16  2001/07/10 21:09:39  tng
- * Give proper error messsage when scanning external id.
- *
- * Revision 1.15  2001/07/10 20:56:17  tng
- * Should check the first char of PI Target Name.
- *
- * Revision 1.14  2001/07/09 13:42:20  tng
- * Partial Markup in Parameter Entity is validity constraint and thus should be just error, not fatal error.
- *
- * Revision 1.13  2001/07/05 14:05:29  tng
- * Encoding String must present for external entity text decl.
- *
- * Revision 1.12  2001/07/05 13:12:19  tng
- * Standalone checking is validity constraint and thus should be just error, not fatal error:
- *
- * Revision 1.11  2001/06/25 14:39:54  knoaman
- * Fix bug #965 - submitted by Matt Lovett
- *
- * Revision 1.10  2001/06/22 12:42:33  tng
- * [Bug 2257] 1.5 thinks a <?xml-stylesheet ...> tag is a <?xml ...> tag
- *
- * Revision 1.9  2001/06/21 14:25:53  knoaman
- * Fix for bug 1946
- *
- * Revision 1.8  2001/06/04 13:25:50  tng
- * the start tag "<?xml" could be followed by (#x20 | #x9 | #xD | #xA)+.  Fixed by Pei Yong Zhang.
- *
- * Revision 1.7  2001/05/28 20:54:06  tng
- * Schema: allocate a fDTDValidator, fSchemaValidator explicitly to avoid wrong cast
- *
- * Revision 1.6  2001/05/11 13:27:09  tng
- * Copyright update.
- *
- * Revision 1.5  2001/05/03 20:34:36  tng
- * Schema: SchemaValidator update
- *
- * Revision 1.4  2001/04/23 18:54:35  tng
- * Reuse grammar should allow users to use any stored element decl as root.  Fixed by Erik Rydgren.
- *
- * Revision 1.3  2001/04/19 18:17:21  tng
- * Schema: SchemaValidator update, and use QName in Content Model
- *
- * Revision 1.2  2001/03/30 16:35:17  tng
- * Schema: Whitespace normalization.
- *
- * Revision 1.1  2001/03/21 21:56:20  tng
- * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDScanner.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDScanner.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDScanner.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDScanner.hpp Thu Jun 16 19:56:35 2005
@@ -15,52 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.11  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.10  2004/01/29 11:52:30  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.9  2003/07/10 19:50:12  peiyongz
- * Stateless Grammar: create grammar components with grammarPool's memory Manager
- *
- * Revision 1.8  2003/05/16 21:43:19  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.7  2003/05/15 18:54:51  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.6  2003/02/05 22:07:09  tng
- * [Bug 3111] Problem with LexicalHandler::startDTD() and LexicalHandler::endDTD().
- *
- * Revision 1.5  2002/12/04 02:47:25  knoaman
- * scanner re-organization.
- *
- * Revision 1.4  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.3  2002/07/11 18:39:48  knoaman
- * Access entities through the DTDGrammar instead of the scanner.
- *
- * Revision 1.2  2002/05/30 16:17:19  tng
- * Add feature to optionally ignore external DTD.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:44  peiyongz
- * sane_include
- *
- * Revision 1.4  2001/06/21 14:25:56  knoaman
- * Fix for bug 1946
- *
- * Revision 1.3  2001/05/11 13:27:10  tng
- * Copyright update.
- *
- * Revision 1.2  2001/04/19 18:17:22  tng
- * Schema: SchemaValidator update, and use QName in Content Model
- *
- * Revision 1.1  2001/03/21 21:56:20  tng
- * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDValidator.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDValidator.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDValidator.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DTDValidator.hpp Thu Jun 16 19:56:35 2005
@@ -15,84 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.9  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.8  2004/04/21 18:00:13  peiyongz
- * xml1.0 3rd edition VC: no more than one attibute of notation type per element,
- * distinct token for attribute of notation/enumerated type
- *
- * Revision 1.7  2004/01/29 11:52:30  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.6  2002/11/07 21:58:56  tng
- * Pass elemDecl to XMLValidator::validateAttrValue so that we can include element name in error message.
- *
- * Revision 1.5  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.4  2002/09/04 18:17:49  tng
- * Do not set IDREF to used during prevalidation.
- *
- * Revision 1.3  2002/08/22 15:05:40  tng
- * Remove unused parameter variables in inline functions.
- *
- * Revision 1.2  2002/07/11 18:55:44  knoaman
- * Add a flag to the preContentValidation method to indicate whether to validate
- * default/fixed attributes or not.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:45  peiyongz
- * sane_include
- *
- * Revision 1.13  2001/11/13 13:25:28  tng
- * Deprecate function XMLValidator::checkRootElement.
- *
- * Revision 1.12  2001/06/05 16:51:20  knoaman
- * Add 'const' to getGrammar - submitted by Peter A. Volchek.
- *
- * Revision 1.11  2001/05/11 13:27:11  tng
- * Copyright update.
- *
- * Revision 1.10  2001/05/03 20:34:37  tng
- * Schema: SchemaValidator update
- *
- * Revision 1.9  2001/04/19 18:17:23  tng
- * Schema: SchemaValidator update, and use QName in Content Model
- *
- * Revision 1.8  2001/03/21 21:56:21  tng
- * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
- *
- * Revision 1.7  2001/02/26 19:22:08  tng
- * Schema: add parameter prefix in findElem and findAttr.
- *
- * Revision 1.6  2000/08/09 22:08:48  jpolast
- * added const XMLCh* getURIText() as per XMLValidator.
- * allows parsers to use const URIs instead of appending
- * to a XMLBuffer.
- *
- * Revision 1.5  2000/04/06 19:00:07  roddey
- * Added a getter for the doc type handler.
- *
- * Revision 1.4  2000/02/24 20:16:49  abagchi
- * Swat for removing Log from API docs
- *
- * Revision 1.3  2000/02/09 21:42:38  abagchi
- * Copyright swat
- *
- * Revision 1.2  2000/01/12 23:52:48  roddey
- * These are trivial changes required to get the C++ and Java versions
- * of error messages more into sync. Mostly it was where the Java version
- * was passing out one or more parameter than the C++ version was. In
- * some cases the change just required an extra parameter to get the
- * needed info to the place where the error was issued.
- *
- * Revision 1.1.1.1  1999/11/09 01:03:36  twl
- * Initial checkin
- *
- * Revision 1.5  1999/11/08 20:45:41  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DocTypeHandler.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DocTypeHandler.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DocTypeHandler.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/DocTypeHandler.hpp Thu Jun 16 19:56:35 2005
@@ -15,42 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.5  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.4  2003/03/07 18:17:12  tng
- * Return a reference instead of void for operator=
- *
- * Revision 1.3  2002/11/04 14:50:40  tng
- * C++ Namespace Support.
- *
- * Revision 1.2  2002/08/14 15:20:38  knoaman
- * [Bug 3111] Problem with LexicalHandler::startDTD() and LexicalHandler::endDTD().
- *
- * Revision 1.1.1.1  2002/02/01 22:22:43  peiyongz
- * sane_include
- *
- * Revision 1.5  2001/06/19 16:43:46  tng
- * Correct description of DocTypeHandler
- *
- * Revision 1.4  2000/03/02 19:55:39  roddey
- * This checkin includes many changes done while waiting for the
- * 1.1.0 code to be finished. I can't list them all here, but a list is
- * available elsewhere.
- *
- * Revision 1.3  2000/02/24 20:16:49  abagchi
- * Swat for removing Log from API docs
- *
- * Revision 1.2  2000/02/09 21:42:39  abagchi
- * Copyright swat
- *
- * Revision 1.1.1.1  1999/11/09 01:03:21  twl
- * Initial checkin
- *
- * Revision 1.2  1999/11/08 20:45:43  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/XMLDTDDescriptionImpl.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/XMLDTDDescriptionImpl.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/XMLDTDDescriptionImpl.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/XMLDTDDescriptionImpl.cpp Thu Jun 16 19:56:35 2005
@@ -15,27 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.6  2004/10/28 20:18:39  peiyongz
- * store/load fSystemId
- *
- * Revision 1.5  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.4  2004/04/07 14:10:04  peiyongz
- * systemId (to replace rootElemName) as DTDGrammar Key
- *
- * Revision 1.3  2004/03/03 23:04:38  peiyongz
- * deallocate fRootName when loaded
- *
- * Revision 1.2  2003/10/14 15:20:42  peiyongz
- * Implementation of Serialization/Deserialization
- *
- * Revision 1.1  2003/06/20 18:39:33  peiyongz
- * Stateless Grammar Pool :: Part I
- *
  * $Id$
- *
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/XMLDTDDescriptionImpl.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/XMLDTDDescriptionImpl.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/XMLDTDDescriptionImpl.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/DTD/XMLDTDDescriptionImpl.hpp Thu Jun 16 19:56:35 2005
@@ -15,21 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.4  2004/09/08 13:56:50  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.3  2004/04/07 14:10:04  peiyongz
- * systemId (to replace rootElemName) as DTDGrammar Key
- *
- * Revision 1.2  2003/10/14 15:20:42  peiyongz
- * Implementation of Serialization/Deserialization
- *
- * Revision 1.1  2003/06/20 18:39:33  peiyongz
- * Stateless Grammar Pool :: Part I
- *
  * $Id$
- *
  */
 
 #if !defined(XMLDTDDescriptionImplIMPL_HPP)

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/common/AllContentModel.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/common/AllContentModel.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/common/AllContentModel.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/common/AllContentModel.cpp Thu Jun 16 19:56:35 2005
@@ -15,50 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.11  2004/11/25 14:36:40  knoaman
- * Fix problem with an All content model with minOccurs of 0.
- *
- * Revision 1.10  2004/09/16 13:32:03  amassari
- * Updated error message for UPA to also state the complex type that is failing the test
- *
- * Revision 1.9  2004/09/08 13:56:51  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.8  2004/01/29 11:51:21  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.7  2003/12/17 00:18:38  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.6  2003/11/20 18:09:18  knoaman
- * Store a copy of each child, instead of a reference, as the content spec node
- * tree is not guaranteed to be persistent.
- *
- * Revision 1.5  2003/05/18 14:02:06  knoaman
- * Memory manager implementation: pass per instance manager.
- *
- * Revision 1.4  2003/05/15 18:48:27  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.3  2002/11/04 14:54:58  tng
- * C++ Namespace Support.
- *
- * Revision 1.2  2002/09/24 19:48:39  tng
- * Performance: use XMLString::equals instead of XMLString::compareString
- *
- * Revision 1.1.1.1  2002/02/01 22:22:37  peiyongz
- * sane_include
- *
- * Revision 1.3  2001/11/21 14:30:13  knoaman
- * Fix for UPA checking.
- *
- * Revision 1.2  2001/08/27 12:19:00  tng
- * Schema: AllContentModel UPA Check typo fix
- *
- * Revision 1.1  2001/08/24 12:48:48  tng
- * Schema: AllContentModel
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/common/AllContentModel.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/common/AllContentModel.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/common/AllContentModel.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/common/AllContentModel.hpp Thu Jun 16 19:56:35 2005
@@ -15,40 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.9  2004/11/25 14:36:40  knoaman
- * Fix problem with an All content model with minOccurs of 0.
- *
- * Revision 1.8  2004/09/16 13:32:03  amassari
- * Updated error message for UPA to also state the complex type that is failing the test
- *
- * Revision 1.7  2004/09/08 13:56:51  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.6  2004/01/29 11:51:21  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.5  2003/05/16 21:43:20  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.4  2003/05/15 18:48:27  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.3  2003/03/07 18:16:57  tng
- * Return a reference instead of void for operator=
- *
- * Revision 1.2  2002/11/04 14:54:58  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:37  peiyongz
- * sane_include
- *
- * Revision 1.2  2001/11/21 14:30:13  knoaman
- * Fix for UPA checking.
- *
- * Revision 1.1  2001/08/24 12:48:48  tng
- * Schema: AllContentModel
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMAny.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMAny.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMAny.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMAny.cpp Thu Jun 16 19:56:35 2005
@@ -15,40 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.5  2004/09/08 13:56:51  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.4  2003/12/17 00:18:38  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.3  2003/05/15 18:48:27  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.2  2002/11/04 14:54:58  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:37  peiyongz
- * sane_include
- *
- * Revision 1.6  2001/08/08 13:23:27  knoaman
- * Fix condition check.
- *
- * Revision 1.5  2001/07/09 15:22:35  knoaman
- * complete <any> declaration.
- *
- * Revision 1.4  2001/06/07 20:58:38  tng
- * Fix no newline at the end warning.  By Pei Yong Zhang.
- *
- * Revision 1.3  2001/05/11 13:27:14  tng
- * Copyright update.
- *
- * Revision 1.2  2001/05/03 21:02:27  tng
- * Schema: Add SubstitutionGroupComparator and update exception messages.  By Pei Yong Zhang.
- *
- * Revision 1.1  2001/02/27 14:48:45  tng
- * Schema: Add CMAny and ContentLeafNameTypeVector, by Pei Yong Zhang
- *
+ * $Id$
  */
 
 // ---------------------------------------------------------------------------

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMAny.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMAny.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMAny.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMAny.hpp Thu Jun 16 19:56:35 2005
@@ -15,31 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.6  2004/09/08 13:56:51  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.5  2004/01/29 11:51:21  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.4  2003/05/16 21:43:20  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.3  2003/05/15 18:48:27  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.2  2002/11/04 14:54:58  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:37  peiyongz
- * sane_include
- *
- * Revision 1.2  2001/05/11 13:27:14  tng
- * Copyright update.
- *
- * Revision 1.1  2001/02/27 14:48:46  tng
- * Schema: Add CMAny and ContentLeafNameTypeVector, by Pei Yong Zhang
- *
+ * $Id$
  */
 
 #if !defined(CMANY_HPP)

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMBinaryOp.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMBinaryOp.cpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMBinaryOp.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMBinaryOp.cpp Thu Jun 16 19:56:35 2005
@@ -15,53 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.7  2004/09/08 13:56:51  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.6  2003/12/17 00:18:38  cargilld
- * Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
- *
- * Revision 1.5  2003/11/20 18:12:20  knoaman
- * Use a bitwise operation to check the node type.
- *
- * Revision 1.4  2003/11/07 17:08:11  knoaman
- * For PSVI support, distinguish wildcard elements with namespace lists.
- *
- * Revision 1.3  2003/05/15 18:48:27  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.2  2002/11/04 14:54:58  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:37  peiyongz
- * sane_include
- *
- * Revision 1.3  2001/05/11 13:27:15  tng
- * Copyright update.
- *
- * Revision 1.2  2001/02/16 14:58:57  tng
- * Schema: Update Makefile, configure files, project files, and include path in
- * certain cpp files because of the move of the common Content Model files.  By Pei Yong Zhang.
- *
- * Revision 1.1  2001/02/16 14:17:29  tng
- * Schema: Move the common Content Model files that are shared by DTD
- * and schema from 'DTD' folder to 'common' folder.  By Pei Yong Zhang.
- *
- * Revision 1.3  2000/03/02 19:55:37  roddey
- * This checkin includes many changes done while waiting for the
- * 1.1.0 code to be finished. I can't list them all here, but a list is
- * available elsewhere.
- *
- * Revision 1.2  2000/02/09 21:42:36  abagchi
- * Copyright swatswat
- *
- * Revision 1.1.1.1  1999/11/09 01:03:00  twl
- * Initial checkin
- *
- * Revision 1.2  1999/11/08 20:45:35  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMBinaryOp.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMBinaryOp.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMBinaryOp.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMBinaryOp.hpp Thu Jun 16 19:56:35 2005
@@ -15,53 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.6  2004/09/08 13:56:51  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.5  2004/01/29 11:51:21  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.4  2003/05/16 21:43:20  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.3  2003/05/15 18:48:27  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.2  2002/11/04 14:54:58  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:37  peiyongz
- * sane_include
- *
- * Revision 1.3  2001/05/11 13:27:16  tng
- * Copyright update.
- *
- * Revision 1.2  2001/02/16 14:58:57  tng
- * Schema: Update Makefile, configure files, project files, and include path in
- * certain cpp files because of the move of the common Content Model files.  By Pei Yong Zhang.
- *
- * Revision 1.1  2001/02/16 14:17:29  tng
- * Schema: Move the common Content Model files that are shared by DTD
- * and schema from 'DTD' folder to 'common' folder.  By Pei Yong Zhang.
- *
- * Revision 1.4  2000/03/02 19:55:37  roddey
- * This checkin includes many changes done while waiting for the
- * 1.1.0 code to be finished. I can't list them all here, but a list is
- * available elsewhere.
- *
- * Revision 1.3  2000/02/24 20:16:47  abagchi
- * Swat for removing Log from API docs
- *
- * Revision 1.2  2000/02/09 21:42:36  abagchi
- * Copyright swat
- *
- * Revision 1.1.1.1  1999/11/09 01:03:02  twl
- * Initial checkin
- *
- * Revision 1.2  1999/11/08 20:45:35  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 #if !defined(CMBINARYOP_HPP)

Modified: xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMLeaf.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMLeaf.hpp?rev=191054&r1=191053&r2=191054&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMLeaf.hpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/validators/common/CMLeaf.hpp Thu Jun 16 19:56:35 2005
@@ -15,78 +15,7 @@
  */
 
 /*
- * $Log$
- * Revision 1.8  2004/09/08 13:56:51  peiyongz
- * Apache License Version 2.0
- *
- * Revision 1.7  2004/01/29 11:51:21  cargilld
- * Code cleanup changes to get rid of various compiler diagnostic messages.
- *
- * Revision 1.6  2003/05/30 16:11:45  gareth
- * Fixes so we compile under VC7.1. Patch by Alberto Massari.
- *
- * Revision 1.5  2003/05/18 14:02:06  knoaman
- * Memory manager implementation: pass per instance manager.
- *
- * Revision 1.4  2003/05/16 21:43:20  knoaman
- * Memory manager implementation: Modify constructors to pass in the memory manager.
- *
- * Revision 1.3  2003/05/15 18:48:27  knoaman
- * Partial implementation of the configurable memory manager.
- *
- * Revision 1.2  2002/11/04 14:54:58  tng
- * C++ Namespace Support.
- *
- * Revision 1.1.1.1  2002/02/01 22:22:37  peiyongz
- * sane_include
- *
- * Revision 1.6  2001/12/06 17:52:17  tng
- * Performance Enhancement.  The QName that was passed to the CMLeaf
- * constructor was always being copied, even though the CMLeaf objects
- * only existed during construction of a DFA.  In most cases the original
- * QName that was passed into the CMLeaf constructor continued to exist long
- * after the CMLeaf was destroyed; in some cases the QName was constructed
- * specifically to be passed to the CMLeaf constructor.  Added a second CMLeaf constructor that indicated the QName passed in was to be adopted; otherwise the CMLeaf constructor just sets a reference to the QName passed in.
- * By Henry Zongaro.
- *
- * Revision 1.5  2001/10/03 15:08:45  tng
- * typo fix: remove the extra space which may confuse some compilers while constructing the qname.
- *
- * Revision 1.4  2001/05/11 13:27:16  tng
- * Copyright update.
- *
- * Revision 1.3  2001/04/19 18:17:27  tng
- * Schema: SchemaValidator update, and use QName in Content Model
- *
- * Revision 1.2  2001/02/16 14:58:57  tng
- * Schema: Update Makefile, configure files, project files, and include path in
- * certain cpp files because of the move of the common Content Model files.  By Pei Yong Zhang.
- *
- * Revision 1.1  2001/02/16 14:17:29  tng
- * Schema: Move the common Content Model files that are shared by DTD
- * and schema from 'DTD' folder to 'common' folder.  By Pei Yong Zhang.
- *
- * Revision 1.5  2000/03/28 19:43:25  roddey
- * Fixes for signed/unsigned warnings. New work for two way transcoding
- * stuff.
- *
- * Revision 1.4  2000/03/02 19:55:37  roddey
- * This checkin includes many changes done while waiting for the
- * 1.1.0 code to be finished. I can't list them all here, but a list is
- * available elsewhere.
- *
- * Revision 1.3  2000/02/24 20:16:47  abagchi
- * Swat for removing Log from API docs
- *
- * Revision 1.2  2000/02/09 21:42:36  abagchi
- * Copyright swat
- *
- * Revision 1.1.1.1  1999/11/09 01:03:04  twl
- * Initial checkin
- *
- * Revision 1.2  1999/11/08 20:45:36  rahul
- * Swat for adding in Product name and CVS comment log variable.
- *
+ * $Id$
  */
 
 #if !defined(CMLEAF_HPP)



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