HOW TO USE THIS PLUGIN
======================

To include RSS feeds in your help document do the following:

(1) Deploy the plugin by placing it in the /plugins directory of your Eclipse installation

(2) Include the readFeed.js script in every html document that needs to provide RSS feeds. To include the script you can use the following markup:
	<script type="text/javascript" src="../../com.ibm.ccl.feedreader/scripts/readFeed.js"></script>

(3) Insert the following markup anywhere you wish to provide a particular feed in your html document. Note that you need to pass a valid url to an rss xml 
    file as first argument to the javascript function 'getWebFeed':

    <!-- RSS Feed usage example -->
    <div class="webfeed">
	<span class="notetitle"><a class="webfeed-link" title="Shows English articles" href="javascript:void(0)"
	onclick="getWebFeed('http://www-128.ibm.com/developerworks/views/rational/rss/libraryview.jsp?type_by=Tutorials',this);">
	Rational tutorials</a></span></div>
	
	
	The feedreader plugin will retrieve the RSS feed and insert the following markup:

	<div class="webfeed-list-div">
	<ul class="webfeed-link-list">
	<li><a target="_blank" href="http://example.com/article.html" >Item 1 title</a></li>
	<li><a target="_blank" href="http://example.com/article.html" >Item 1 title</a></li>
	<li><a target="_blank" href="http://example.com/article.html" >Item 1 title</a></li>
	</ul>
	<p class="webfeed-subscribe"><a target="_blank" href="http://example.com/rss">XML</a></p>
	</div>
	
	This is inserted before the closing </div> tag for the outer <div class="webfeed">.	