Form posted from Microsoft Internet Explorer.

report=this code shoud be correct; still I receive the following warning messages :
Warning: {W101} Unqualified use of rdf:ID has been deprecated.[Line = 3, Column = 25]
Warning: {W101} Unqualified use of rdf:ID has been deprecated.[Line = 6, Column = 25]
Warning: {W101} Unqualified use of rdf:about has been deprecated.[Line = 20, Column = 42]

1: <?xml version="1.0" encoding="UTF-8"?>
2: <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xyz="http://multimedialab.elis.rug.ac.be/schema/arch.xsd#">
3: 	<rdf:Bag ID="Keywords">
4: 		<rdf:li>Period</rdf:li>
5: 		<rdf:li>
6: 		<rdf:Bag ID="Country">
7: 			<rdf:li>Belgium</rdf:li>
8: 			<rdf:li>America</rdf:li>
9: 		</rdf:Bag>
10: 		</rdf:li>
11: 		<rdf:li>Theatre</rdf:li>
12: 	</rdf:Bag>
13: 
14: 	<rdf:Description>
15: 		<xyz:Pavilion>
16: 			<xyz:Architect>
17: 				<xyz:Name>Stone</xyz:Name>
18: 				<xyz:FirstName>Edward</xyz:FirstName>
19: 				<xyz:Keywords>
20: 					<rdf:Description about="#Keywords"/>
21: 				</xyz:Keywords>
22: 			</xyz:Architect>
23: 		</xyz:Pavilion>
24: 	</rdf:Description>
25: </rdf:RDF>
26: 
RDF=<?xml version="1.0">
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xyz="http://multimedialab.elis.rug.ac.be/schema/arch.xsd#">
	<rdf:Bag ID="Keywords">
		<rdf:li>Period</rdf:li>
		<rdf:li>
		<rdf:Bag ID="Country">
			<rdf:li>Belgium</rdf:li>
			<rdf:li>America</rdf:li>
		</rdf:Bag>
		</rdf:li>
		<rdf:li>Theatre</rdf:li>
	</rdf:Bag>

	<rdf:Description>
		<xyz:Pavilion>
			<xyz:Architect>
				<xyz:Name>Stone</xyz:Name>
				<xyz:FirstName>Edward</xyz:FirstName>
				<xyz:Keywords>
					<rdf:Description about="#Keywords"/>
				</xyz:Keywords>
			</xyz:Architect>
		</xyz:Pavilion>
	</rdf:Description>
</rdf:RDF>

Received on Monday, 28 January 2002 08:18:14 UTC