That gives this RDF code in the page source:
Code: Select all
<!--
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:Description
rdf:about="http://www.kovacevic.nl/blog/feeds/ei_188.rdf"
trackback:ping="http://www.kovacevic.nl/blog/comment.php?type=trackback&entry_id=188"
dc:title=""The Internet Services Disruption" -- Web 2.0 by Microsoft"
dc:identifier="http://www.kovacevic.nl/blog/archives/188-The-Internet-Services-Disruption-Web-2.0-by-Microsoft.html" />
</rdf:RDF>
-->
If I change the title of the entry and replace '--' with '-' then I get the correct RDF:
Code: Select all
<!--
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:Description
rdf:about="http://www.kovacevic.nl/blog/feeds/ei_188.rdf"
trackback:ping="http://www.kovacevic.nl/blog/comment.php?type=trackback&entry_id=188"
dc:title=""The Internet Services Disruption" - Web 2.0 by Microsoft"
dc:identifier="http://www.kovacevic.nl/blog/archives/188-The-Internet-Services-Disruption-Web-2.0-by-Microsoft.html" />
</rdf:RDF>
-->Regards,
Zoran