Errata

Content Syndication with RSS

Errata for Content Syndication with RSS

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 95
In the <items> section

What you have in the book is

<items>
<rdf:Seq>
<rdf:li resource="http://conferences.oreilly.com/p2p/" />
<rdf:li resource="http://www.oreilly.com/catalog/progxmlrpc/" />
</rdf:Seq>
</items>

When in fact each of the even items need to have "rdf:li rdf:resource= ....." and NOT
"rdf:li resource="

<items>
<rdf:Seq>
<rdf:li rdf:resource="http://conferences.oreilly.com/p2p/" />
<rdf:li rdf:resource="http://www.oreilly.com/catalog/progxmlrpc/" />
</rdf:Seq>
</items>

In other works you missed the rdf: in front of the string resource.

Anonymous