Return-Path: Delivered-To: apmail-xml-xalan-cvs-archive@xml.apache.org Received: (qmail 7603 invoked by uid 500); 26 Sep 2001 15:13:53 -0000 Mailing-List: contact xalan-cvs-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: Delivered-To: mailing list xalan-cvs@xml.apache.org Received: (qmail 7588 invoked from network); 26 Sep 2001 15:13:53 -0000 Date: 26 Sep 2001 15:13:15 -0000 Message-ID: <20010926151315.42899.qmail@icarus.apache.org> From: mmidy@apache.org To: xml-xalan-cvs@apache.org Subject: cvs commit: xml-xalan/java/src/org/apache/xalan/processor XSLTSchema.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N mmidy 01/09/26 08:13:15 Modified: java/src/org/apache/xalan/processor XSLTSchema.java Log: Mark xsl:template as containing ordered elements. Fix for no error when xsl:param not first child of xsl:template Revision Changes Path 1.23 +8 -8 xml-xalan/java/src/org/apache/xalan/processor/XSLTSchema.java Index: XSLTSchema.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/processor/XSLTSchema.java,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- XSLTSchema.java 2001/08/17 19:53:26 1.22 +++ XSLTSchema.java 2001/09/26 15:13:15 1.23 @@ -605,13 +605,13 @@ mediaTypeAttr, XSLTAttributeDef.m_foreignAttr }, new ProcessorOutputElem(), null /* class object */, 20, true), - new XSLTElementDef( - this, - Constants.S_XSLNAMESPACEURL, - "key", - null /*alias */, - null /* elements */, // EMPTY - new XSLTAttributeDef[]{ nameAttrRequired, + new XSLTElementDef( + this, + Constants.S_XSLNAMESPACEURL, + "key", + null /*alias */, + null /* elements */, // EMPTY + new XSLTAttributeDef[]{ nameAttrRequired, matchAttrRequired, useAttr }, new ProcessorKey(), null /* class object */, 20, true), @@ -677,7 +677,7 @@ nameAttrOpt, priorityAttr, modeAttr, - spaceAttr }, new ProcessorTemplate(), ElemTemplate.class /* class object */, 20, true), + spaceAttr }, new ProcessorTemplate(), ElemTemplate.class /* class object */, true, 20, true), new XSLTElementDef( this, Constants.S_XSLNAMESPACEURL, --------------------------------------------------------------------- To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org For additional commands, e-mail: xalan-cvs-help@xml.apache.org