[Comoblog-commit] comoblog/modules/mod_rss/templates/2.0 rss.tpl.xml, 1.2, 1.3
Status: Inactive
Brought to you by:
markwallis
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2008-02-19 03:34:08
|
Update of /cvsroot/comoblog/comoblog/modules/mod_rss/templates/2.0 In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv11414/templates/2.0 Modified Files: rss.tpl.xml Log Message: 1896613 - Fix RSS field validation problems Index: rss.tpl.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_rss/templates/2.0/rss.tpl.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- rss.tpl.xml 5 Oct 2005 00:48:15 -0000 1.2 +++ rss.tpl.xml 19 Feb 2008 03:34:02 -0000 1.3 @@ -1,9 +1,15 @@ <!-- BEGIN: main --><?xml version="1.0" encoding="iso-8859-1"?> <!-- RSS generated by {BLOG.generator} --> -<rss version="2.0"> +<rss version="2.0" + xmlns:content="http://purl.org/rss/1.0/modules/content/" + xmlns:wfw="http://wellformedweb.org/CommentAPI/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:atom="http://www.w3.org/2005/Atom" + > <channel> <title>{BLOG.title}</title> <link>{BLOG.link}</link> + <atom:link href="{BLOG.link}modules/mod_rss/rss.php/2.0" rel="self" type="application/rss+xml" /> <description>{BLOG.description}</description> <language>{BLOG.language}</language> <generator>{BLOG.generator}</generator> @@ -19,10 +25,12 @@ <title>{POST.post_mail_subject}</title> <link>{POST.post_permalink}</link> <comments>{POST.post_permalink}</comments> - <description>{POST.post_mail_body}</description> + <description><![CDATA[{POST.post_mail_desc}]]></description> + <content:encoded><![CDATA[{POST.post_mail_body}]]></content:encoded> <author>{POST.post_mail_from}</author> <pubDate>{POST.post_mail_date}</pubDate> <category>{POST.post_category}</category> + <guid isPermaLink="true">{POST.post_permalink}</guid> </item> <!-- END: post --> </channel> |