2016-05-16

Final Question 4.

Group:
  • Kenneth Go
  • Mike Bibb
  • Aayush Neupane
        DTD:
	<!ELEMENT topic (keywords+)>
	    <!ATTLIST topic fading CDATA "FALSE">
	    <!ELEMENT keywords (#PCDATA)>
	<!ENTITY CS "computer science">
	XML Schema:
	<xsd:complexType name="topic">
		<xsd:sequence>
		    <xsd:element name="keywords" type="xsd:string" />
		</xsd:sequence>
	</xsd:complexType>
	<xsd:attribute name="fading" default="FALSE"/>
	Conforms to:
	<topic>
	    <keywords>the</keywords>
	</topic>
(Edited: 2016-05-16)
Group: * Kenneth Go * Mike Bibb * Aayush Neupane DTD: <!ELEMENT topic (keywords+)> <!ATTLIST topic fading CDATA "FALSE"> <!ELEMENT keywords (#PCDATA)> <!ENTITY CS "computer science"> XML Schema: <xsd:complexType name="topic"> <xsd:sequence> <xsd:element name="keywords" type="xsd:string" /> </xsd:sequence> </xsd:complexType> <xsd:attribute name="fading" default="FALSE"/> Conforms to: <topic> <keywords>the</keywords> </topic>
X