Re: Is it a semantic problem?

On 6/19/05, Petko Petkov <p.d.petkov@gmail.com> wrote:
> 
> <?xml version="1.0" encoding="UTF-8"?>
> <rdf:RDF
>         xmlns="http://purl.org/rss/1.0/"
>         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>         xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>         xmlns:dc="http://purl.org/dc/elements/1.1/"
> >
> 
>         <rdf:Description rdf:about="http://url.com">
>                 <item rdf:parseType="Resource">
>                         <title>Some title Here</title>
>                         <description>This is fun</description>
>                 </item>
>         </rdf:Description>
> 
> </rdf:RDF>

dc:item?
Could be mistaken, I vaguely remember an item around DC somewhere,
unlikely it's a class, but definitely not at
http://purl.org/dc/elements/1.1/

So how about:

<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
       xmlns="http://purl.org/rss/1.0/"
       xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>

<item rdf:about="http://url.com">
    <title>Some title Here</title>
    <description>This is fun</description>
</item>

</rdf:RDF>


Cheers,
Danny.

-- 

http://dannyayers.com

Received on Monday, 20 June 2005 09:13:10 UTC