Given the feed http://test.pruetz.net/feed1.rss:
----
<?xml version="1.0"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="http://test.pruetz.net/feed1.rss" rel="self" type="application/rss+xml" />
<title>testfeed 1</title>
<link>http://test.pruetz.net/feed1.rss</link>
<description></description>
<language>de-de</language>
<item>
<title>title</title>
<description>
<![CDATA[<a href="index.html" title="title">Click</a>]]>
</description>
<link>http://www.pruetz.net/Home/index.html</link>
<guid>http://www.pruetz.net/Home/index.html#2471047</guid>
<pubDate>Tue, 20 Mar 2007 20:25:45 +0100</pubDate>
</item>
</channel>
</rss>
----
the currently used validator on w3.org and feedvalidator.org fails with:
line 13, column 6: Invalid character in a URI: '"'
This points to the beginning of the close tag of the 'description' element which complicates error finding if you have more than one URI within the description.
At least this is not an error in the feed but in the validator when handling URIs without protocol within the description.
Given the feed http://test.pruetz.net/feed2.rss:
----
<?xml version="1.0"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="http://test.pruetz.net/feed2.rss" rel="self" type="application/rss+xml" />
<title>testfeed 2</title>
<link>http://test.pruetz.net/feed2.rss</link>
<description></description>
<language>de-de</language>
<item>
<title>title</title>
<description>
<![CDATA[<a title="title" href="index.html">Click</a>]]>
</description>
<link>http://www.pruetz.net/Home/index.html</link>
<guid>http://www.pruetz.net/Home/index.html#2471047</guid>
<pubDate>Tue, 20 Mar 2007 20:25:45 +0100</pubDate>
</item>
</channel>
</rss>
----
everything is fine because the 'href' attribute of the 'a' tag is now the last attribute.
I think it's some sort of greedy matching in a regexp.
When using URIs with protocol (http://...) everything is fine.
regards
tilo
Logged In: NO
who can me help to make a rightly feed from http://www.hautcreme24.de/health.xml