Am Dienstag, 14. Februar 2006 10:35 schrieb Rohan Dhruva: > The feed works perfectly. I tested it once again.
Well, lets have a look at the feed: <?xml version="1.0" encoding="ISO-8859-1"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/"> <channel> <title>Arch Linux Packages</title> <link>http://www.archlinux.org</link> <description>Latest Arch Linux Package Updates</description> </channel> <image> <title>Arch Linux</title> <url>http://www.archlinux.org/logos/archblue2.png</url> <link>http://www.archlinux.org/</link> <width>90</width> <height>74</height> </image> <item> <title>udev 084-4</title> <link>http://archlinux.org/packages.php?id=4083</link> <description>The userspace dev tools (udev)</description> <dc:date>2006-02-14T02:48:45</dc:date> </item> *snip* As you can see the tag <dc:date> is used, where dc is used a namespace prefix. That namespace has never been declared before. Therefore the feed is not valid a XML document with namespaces [1]. Like Randy already stated, adding 'xmlns:dc="http://purl.org/dc/elements/1.1/"' would fix the problem. If akregator can read it anyway it just shows that akregator is either parsing the XML without namespace support or is silently ignoring the error. - Askadar [1] http://www.w3.org/TR/xml-names11/ _______________________________________________ arch mailing list [email protected] http://www.archlinux.org/mailman/listinfo/arch
