RSS news feed of a client

RSS news feeds on the client level enable the client administrator to broadcast any messages he has to communicate via a RSS news feed. The news feed has two objectives:

In order to implement the client RSS news feed, put the following piece of HTML code into the <HEAD> section of your web page and also download the Java script file rss.js and put it into a directory called "javascripts" that must be in the directory of the web page on the server.

<link href="/demo/rss.xml" rel="alternate" title="RSS" type="application/rss+xml" />
<script src="/javascripts/rss.js" type="text/javascript"></script>
<script language="javascript"> window.onload = function(){ ReadRSS('/demo/rss.xml','rssBodyTemplate','rssTitleTemplate');}</script>

Every client has his "sub domain" - you must replace in the above script the text "demo" via the "sub domain" of your own client.

Then, on the position where you want the news to appear on your web page, insert the following code:

<div id="rssTitleTemplate"><h1>(::Title::)<br/></h1></div>
<div id="rssBodyTemplate">
<table> 
<tr><td>(::Pubdate::)&nbsp;&nbsp;<b>(::Title::)</b></td></tr>
<tr><td>&nbsp;&nbsp;(::Description::)</td></tr> 
</table> 
<hr noshade/>
</div>