Hi,

> I've gotten several requests for full entries in my feed. Seems more and
> more people prefer to read blogs with aggregators and not with browsers.
> 
> Is it possible to generate such feeds with COREBlog?

I've not only full entries but also _valid_ ful entries of my blog posts in my feed 
<http://blog.schockwellenreiter.de/rdf10_xml>. I changed my COREBlog RDF in this way:

<?xml version="1.0" encoding="iso-8859-1"?>
<rdf:RDF
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
 xmlns:dc="http://purl.org/dc/elements/1.1/";
 xmlns:sy="http://purl.org/rss/1.0/modules/syndication/";
 xmlns:admin="http://webns.net/mvcb/";
 xmlns="http://purl.org/rss/1.0/";
 xmlns:cc="http://web.resource.org/cc/";
 xmlns:content="http://purl.org/rss/1.0/modules/content/";>


<channel rdf:about="<dtml-var blogurl>">
  <title><dtml-var title></title>
  <link><dtml-var blogurl></link>
  <description><dtml-var blog_long_description></description>
  <dc:creator><dtml-var author_profile></dc:creator>
  <dc:date><dtml-var "ZopeTime().strftime('%Y-%m-%dT%H:%M:%S+01:00')"></dc:date>
<items>
 <rdf:Seq>
  <dtml-in "rev_day_entry_items(count=top_days)">
  <rdf:li rdf:resource="<dtml-var blogurl>/<dtml-var id>" />
  </dtml-in>
 </rdf:Seq>
</items>
</channel>
<dtml-in "rev_day_entry_items(count=top_days)">
<item rdf:about="<dtml-var blogurl>/<dtml-var id>">
  <title><dtml-var title></title>
  <link><dtml-var blogurl>/<dtml-var id></link>
  <dc:subject><dtml-var category></dc:subject>
  <description></description>
  <content:encoded><![CDATA[<dtml-var body>]]></content:encoded>
  <dc:subject />
  <dc:creator><dtml-var author></dc:creator>
  <dc:date><dtml-var "ZopeTime(created).strftime('%Y-%m-%dT%H:%M:%S+01:00')"></dc:date>
</item>
</dtml-in>
</rdf:RDF>

The CDATA-Section contens the full feed incl. HTML-Tgas (for images an so on). It 
prohibits the Parser to interpret this.

There is only one thing: You mustn't use "<", ">", and "&" within the title-Tag. ;-)

HTH (and excuse my bad (d)english)
J"org (aka Der Schockwellenreiter)
-- 
J"org Kantel <[EMAIL PROTECTED]>
Der Schockwellenreiter <http://blog.schockwellenreiter.de/>
_______________________________________________
COREblog-en mailing list
[EMAIL PROTECTED]
http://munin.nbi.dk/cgi-bin/mailman/listinfo/coreblog-en

Reply via email to