|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Extending Types in xml schema
Not entirely clear what your required functionality is. You could get flexible functionality, without multiple types being involved, as follows: Schema 1: <xs:element name="slug" abstract="true"/> <xs:element name="br" substitutionGroup="slug"/> <xs:element name="p" type="textBaseType" substitutionGroup="slug"/> <xs:element name="span" type="spanType" substitutionGroup="slug"/> <xs:element name="ul" type="ulType" substitutionGroup="slug"/> <xs:element name="table" type="tableType" substitutionGroup="slug"/> <xs:complexType name="textBaseType" mixed="true"> <xs:element ref="slug" minOccurs="0" maxOccurs="unbounded"/> </xs:complexType> Schema 2: <xs:include schemaLocation="schema 1"/> <xs:element name="li" type="tableType" substitutionGroup="slug"/> ht -- Henry S. Thompson, HCRC Language Technology Group, University of Edinburgh Half-time member of W3C Team 2 Buccleuch Place, Edinburgh EH8 9LW, SCOTLAND -- (44) 131 650-4440 Fax: (44) 131 650-4587, e-mail: ht@c... URL: http://www.ltg.ed.ac.uk/~ht/ [mail really from me _always_ has this .sig -- mail without it is forged spam]
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||






