You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ne...@apache.org on 2001/05/01 16:50:42 UTC

cvs commit: xml-xerces/java/src/org/apache/xerces/validators/schema/identity Makefile

neilg       01/05/01 07:50:42

  Modified:    java/src/org/apache/xerces/validators/schema
                        TraverseSchema.java Makefile
               java/src/org/apache/xerces/validators/schema/identity
                        Makefile
  Log:
  fixes to build files to accomodate class additions; plus a minor bugfix.
  
  Revision  Changes    Path
  1.137     +4 -4      xml-xerces/java/src/org/apache/xerces/validators/schema/TraverseSchema.java
  
  Index: TraverseSchema.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/validators/schema/TraverseSchema.java,v
  retrieving revision 1.136
  retrieving revision 1.137
  diff -u -r1.136 -r1.137
  --- TraverseSchema.java	2001/05/01 14:17:44	1.136
  +++ TraverseSchema.java	2001/05/01 14:50:37	1.137
  @@ -127,7 +127,7 @@
    *  
    * @see org.apache.xerces.validators.common.Grammar
    *
  - * @version $Id: TraverseSchema.java,v 1.136 2001/05/01 14:17:44 neilg Exp $
  + * @version $Id: TraverseSchema.java,v 1.137 2001/05/01 14:50:37 neilg Exp $
    */
   public class TraverseSchema implements 
                               NamespacesScope.NamespacesHandler{
  @@ -4909,13 +4909,13 @@
           
           // General Attribute Checking
           int scope = GeneralAttrCheck.ELE_CONTEXT_LOCAL;
  -        Hashtable attrValues = fGeneralAttrCheck.checkAttributes(icelem, scope);
  +        Hashtable attrValues = fGeneralAttrCheck.checkAttributes(icElem, scope);
   
           // check for <annotation> and get selector
           Element sElem = XUtil.getFirstChildElement(icElem);
           sElem = checkContent( icElem, sElem, false);
           // General Attribute Checking
  -        attrValues = fGeneralAttrCheck.checkAttributes(selem, scope);
  +        attrValues = fGeneralAttrCheck.checkAttributes(sElem, scope);
   
           if(!sElem.getLocalName().equals(SchemaSymbols.ELT_SELECTOR)) {
               // REVISIT: localize
  @@ -4952,7 +4952,7 @@
   
           while (fElem != null) {
               // General Attribute Checking
  -            attrValues = fGeneralAttrCheck.checkAttributes(felem, scope);
  +            attrValues = fGeneralAttrCheck.checkAttributes(fElem, scope);
   
               if(!fElem.getLocalName().equals(SchemaSymbols.ELT_FIELD))
                   // REVISIT: localize
  
  
  
  1.10      +1 -0      xml-xerces/java/src/org/apache/xerces/validators/schema/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/validators/schema/Makefile,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Makefile	2001/01/25 07:18:48	1.9
  +++ Makefile	2001/05/01 14:50:39	1.10
  @@ -1,6 +1,7 @@
   # Makefile for directory ./org/apache/xerces/validators/schema
   
   TARGETS=\
  +    GeneralAttrCheck.class\
   	SubstitutionGroupComparator.class\
   	SchemaGrammar.class\
   	SchemaMessageProvider.class\
  
  
  
  1.2       +1 -0      xml-xerces/java/src/org/apache/xerces/validators/schema/identity/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/validators/schema/identity/Makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile	2001/01/18 07:10:55	1.1
  +++ Makefile	2001/05/01 14:50:41	1.2
  @@ -4,6 +4,7 @@
   	Field.class\
   	FieldActivator.class\
   	IdentityConstraint.class\
  +	IDValue.class\
   	Key.class\
   	KeyRef.class\
   	Selector.class\
  
  
  

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