The following is a sample section from the HTML file. All news stories are structured exactly the same.
Currently there are two news pages: News and Old_News. Stories can be linked to on either one of these pages and this will change. Not sure how we could get this?
<!-- start news story 13 -->
<div style="margin: 0; padding: 0 2px 8px 5px; float: right;"><br />
<img src="/images/news_icon.gif
<br /><br />
<img src="/images/bullet_magnif
<div class="readmore"><a href="READMOREURL" target="new">Read more</a></div>
</div>
<div style="margin: 0; padding: 0 0 0 15px;">
<a href="www.xyz.com" target="new"><img src="/images/logo.gif" width="270" height="73" alt="Some Name" border="0" /></a>
<img src="/images/story_title_c
<p>This text will become the DESCRIPTION</p>
</div>
<br style="clear: both;" />
<div class="myhr"></div>
<!-- end news story 13 -->
Here is the XML / RSS feed. Stuff before the first item will naturally be all static. The <a href=" all need to be URL encoded (<a href="yada)
<?xml version="1.0" ?>
<rss version="2.0">
<channel>
<title>XYZ</title>
<link>Static Link</link>
<description>Static Desc</description>
<language>en-us</language>
<copyright>Static Copyright Notice</copyright>
<pubDate>Sun,14 Aug 2005 17:00:00 GMT</pubDate>
<lastBuildDate>Sun,14 Aug 2005 17:00:00 GMT</lastBuildDate>
<managingEditor>Static E-mail</managingEditor>
<webMaster>Static E-mail</webMaster>
- <item>
<title>Sample Title</title>
<link>Link this story can be found at</link>
<pubDate>Sun, 14 Aug 2005 16:05:00 GMT</pubDate>
<description>Description text. <a href="READ MORE LINK">(Read More)</a></description>
</item>
Main Topics
Browse All Topics





by: CrYpTiC_MauleRPosted on 2005-08-14 at 09:22:16ID: 14670720
If you can post an example of the HTML file and RSS feed you have we can create a script to do it.