RE: xs:redefine of a imported namespace group

Arrggghh.. another correction

Instead of using restriction it should be using extension.

> For example this redefine does not work (in content.xsd):
> <xs:redefine
> schemaLocation="http://livestoryboard.com/lsb/Schemas/xhtml_modfd.xsd">
>     <xs:complexType name="Block">
>       <xs:complexContent>
>         <xs:restriction base="x:Block">
>           <xs:choice minOccurs="0" maxOccurs="unbounded">
>             <xs:group ref="c:lsb_core_blocks"/>
>           </xs:choice>
>         </xs:restriction>
>       </xs:complexContent>
>     </xs:complexType>
>   </xs:redefine>

Should be:

<xs:extension base="x:Block">
...
</xs:extension>

Sorry,
-Rob
..time for a break...

Received on Saturday, 19 April 2003 15:18:44 UTC