Diff for /Amaya/amaya/styleparser.c between versions 1.105 and 1.106

version 1.105, 2001/10/05 17:02:32 version 1.106, 2001/10/12 13:02:27
Line 3614  static char *ParseGenericSelector (char Line 3614  static char *ParseGenericSelector (char
           if (i == 0)            if (i == 0)
             {              {
               /* Store the element type */                /* Store the element type */
   #ifdef XML_GENERIC
                 if (elType.ElSSchema == NULL)
                   {
                     /* Search in the list of loaded genereric schemas */
                     TtaGetXmlElementType (names[i], &elType, NULL, doc);
                     if (elType.ElSSchema == NULL)
                       {
                         char *mappedName, *schemaName;
                         /* Creation of a new element type in the main schema */
                         elType.ElSSchema = TtaGetDocumentSSchema (doc);
                         schemaName = TtaGetSSchemaName(elType.ElSSchema);
                         if (strcmp (schemaName, "HTML") &&
                             strcmp (schemaName, "MathML") &&
                             strcmp (schemaName, "SVG") &&
                             strcmp (schemaName, "XLink") &&
                             strcmp (schemaName, "Annot"))
                           TtaAppendXmlElement (names[i], &elType,
                                                &mappedName, doc);
                       }
                   }
   #endif /* XML_GENERIC */
               ctxt->type = elType.ElTypeNum;                ctxt->type = elType.ElTypeNum;
               ctxt->name[0] = elType.ElTypeNum;                ctxt->name[0] = elType.ElTypeNum;
               ctxt->names_nb[0] = 0;                ctxt->names_nb[0] = 0;

Removed from v.1.105  
changed lines
  Added in v.1.106


Webmaster