Form posted from Windows Internet Explorer.

report=Does the rdf:about attribute use a space separated list of URIs
or a single URI? In either case, there seems to be an error. Here's a
sample:
<rdf:Description rdf:about="batman-cd1.avi batman-cd2.avi">
Technically speaking, the value of rdf:about are two relative URIs
separated by a whitespace, scince whitespace is not allowed in a single
URI (right?). If multiple URIs are not allowed, then the parser is in
error as this is not a valid single URI, yet it says the RDF is valid.
If multiple URIs are allowed, then the parser is again in error as it
says the subject is:
http://www.w3.org/RDF/Validator/run/batman-cd1.avi batman-cd2.avi
which is wrong. If multiple URIs were allowed, two entries with the
following two subjects should be displayed instead:
http://www.w3.org/RDF/Validator/run/batman-cd1.avi
http://www.w3.org/RDF/Validator/run/batman-cd2.avi
RDF=<?xml version="1.0">
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
	<rdf:Description rdf:about="batman-cd1.avi batman-cd2.avi">
		<dc:title xml:lang="en">Batman</dc:title>
		<dc:title xml:lang="bg">Batman</dc:title>
		<dc:description>Great movie</dc:description>
		<dc:publisher>Warner Bros</dc:publisher>
		<dc:date>1999-09-01</dc:date>
		<dc:type>Action</dc:type>
		<dc:format>DivX</dc:format>
		<dc:language>en</dc:language>
	</rdf:Description>
	<rdf:Description rdf:about="batman.sub">
		<dc:publisher>subs.unacs.bg</dc:publisher>
		<dc:source>boen_robot</dc:source>
		<dc:date>1999-09-01</dc:date>
		<dc:type>sub</dc:type>
		<dc:language>bg</dc:language>
	</rdf:Description>
</rdf:RDF>
  

Received on Sunday, 3 June 2007 14:10:19 UTC