123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ps
- (C) Copyright IBM Corp. 2005, 2012
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- -->
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
- <!-- define a restrict string type to avoid the potential injection attact by removing any "(" or ")"-->
- <xs:simpleType name="restrictedstring">
- <xs:restriction base="xs:string">
- <xs:pattern value="[^\(\)]*"/>
- </xs:restriction>
- </xs:simpleType>
-
- <!-- define some attribute groups -->
- <xs:attributeGroup name="core">
- <xs:attribute name="id" type="restrictedstring"/>
- <xs:attribute name="style" type="xs:string"/>
- <xs:attribute name="class" type="restrictedstring"/>
- <xs:attribute name="title" type="restrictedstring"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="lang">
- <xs:attribute name="dir" type="restrictedstring"/>
- <xs:attribute name="lang" type="restrictedstring"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="edit">
- <xs:attribute name="contenteditable" type="restrictedstring"/>
- <xs:attribute name="hidefocus" type="restrictedstring"/>
- <xs:attribute name="unselectable" type="restrictedstring"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="dimension">
- <xs:attribute name="width">
- <xs:simpleType>
- <xs:restriction base="xs:string">
- <xs:pattern value="[0-9]{1,32}(%|:px)?"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:attribute>
- <xs:attribute name="height">
- <xs:simpleType>
- <xs:restriction base="xs:string">
- <xs:pattern value="[0-9]{1,32}(%|:px)?"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:attribute>
- </xs:attributeGroup>
- <!-- Define an element group.
- This will essentially allow every element to contain ever other element. This schema is not meant to validate good HTML. It is
- only meant to ensure that undesired elements are not validated. -->
- <xs:group name="insertableElements">
- <xs:choice>
- <xs:element name="A">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attribute name="charset" type="restrictedstring"/>
- <xs:attribute name="coords" type="restrictedstring"/>
- <xs:attribute name="href" type="restrictedstring"/>
- <xs:attribute name="hreflang" type="restrictedstring"/>
- <xs:attribute name="methods" type="restrictedstring"/>
- <xs:attribute name="name" type="restrictedstring"/>
- <xs:attribute name="rel" type="restrictedstring"/>
- <xs:attribute name="rev" type="restrictedstring"/>
- <xs:attribute name="shape" type="restrictedstring"/>
- <xs:attribute name="suppress" type="restrictedstring"/>
- <xs:attribute name="target" type="restrictedstring"/>
- <xs:attribute name="type" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="B">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="BLOCKQUOTE">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="cite" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- <xs:attribute name="type" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="BR">
- <xs:complexType>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- <xs:attribute name="type" type="restrictedstring"/>
- <xs:attribute name="_moz_dirty" type="restrictedstring"/>
- <xs:attribute name="_moz_editor_bogus_node" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="CODE">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="DIR">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- <xs:attribute name="compact" type="restrictedstring"/>
- <xs:attribute name="start" type="xs:integer"/>
- <xs:attribute name="type" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="DIV">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- <xs:attribute name="cols" type="xs:integer"/>
- <xs:attribute name="gutter" type="xs:integer"/>
- <xs:attribute name="nowrap" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="EM">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="FONT">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attribute name="color" type="restrictedstring"/>
- <xs:attribute name="face" type="restrictedstring"/>
- <xs:attribute name="font-weight" type="xs:integer"/>
- <xs:attribute name="point-size" type="xs:integer"/>
- <xs:attribute name="size" type="xs:integer"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="H1">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="H2">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="H3">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="H4">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="H5">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="H6">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="HR">
- <xs:complexType>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- <xs:attribute name="color" type="restrictedstring"/>
- <xs:attribute name="noshade" type="xs:integer"/>
- <xs:attribute name="size" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="I">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="LI">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- <xs:attribute name="type" type="restrictedstring"/>
- <xs:attribute name="value" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="META">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attribute name="name" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="OL">
- <xs:complexType>
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- <xs:attribute name="start" type="xs:integer"/>
- <xs:attribute name="type" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="P">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="PRE">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- <xs:attribute name="cols" type="xs:integer"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="SPAN">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="STRIKE">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="S">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="STRONG">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="STYLE">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attribute name="language" type="restrictedstring"/>
- <xs:attribute name="type" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="TABLE">
- <xs:complexType>
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="background" type="restrictedstring"/>
- <xs:attribute name="bgcolor" type="restrictedstring"/>
- <xs:attribute name="border" type="xs:integer"/>
- <xs:attribute name="bordercolor" type="restrictedstring"/>
- <xs:attribute name="bordercolordark" type="restrictedstring"/>
- <xs:attribute name="bordercolorlight" type="restrictedstring"/>
- <xs:attribute name="bottompadding" type="xs:integer"/>
- <xs:attribute name="cellpadding" type="xs:integer"/>
- <xs:attribute name="cellspacing" type="xs:integer"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- <xs:attribute name="cols" type="xs:integer"/>
- <xs:attribute name="frame" type="restrictedstring"/>
- <xs:attribute name="hspace" type="xs:integer"/>
- <xs:attribute name="leftpadding" type="xs:integer"/>
- <xs:attribute name="rightpadding" type="xs:integer"/>
- <xs:attribute name="rules" type="restrictedstring"/>
- <xs:attribute name="summary" type="restrictedstring"/>
- <xs:attribute name="toppadding" type="xs:integer"/>
- <xs:attribute name="vspace" type="xs:integer"/>
- <xs:attribute name="_moz_resizing" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="TBODY">
- <xs:complexType>
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="bgcolor" type="restrictedstring"/>
- <xs:attribute name="char" type="restrictedstring"/>
- <xs:attribute name="charoff" type="xs:integer"/>
- <xs:attribute name="valign" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="TD">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="abbr" type="restrictedstring"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="axis" type="restrictedstring"/>
- <xs:attribute name="background" type="restrictedstring"/>
- <xs:attribute name="bgcolor" type="restrictedstring"/>
- <xs:attribute name="bordercolor" type="restrictedstring"/>
- <xs:attribute name="bordercolordark" type="restrictedstring"/>
- <xs:attribute name="bordercolorlight" type="restrictedstring"/>
- <xs:attribute name="char" type="restrictedstring"/>
- <xs:attribute name="charoff" type="xs:integer"/>
- <xs:attribute name="colspan" type="xs:integer"/>
- <xs:attribute name="headers" type="restrictedstring"/>
- <xs:attribute name="rowspan" type="xs:integer"/>
- <xs:attribute name="scope" type="restrictedstring"/>
- <xs:attribute name="valign" type="restrictedstring"/>
- <xs:attribute name="hspace" type="restrictedstring"/>
- <xs:attribute name="vspace" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="TEXTAREA">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="cols" type="xs:integer"/>
- <xs:attribute name="name" type="restrictedstring"/>
- <xs:attribute name="rows" type="xs:integer"/>
- <xs:attribute name="wrap" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="TH">
- <xs:complexType>
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="abbr" type="restrictedstring"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="axis" type="restrictedstring"/>
- <xs:attribute name="background" type="restrictedstring"/>
- <xs:attribute name="bgcolor" type="restrictedstring"/>
- <xs:attribute name="bordercolor" type="restrictedstring"/>
- <xs:attribute name="bordercolordark" type="restrictedstring"/>
- <xs:attribute name="bordercolorlight" type="restrictedstring"/>
- <xs:attribute name="char" type="restrictedstring"/>
- <xs:attribute name="charoff" type="xs:integer"/>
- <xs:attribute name="colspan" type="xs:integer"/>
- <xs:attribute name="headers" type="restrictedstring"/>
- <xs:attribute name="rowspan" type="xs:integer"/>
- <xs:attribute name="scope" type="restrictedstring"/>
- <xs:attribute name="valign" type="restrictedstring"/>
- <xs:attribute name="hspace" type="restrictedstring"/>
- <xs:attribute name="vspace" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="THEAD">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="bgcolor" type="restrictedstring"/>
- <xs:attribute name="char" type="restrictedstring"/>
- <xs:attribute name="charoff" type="xs:integer"/>
- <xs:attribute name="valign" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="TR">
- <xs:complexType>
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="background" type="restrictedstring"/>
- <xs:attribute name="bgcolor" type="restrictedstring"/>
- <xs:attribute name="bordercolor" type="restrictedstring"/>
- <xs:attribute name="bordercolordark" type="restrictedstring"/>
- <xs:attribute name="bordercolorlight" type="restrictedstring"/>
- <xs:attribute name="char" type="restrictedstring"/>
- <xs:attribute name="charoff" type="xs:integer"/>
- <xs:attribute name="valign" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="U">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="UL">
- <xs:complexType>
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attributeGroup ref="edit"/>
- <xs:attributeGroup ref="dimension"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="clear" type="restrictedstring"/>
- <xs:attribute name="start" type="xs:integer"/>
- <xs:attribute name="type" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- </xs:choice>
- </xs:group>
- <xs:element name="BODY">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attribute name="align" type="restrictedstring"/>
- <xs:attribute name="alink" type="restrictedstring"/>
- <xs:attribute name="background" type="restrictedstring"/>
- <xs:attribute name="bgcolor" type="restrictedstring"/>
- <xs:attribute name="bgproperties" type="restrictedstring"/>
- <xs:attribute name="bottommargin" type="xs:integer"/>
- <xs:attribute name="contenteditable" type="restrictedstring"/>
- <xs:attribute name="leftmargin" type="xs:integer"/>
- <xs:attribute name="marginheight" type="xs:integer"/>
- <xs:attribute name="marginwidth" type="xs:integer"/>
- <xs:attribute name="nowrap" type="restrictedstring"/>
- <xs:attribute name="rightmargin" type="xs:integer"/>
- <xs:attribute name="scroll" type="restrictedstring"/>
- <xs:attribute name="text" type="restrictedstring"/>
- <xs:attribute name="topmargin" type="xs:integer"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="HEAD">
- <xs:complexType mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:group ref="insertableElements"/>
- </xs:choice>
- <xs:attributeGroup ref="core"/>
- <xs:attributeGroup ref="lang"/>
- <xs:attribute name="profile" type="restrictedstring"/>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|