<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.3" -->
<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/"
	>

<channel>
	<title>The Genoc Library</title>
	<link>http://www.genoc.net</link>
	<description>an itoctopus project</description>
	<pubDate>Fri, 28 Sep 2007 03:43:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>
	<language>en</language>
			<item>
		<title>Eter RSS</title>
		<link>http://www.genoc.net/eter-rss</link>
		<comments>http://www.genoc.net/eter-rss#comments</comments>
		<pubDate>Wed, 25 Jul 2007 03:26:13 +0000</pubDate>
		<dc:creator>Fadi El-Eter</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.genoc.net/eter-rss</guid>
		<description><![CDATA[Eter RSS is a WordPress RSS reader. Eter RSS allows WordPress powered sites to seamlessly integrate RSS feeds from other sites.
Specifications

Powerful infrastructure: Eter RSS uses lastRSS, known for its stability and its huge userbase.
Total control over your RSS feeds: Ability to change the settings for all your feeds and to overwrite these settings on a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Eter RSS</strong> is a <em>WordPress</em> RSS reader. <strong>Eter RSS</strong> allows <em>WordPress</em> powered sites to seamlessly integrate RSS feeds from other sites.</p>
<h3>Specifications</h3>
<ul>
<li>Powerful infrastructure: <strong>Eter RSS</strong> uses <a href="http://lastrss.webdot.cz/" target="_blank">lastRSS</a>, known for its stability and its huge userbase.</li>
<li>Total control over your RSS feeds: Ability to change the settings for all your feeds and to overwrite these settings on a feed-by-feed basis.</li>
<li>Filtering: Ability to filter RSS entries containing unwanted words/sentences.</li>
<li>Clean RSS data: No more seeing the &amp; (ampersand) as &amp;.</li>
<li>User friendly interface: You will feel in control of your application.</li>
<li>Limit the # of RSS entries being displayed: You can set the maximum # of RSS entries to be displayed per RSS feed either globally or on a feed-by-feed basis.</li>
<li>Caching: <strong>Eter RSS</strong> allows you to cache your RSS results for faster access. Caching can happen every 30 minutes or every week, your choice. Caching can be completely turned off.</li>
<li>Absolutely free: Free to use, free to modify, it&#8217;s a free world!</li>
<li>&#8230;and more!</li>
</ul>
<h3>Requirements</h3>
<ul>
<li><em>WordPress</em> 2.0+ (older <em>WordPress</em> versions may work)</li>
<li>PHP 4+</li>
<li>Writable directory anywhere in your website for caching (Eter RSS will attempt to create such directory, but will not complain if it can&#8217;t, it just won&#8217;t cache).</li>
</ul>
<h3>Installation</h3>
<ul>
<li>Extract the zip file and upload the directory Eter RSS to your plugins directory. (usually <strong><code>wp-content/plugins</code></strong> under your home directory).</li>
<li>Login as administrator to your <em>WordPress</em> application, and then click on Plugins.</li>
<li>Click on Activate next to <strong>Eter RSS.</strong></li>
<li>Click on Options, and then click on <strong>Eter RSS</strong>, and follow the instructions.</li>
</ul>
<h3>Quick Start</h3>
<p>Eter RSS is quite easy to use. After saving your options here, go to any Post or Page and add the following: <strong><code>&lt;!--eter-rss:url::the_rss_url--&gt;</code></strong>  For example, if you want to display Yahoo&#8217;s Oddly Enough RSS, just add the following (in code mode): <strong><code>&lt;!--eter-rss:url::http://rss.news.yahoo.com/rss/oddlyenough--&gt;</code></strong></p>
<h3>Advanced</h3>
<p>You may want to override the global options set above with specific options for a certain URL:</p>
<ul>
<li>To override the &#8220;Maximum Entries Per RSS&#8221; option, use the &#8220;maximum&#8221; keyword followed by the number of maximum entries you want to show, for example <strong><code>&lt;!--eter-rss:url::http://rss.news.yahoo.com/rss/oddlyenough|<br />
maximum::5--&gt;</code></strong> (no line break between the pipe | and maximum) will only display the latest 5 RSS entries from Yahoo&#8217;s Oddly Enough.</li>
<li>To override the &#8220;Filter Entries With Keywords&#8221; option, use the &#8220;filter&#8221; keyword followed by your filter strings, separaterd by commas, for example <strong><code>&lt;!--eter-rss:url::http://rss.news.yahoo.com/rss/oddlyenough|<br />
filter::curtain,small table,door--&gt;</code></strong> will only display the RSS entries not having &#8220;curtain&#8221;, &#8220;small table&#8221;, or &#8220;door&#8221; in either the subject or the description. Note that entries containing &#8220;table&#8221; but not containing &#8220;small table&#8221; or &#8220;curtain&#8221; or &#8220;door&#8221; will still show. Note that entries containing &#8220;SMall taBLE&#8221; will not show; comparison is case insensitive.</li>
<li>To override the &#8220;Show RSS Title&#8221; option, use the &#8220;title&#8221; keyword followed by &#8220;yes&#8221; or &#8220;no&#8221;, for example <strong><code>&lt;!--eter-rss:url::http://rss.news.yahoo.com/rss/oddlyenough|<br />
title::no--&gt;</code></strong> will not display the RSS title.</li>
<li>To override the &#8220;Popup Links in New Window&#8221; option, use the &#8220;popup&#8221; keyword followed by &#8220;yes&#8221; or &#8220;no&#8221;, for example <strong><code>&lt;!--eter-rss:url::http://rss.news.yahoo.com/rss/oddlyenough|<br />
popup::no--&gt;</code></strong>. This code will make the RSS links open in the same window.</li>
<li>You may mix your options using the pipe (|), for example <strong><code>&lt;!--eter-rss:url::http://rss.news.yahoo.com/rss/oddlyenough|<br />
maximum::5|popup::no|filter::curtain,small table,door|title::no--&gt;</code></strong> will display a maximum of 5 RSS entries where the links open in the same window, where the entries having &#8220;curtain&#8221;, &#8220;small table&#8221;, and &#8220;door&#8221; will not be shown, and where the title of the RSS will not be displayed. Note that there&#8217;s no special order when writing your options.</li>
</ul>
<p align="center"><strong><a href="http://www.genoc.net/wp-content/uploads/2007/07/wp-eter-rss.zip" title="Eter RSS">Download Eter RSS Now!</a></strong></p>
<p align="center">Check the demo at <a href="http://www.genoc.net/eter-rss-demo/">http://www.genoc.net/eter-rss-demo/</a></p>
<p>I would definitely appreciate your comments.</p>
<script type="text/javascript"><!--
google_ad_client = "pub-1059019967266566";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
//2007-07-24: genoc.net
google_ad_channel = "4617776093";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "f8cb66";
google_color_text = "f8cb66";
google_color_url = "f8cb66";
//-->
</script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
]]></content:encoded>
			<wfw:commentRss>http://www.genoc.net/eter-rss/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
