home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / exml.lha / exml / examples / test_data / test.xml
Text File  |  1999-04-13  |  620b  |  31 lines

  1. <!DOCTYPE mydoc 
  2. [
  3. <!ELEMENT wholedoc (#PCDATA)>
  4. <!ELEMENT test (#PCDATA)>
  5. <!ATTLIST test
  6.           type    (t1|t2|t3)  "t2">
  7.  
  8. <!ENTITY expand_me "I.R. am expanded (:">
  9.  
  10. ]>
  11. <wholedoc>
  12. <test another_type="t1">
  13.         blablabla...
  14.         the follwing is an empty tag:
  15.         <test27/>
  16.         CDATA is presented as regular text too:
  17.         <![CDATA[<greeting>Hello, world!</greeting>]]>
  18.  
  19.         <!-- Uncomment this for a non-well formed error: &zzz -->
  20.         <s1>
  21.             haa1
  22.         </s1>
  23.         <s2>
  24.             here is a internal entity: &expand_me;
  25.             external entities are currently not supported ):
  26.         </s2>
  27. </test>
  28.  
  29. </wholedoc>
  30. <!-- comment -->
  31.