content/xul/templates/tests/chrome/animals.rdf

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/content/xul/templates/tests/chrome/animals.rdf	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,224 @@
     1.4 +<?xml version="1.0"?>
     1.5 +
     1.6 +<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     1.7 +         xmlns:NC="http://home.netscape.com/NC-rdf#"
     1.8 +         xmlns:ANIMALS="http://www.some-fictitious-zoo.com/rdf#">
     1.9 +
    1.10 +   <ANIMALS:Class RDF:about="http://www.some-fictitious-zoo.com/arachnids">
    1.11 +     <ANIMALS:name>Arachnids</ANIMALS:name>
    1.12 +   </ANIMALS:Class>
    1.13 +
    1.14 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/arachnids/tarantula" ANIMALS:specimens="3">
    1.15 +         <ANIMALS:name>Tarantula</ANIMALS:name>
    1.16 +         <ANIMALS:species>Avicularia avicularia</ANIMALS:species>
    1.17 +       </RDF:Description>
    1.18 +
    1.19 +   <ANIMALS:Class RDF:about="http://www.some-fictitious-zoo.com/birds">
    1.20 +     <ANIMALS:name>Birds</ANIMALS:name>
    1.21 +     <ANIMALS:keeper resource="http://www.some-fictitious-zoo.com/humans/sarah"/>
    1.22 +   </ANIMALS:Class>
    1.23 +
    1.24 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/birds/emu" ANIMALS:specimens="12">
    1.25 +         <ANIMALS:name>Emu</ANIMALS:name>
    1.26 +         <ANIMALS:species>Dromaius novaehollandiae</ANIMALS:species>
    1.27 +       </RDF:Description>
    1.28 +
    1.29 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/birds/barnowl" ANIMALS:specimens="4">
    1.30 +         <ANIMALS:name>Barn Owl</ANIMALS:name>
    1.31 +         <ANIMALS:species>Tyto alba</ANIMALS:species>
    1.32 +       </RDF:Description>
    1.33 +
    1.34 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/birds/raven" ANIMALS:specimens="0">
    1.35 +         <ANIMALS:name>Raven</ANIMALS:name>
    1.36 +         <ANIMALS:species>Corvus corax</ANIMALS:species>
    1.37 +       </RDF:Description>
    1.38 +
    1.39 +   <ANIMALS:Class RDF:about="http://www.some-fictitious-zoo.com/crustaceans">
    1.40 +     <ANIMALS:name>Crustaceans</ANIMALS:name>
    1.41 +     <ANIMALS:keeper resource="http://www.some-fictitious-zoo.com/humans/robert"/>
    1.42 +   </ANIMALS:Class>
    1.43 +
    1.44 +   <ANIMALS:Class RDF:about="http://www.some-fictitious-zoo.com/fish">
    1.45 +     <ANIMALS:name>Fish</ANIMALS:name>
    1.46 +   </ANIMALS:Class>
    1.47 +
    1.48 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/fish/cod" ANIMALS:specimens="0">
    1.49 +         <ANIMALS:name>Cod</ANIMALS:name>
    1.50 +         <ANIMALS:species>Gadus morhua</ANIMALS:species>
    1.51 +       </RDF:Description>
    1.52 +
    1.53 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/fish/swordfish" ANIMALS:specimens="3">
    1.54 +         <ANIMALS:name>Swordfish</ANIMALS:name>
    1.55 +         <ANIMALS:species>Xiphias gladius</ANIMALS:species>
    1.56 +       </RDF:Description>
    1.57 +
    1.58 +   <ANIMALS:Class RDF:about="http://www.some-fictitious-zoo.com/mammals">
    1.59 +     <ANIMALS:name>Mammals</ANIMALS:name>
    1.60 +   </ANIMALS:Class>
    1.61 +
    1.62 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/mammals/lion">
    1.63 +         <ANIMALS:name>Lion</ANIMALS:name>
    1.64 +         <ANIMALS:species>Panthera leo</ANIMALS:species>
    1.65 +         <ANIMALS:specimens NC:parseType="Integer">4</ANIMALS:specimens>
    1.66 +         <ANIMALS:specimensAsString>4</ANIMALS:specimensAsString>
    1.67 +       </RDF:Description>
    1.68 +
    1.69 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/mammals/hippopotamus">
    1.70 +         <ANIMALS:name>HIPPOPOTAMUS</ANIMALS:name>
    1.71 +         <ANIMALS:species>Hippopotamus amphibius</ANIMALS:species>
    1.72 +         <ANIMALS:specimens NC:parseType="Integer">2</ANIMALS:specimens>
    1.73 +         <ANIMALS:specimensAsString>2</ANIMALS:specimensAsString>
    1.74 +       </RDF:Description>
    1.75 +
    1.76 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/mammals/africanelephant">
    1.77 +         <ANIMALS:name>African Elephant</ANIMALS:name>
    1.78 +         <ANIMALS:species>Loxodonta africana</ANIMALS:species>
    1.79 +         <ANIMALS:specimens NC:parseType="Integer">14</ANIMALS:specimens>
    1.80 +         <ANIMALS:specimensAsString>14</ANIMALS:specimensAsString>
    1.81 +       </RDF:Description>
    1.82 +
    1.83 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/mammals/llama">
    1.84 +         <ANIMALS:name>LLAMA</ANIMALS:name>
    1.85 +         <ANIMALS:species>Lama glama</ANIMALS:species>
    1.86 +         <ANIMALS:specimens NC:parseType="Integer">5</ANIMALS:specimens>
    1.87 +         <ANIMALS:specimensAsString>5</ANIMALS:specimensAsString>
    1.88 +       </RDF:Description>
    1.89 +
    1.90 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/mammals/polarbear">
    1.91 +         <ANIMALS:name>Polar Bear</ANIMALS:name>
    1.92 +         <ANIMALS:species>Thalarctos maritimus</ANIMALS:species>
    1.93 +         <ANIMALS:specimens NC:parseType="Integer">20</ANIMALS:specimens>
    1.94 +         <ANIMALS:specimensAsString>20</ANIMALS:specimensAsString>
    1.95 +       </RDF:Description>
    1.96 +
    1.97 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/mammals/aardvark">
    1.98 +         <ANIMALS:name>aardvark</ANIMALS:name>
    1.99 +         <ANIMALS:species>Orycteropus afer</ANIMALS:species>
   1.100 +         <ANIMALS:specimens NC:parseType="Integer">2</ANIMALS:specimens>
   1.101 +         <ANIMALS:specimensAsString>2</ANIMALS:specimensAsString>
   1.102 +       </RDF:Description>
   1.103 +
   1.104 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/mammals/ninebandedarmadillo">
   1.105 +         <ANIMALS:name>Nine-banded Armadillo</ANIMALS:name>
   1.106 +         <ANIMALS:species>Dasypus novemcinctus</ANIMALS:species>
   1.107 +         <ANIMALS:specimens NC:parseType="Integer">1</ANIMALS:specimens>
   1.108 +         <ANIMALS:specimensAsString>1</ANIMALS:specimensAsString>
   1.109 +       </RDF:Description>
   1.110 +
   1.111 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/mammals/gorilla">
   1.112 +         <ANIMALS:name>Gorilla</ANIMALS:name>
   1.113 +         <ANIMALS:species>Gorilla gorilla</ANIMALS:species>
   1.114 +         <ANIMALS:specimens NC:parseType="Integer">7</ANIMALS:specimens>
   1.115 +         <ANIMALS:specimensAsString>7</ANIMALS:specimensAsString>
   1.116 +       </RDF:Description>
   1.117 +
   1.118 +   <ANIMALS:Class RDF:about="http://www.some-fictitious-zoo.com/reptiles">
   1.119 +     <ANIMALS:name>Reptiles</ANIMALS:name>
   1.120 +     <ANIMALS:keeper resource="http://www.some-fictitious-zoo.com/humans/robert"/>
   1.121 +   </ANIMALS:Class>
   1.122 +
   1.123 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/reptiles/anaconda" ANIMALS:specimens="1">
   1.124 +         <ANIMALS:name>Anaconda</ANIMALS:name>
   1.125 +         <ANIMALS:species>Eunectes murinus</ANIMALS:species>
   1.126 +       </RDF:Description>
   1.127 +
   1.128 +       <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/reptiles/chameleon" ANIMALS:specimens="2">
   1.129 +         <ANIMALS:name>Chameleon</ANIMALS:name>
   1.130 +         <ANIMALS:species>Chamaeleo chamaelon</ANIMALS:species>
   1.131 +       </RDF:Description>
   1.132 +
   1.133 +  <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/some-animals" ANIMALS:name="Zoo Animals">
   1.134 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/arachnids"/>
   1.135 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/birds"/>
   1.136 +  </RDF:Seq>
   1.137 +
   1.138 +  <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/all-animals" ANIMALS:name="Zoo Animals">
   1.139 +    <RDF:li>
   1.140 +      <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/arachnids">
   1.141 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/arachnids/tarantula"/>
   1.142 +      </RDF:Seq>
   1.143 +    </RDF:li>
   1.144 +    <RDF:li>
   1.145 +      <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/birds">
   1.146 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/birds/emu"/>
   1.147 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/birds/barnowl"/>
   1.148 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/birds/raven"/>
   1.149 +      </RDF:Seq>
   1.150 +    </RDF:li>
   1.151 +    <RDF:li>
   1.152 +      <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/crustaceans"/>
   1.153 +    </RDF:li>
   1.154 +    <RDF:li>
   1.155 +      <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/fish">
   1.156 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/fish/cod"/>
   1.157 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/fish/swordfish"/>
   1.158 +      </RDF:Seq>
   1.159 +    </RDF:li>
   1.160 +    <RDF:li>
   1.161 +      <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/mammals">
   1.162 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/mammals/lion"/>
   1.163 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/mammals/hippopotamus"/>
   1.164 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/mammals/africanelephant"/>
   1.165 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/mammals/llama"/>
   1.166 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/mammals/polarbear"/>
   1.167 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/mammals/aardvark"/>
   1.168 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/mammals/ninebandedarmadillo"/>
   1.169 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/mammals/gorilla"/>
   1.170 +      </RDF:Seq>
   1.171 +    </RDF:li>
   1.172 +    <RDF:li>
   1.173 +      <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/reptiles">
   1.174 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/reptiles/anaconda"/>
   1.175 +        <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/reptiles/chameleon"/>
   1.176 +      </RDF:Seq>
   1.177 +    </RDF:li>
   1.178 +  </RDF:Seq>
   1.179 +
   1.180 +  <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/humans" ANIMALS:name="Humans">
   1.181 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/humans/sarah"/>
   1.182 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/humans/robert"/>
   1.183 +  </RDF:Seq>
   1.184 +
   1.185 +  <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/sarahs-pets" ANIMALS:name="Sarah's Pets">
   1.186 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/birds/emu"/>
   1.187 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/arachnids/tarantula"/>
   1.188 +  </RDF:Seq>
   1.189 +
   1.190 +  <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/roberts-pets" ANIMALS:name="Robert's Pets">
   1.191 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/reptiles/chameleon"/>
   1.192 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/arachnids/tarantula"/>
   1.193 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/mammals/llama"/>
   1.194 +  </RDF:Seq>
   1.195 +
   1.196 +  <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/humans/sarah" ANIMALS:name="Sarah">
   1.197 +    <ANIMALS:pets resource="http://www.some-fictitious-zoo.com/sarahs-pets"/>
   1.198 +    <ANIMALS:favoriteAnimal resource="http://www.some-fictitious-zoo.com/birds/emu"/>
   1.199 +    <ANIMALS:favoriteAnimal resource="http://www.some-fictitious-zoo.com/mammals/polarbear"/>
   1.200 +    <ANIMALS:favoriteAnimal resource="http://www.some-fictitious-zoo.com/arachnids/tarantula"/>
   1.201 +    <ANIMALS:description>
   1.202 +      Sarah became caretaker of the Fictitious Zoo's emu exhibit in 2001. With so
   1.203 +      many emus living there, she has a lot to do!
   1.204 +    </ANIMALS:description>
   1.205 +  </RDF:Description>
   1.206 +
   1.207 +  <RDF:Description RDF:about="http://www.some-fictitious-zoo.com/humans/robert" ANIMALS:name="Robert">
   1.208 +    <ANIMALS:pets resource="http://www.some-fictitious-zoo.com/roberts-pets"/>
   1.209 +    <ANIMALS:favoriteAnimal resource="http://www.some-fictitious-zoo.com/arachnids/tarantula"/>
   1.210 +    <ANIMALS:favoriteAnimal resource="http://www.some-fictitious-zoo.com/reptiles/anaconda"/>
   1.211 +    <ANIMALS:favoriteAnimal resource="http://www.some-fictitious-zoo.com/reptiles/chameleon"/>
   1.212 +    <ANIMALS:favoriteAnimal resource="http://www.some-fictitious-zoo.com/mammals/africanelephant"/>
   1.213 +    <ANIMALS:description>
   1.214 +      Robert helps visitors to the Fictitious Zoo's reptile pavilion learn
   1.215 +      more about some of the more unusual creatures that live there.
   1.216 +    </ANIMALS:description>
   1.217 +    <ANIMALS:lastName>Sanderson</ANIMALS:lastName>
   1.218 +  </RDF:Description>
   1.219 +
   1.220 +  <RDF:Seq RDF:about="http://www.some-fictitious-zoo.com/marked" ANIMALS:name="Marked">
   1.221 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/humans/sarah"/>
   1.222 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/mammals"/>
   1.223 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/crustaceans"/>
   1.224 +    <RDF:li RDF:resource="http://www.some-fictitious-zoo.com/birds/emu"/>
   1.225 +  </RDF:Seq>
   1.226 +
   1.227 +</RDF:RDF>

mercurial