jpm121
05-07-2007, 07:36 PM
1) Script Title: Pausing RSS Scroller
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/rsspausescroller/index.htm
3) Describe problem:
I'm using a little program called RSS Builder to generate the XML file for my RSS feed. It is very basic, I just need something so a user can update our website with the day's cancellations and scheduling changes.
However, the program uses CDATA tags in the Description element of the XML it generates, and it appears that RSS Pause Scroller doesn't like those -- it shows the Title and Date/Time info, but nothing from the Description field. I verified that I have "data+description" selected in the script. I confirmed that all my script settings are correct by successfully displaying the sample CNN/Slashdot sample scripts.
Am I missing something terribly simple here? If I manually edit the XML and remove the CDATA tag, the feed loads perfectly, scrolls, etc.
I'm very new to RSS feeds and DHTML in general, but I've done a few searches and haven't found anything so far. After fixing a few syntax errors it seems to be pretty clean when I run it through an RSS validator.
Here is the XML I'm using...
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<!--FTPSite dfpd website-->
<channel>
<generator>RSS Builder by B!Soft</generator>
<title>Park District - Rainouts & Cancellations</title>
<link>http://www.zzz.org/index.html</link>
<description>Scheduling, rainout and cancellation notes for Park District sports leagues, activities, and classes. For more information call 847-2555.
</description>
<language>en-us</language>
<managingEditor>jimk@zzz.org</managingEditor>
<webMaster>jpm@zzz.org</webMaster>
<item>
<title>Third Topic</title>
<pubDate>Mon, 7 May 2007 13:58:20 -0500</pubDate>
<description><![CDATA[Description for third topic....]]></description>
<link>http://www.zzz.org/index.html</link>
<author>jpm@zzz.org</author>
</item>
<item>
<title>Second topic</title>
<pubDate>Mon, 7 May 2007 13:56:27 -0500</pubDate>
<description><![CDATA[This is the second topic description]]>
</description>
<link>http://www.zzz.org/index.html</link>
<author>jpm@zzz.org</author>
<comments>http://www.zzz.org/index.html</comments>
<category>None</category>
</item>
</channel>
</rss>
If anyone has any ideas, I'd appreciate it.
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/rsspausescroller/index.htm
3) Describe problem:
I'm using a little program called RSS Builder to generate the XML file for my RSS feed. It is very basic, I just need something so a user can update our website with the day's cancellations and scheduling changes.
However, the program uses CDATA tags in the Description element of the XML it generates, and it appears that RSS Pause Scroller doesn't like those -- it shows the Title and Date/Time info, but nothing from the Description field. I verified that I have "data+description" selected in the script. I confirmed that all my script settings are correct by successfully displaying the sample CNN/Slashdot sample scripts.
Am I missing something terribly simple here? If I manually edit the XML and remove the CDATA tag, the feed loads perfectly, scrolls, etc.
I'm very new to RSS feeds and DHTML in general, but I've done a few searches and haven't found anything so far. After fixing a few syntax errors it seems to be pretty clean when I run it through an RSS validator.
Here is the XML I'm using...
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<!--FTPSite dfpd website-->
<channel>
<generator>RSS Builder by B!Soft</generator>
<title>Park District - Rainouts & Cancellations</title>
<link>http://www.zzz.org/index.html</link>
<description>Scheduling, rainout and cancellation notes for Park District sports leagues, activities, and classes. For more information call 847-2555.
</description>
<language>en-us</language>
<managingEditor>jimk@zzz.org</managingEditor>
<webMaster>jpm@zzz.org</webMaster>
<item>
<title>Third Topic</title>
<pubDate>Mon, 7 May 2007 13:58:20 -0500</pubDate>
<description><![CDATA[Description for third topic....]]></description>
<link>http://www.zzz.org/index.html</link>
<author>jpm@zzz.org</author>
</item>
<item>
<title>Second topic</title>
<pubDate>Mon, 7 May 2007 13:56:27 -0500</pubDate>
<description><![CDATA[This is the second topic description]]>
</description>
<link>http://www.zzz.org/index.html</link>
<author>jpm@zzz.org</author>
<comments>http://www.zzz.org/index.html</comments>
<category>None</category>
</item>
</channel>
</rss>
If anyone has any ideas, I'd appreciate it.