<?xml version="1.0"?>

<!-- HWG XML Course, Assignment 2       --> 
<!-- Darrell Edgley, 30th January 2000  -->

<!DOCTYPE cricket [ 
<!ELEMENT cricket (testmatch, OneDayInternationals)*> 
<!ELEMENT testmatch (SouthAfrica, Zimbabwe)*>
<!ELEMENT OneDayInternationals (SouthAfrica, Zimbabwe)*>
<!ELEMENT SouthAfrica (firstmatch|secondmatch|thirdmatch|fourthmatch|fifthmatch|sixthmatch)*>
<!ELEMENT Zimbabwe    (firstmatch|secondmatch|thirdmatch|fourthmatch|fifthmatch|sixthmatch)*>
<!ELEMENT firstmatch (#PCDATA)>
<!ELEMENT secondmatch (#PCDATA)>
<!ELEMENT thirdmatch (#PCDATA)>
<!ELEMENT fourthmatch (#PCDATA)>
<!ELEMENT fifthmatch (#PCDATA)>
<!ELEMENT sixthmatch (#PCDATA)>
<!ATTLIST firstmatch  
          type (won|lost|tie|draw|NotPlayedYet) "NotPlayedYet"> 
<!ATTLIST secondmatch  
          type (won|lost|tie|draw|NotPlayedYet) "NotPlayedYet"> 
<!ATTLIST thirdmatch  
          type (won|lost|tie|draw|NotPlayedYet) "NotPlayedYet"> 
<!ATTLIST fourthmatch  
          type (won|lost|tie|draw|NotPlayedYet) "NotPlayedYet"> 
<!ATTLIST fifthmatch  
          type (won|lost|tie|draw|NotPlayedYet) "NotPlayedYet"> 
<!ATTLIST sixthtmatch  
          type (won|lost|tie|draw|NotPlayedYet) "NotPlayedYet"> 
]> 

<cricket>
<testmatch>
<SouthAfrica>
  <!-- Games either Won, Lost, Draw, Tied (differnt to draw) or not played -->
  <!-- yet. For some games that England have won I did not specify the     -->
  <!-- "type" to see the default values.                                   -->
  
  <firstmatch  type="lost">SA won by an innings and 21 runs</firstmatch>
  <secondmatch type="draw">match drawn</secondmatch>
  <thirdmatch  type="draw">match drawn</thirdmatch>
  <fourthmatch type="lost">SA won by an innings and 37 runs</fourthmatch>
  <fifthmatch>England won by 2 wickets</fifthmatch>
</SouthAfrica>
<Zimbabwe>
  <firstmatch>No test matches</firstmatch>
</Zimbabwe>
</testmatch>
<OneDayInternationals>
<SouthAfrica>
  <firstmatch  type="won">England won by 9 wickets</firstmatch>
  <secondmatch type="lost">England lost by 1 run</secondmatch>
  <thirdmatch  type="lost">England lost by 103 runs</thirdmatch>
  <fourthmatch>England won by 8 wickets</fourthmatch>
  <fifthmatch>Feb 4th</fifthmatch>
  <sixthmatch>Feb 9th</sixthmatch>
</SouthAfrica>
<Zimbabwe>
  <firstmatch>Feb 16th</firstmatch>
  <secondmatch>Feb 16th</secondmatch>
  <thirdmatch>Feb 16th</thirdmatch>
  <fourthmatch>Feb 16th</fourthmatch>
</Zimbabwe>
</OneDayInternationals>
</cricket>

