<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>numlock.ch - a changelog by Daniel Mettler &#187; web-based</title>
	<atom:link href="http://www.numlock.ch/news/tag/web-based/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.numlock.ch/news</link>
	<description>make a diff :)</description>
	<lastBuildDate>Thu, 12 Aug 2010 07:45:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>tiny tiny rss: A great web-based feed reader!</title>
		<link>http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/</link>
		<comments>http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 05:45:19 +0000</pubDate>
		<dc:creator>mettlerd</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Various]]></category>
		<category><![CDATA[aggregator]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[reader]]></category>
		<category><![CDATA[tiny tiny rss]]></category>
		<category><![CDATA[web-based]]></category>

		<guid isPermaLink="false">http://www.numlock.ch/news/?p=795</guid>
		<description><![CDATA[I&#8217;ve just installed tiny tiny rss (tt-rss), an open source web-based news reader/aggregator for Atom, RDF and RSS feeds. Configuring it as the default news reader in Firefox is very easy (just click on the according link at the bottom of the preferences page) and a convenient solution.
The installation is pretty straightforward too, but here [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just installed <a href="http://tt-rss.org/trac/" target="_blank">tiny tiny rss</a> (tt-rss), an open source web-based news reader/aggregator for Atom, RDF and RSS feeds. Configuring it as the default news reader in Firefox is very easy (just click on the according link at the bottom of the preferences page) and a convenient solution.</p>
<p>The installation is pretty straightforward too, but here are a couple of hints for installing it on a Gentoo box:</p>
<p>1. Download the tt-rss-1.3.3.ebuild file and all other files and directories from <a href="http://overlays.gentoo.org/svn/proj/sunrise/reviewed/www-apps/tt-rss/" target="_blank">http://overlays.gentoo.org/svn/proj/sunrise/reviewed/www-apps/tt-rss/</a> and place it in the www-apps/tt-rss directory (create it) in your local Portage overlay (usually /usr/local/portage).</p>
<p>2. Rename the file to tt-rss-1.3.4.ebuild (= the most recent version at the time of writing, released on Oct 21, 2009), execute &#8216;ebuild tt-rss-1.3.4.ebuild digest&#8217;, set the flags you need (e.g. for mysql and vhosts) and emerge the ebuild.</p>
<p>3. Follow the post-install instructions on the screen (bascially the <a href="http://tt-rss.org/trac/wiki/InstallationNotes" target="_blank">official tt-rss installation notes</a>)</p>
<p>If you intend to use the <a href="http://tt-rss.org/trac/wiki/UpdatingFeeds" target="_blank">default, single-process update daemon</a>, you can use the following init files I created (loosely based on <a href="http://tt-rss.org/trac/attachment/wiki/UpdatingFeeds/tt-rss.initd" target="_blank">Pierre-Yves Landure&#8217;s init script</a>):</p>
<p>/etc/init.d/tt-rss:</p>
<blockquote>
<pre>#!/sbin/runscript
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
&nbsp;&nbsp;&nbsp;&nbsp;use net
&nbsp;&nbsp;&nbsp;&nbsp;use mysql
}

#
# Function that starts the daemon/service
#
start() {
&nbsp;&nbsp;&nbsp;&nbsp;ebegin "Starting $NAME daemon"
&nbsp;&nbsp;&nbsp;&nbsp;start-stop-daemon --start --quiet --make-pidfile --background --chdir $DAEMON_DIR --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_ARGS
&nbsp;&nbsp;&nbsp;&nbsp;eend $?
}

#
# Function that stops the daemon/service
#
stop() {
&nbsp;&nbsp;&nbsp;&nbsp;ebegin "Stopping $NAME daemon"
&nbsp;&nbsp;&nbsp;&nbsp;start-stop-daemon --stop --quiet --make-pidfile --retry=TERM/1/KILL/5 --pidfile $PIDFILE --name $NAME
&nbsp;&nbsp;&nbsp;&nbsp;eend $?
}</pre>
</blockquote>
<p>(replace &#8220;mysql&#8221; by &#8220;postgresql&#8221; if you use postgresql)</p>
<p>/etc/conf.d/tt-rss:</p>
<blockquote>
<pre># Defaults for the Tiny Tiny RSS update daemon init.d script

# Location of your Tiny Tiny RSS installation.
TTRSS_PATH="/var/www/localhost/htdocs/admin/tt-rss"

DAEMON_SCRIPT="update_daemon.php"

DAEMON=/usr/bin/php
DAEMON_ARGS="$TTRSS_PATH/$DAEMON_SCRIPT"
DAEMON_DIR="$TTRSS_PATH"
PIDFILE=/var/run/tt-rss.pid
NAME=tt-rss</pre>
</blockquote>
<p>(make sure TTRSS_PATH points to your tt-rss installation)</p>
<p>4. Note that for using the default update method, PHP needs to be compiled with pcntl support. If required, set the pcntl flag and remerge PHP.</p>
<p>5. Have fun!</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/&amp;t=tiny+tiny+rss%3A+A+great+web-based+feed+reader%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/&amp;title=tiny+tiny+rss%3A+A+great+web-based+feed+reader%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=tiny+tiny+rss%3A+A+great+web-based+feed+reader%21+-+http://tinyurl.com/yl7po73&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=tiny+tiny+rss%3A+A+great+web-based+feed+reader%21&amp;body=Link: http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%27ve%20just%20installed%20tiny%20tiny%20rss%20%28tt-rss%29%2C%20an%20open%20source%20web-based%20news%20reader%2Faggregator%20for%20Atom%2C%20RDF%20and%20RSS%20feeds.%20Configuring%20it%20as%20the%20default%20news%20reader%20in%20Firefox%20is%20very%20easy%20%28just%20click%20on%20the%20according%20link%20at%20the%20bottom%20of%20the%20preferences%20page%29%20and%20a%20convenient%20solution.%0D%0A%0D%0AThe%20instal" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/&amp;title=tiny+tiny+rss%3A+A+great+web-based+feed+reader%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/&amp;t=tiny+tiny+rss%3A+A+great+web-based+feed+reader%21" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/&amp;t=tiny+tiny+rss%3A+A+great+web-based+feed+reader%21" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/&amp;title=tiny+tiny+rss%3A+A+great+web-based+feed+reader%21&amp;selection=I%27ve%20just%20installed%20tiny%20tiny%20rss%20%28tt-rss%29%2C%20an%20open%20source%20web-based%20news%20reader%2Faggregator%20for%20Atom%2C%20RDF%20and%20RSS%20feeds.%20Configuring%20it%20as%20the%20default%20news%20reader%20in%20Firefox%20is%20very%20easy%20%28just%20click%20on%20the%20according%20link%20at%20the%20bottom%20of%20the%20preferences%20page%29%20and%20a%20convenient%20solution.%0D%0A%0D%0AThe%20instal" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/&amp;title=tiny+tiny+rss%3A+A+great+web-based+feed+reader%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/&amp;title=tiny+tiny+rss%3A+A+great+web-based+feed+reader%21" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/+&quot;tiny+tiny+rss%3A+A+great+web-based+feed+reader%21&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.numlock.ch/news/it/tiny-tiny-rss-a-great-web-based-feed-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
