Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

liferea-add-feed(1) [debian man page]

LIFEREA(1)						      General Commands Manual							LIFEREA(1)

NAME
Liferea - GTK desktop news aggregator SYNOPSIS
liferea [OPTIONS] DESCRIPTION
Liferea (Linux Feed Reader) is an aggregator for online news feeds. It can be used to maintain a list of subscribed feeds, browse and search through their items and displays their contents. Additionally Liferea allows to sync subscriptions and read headlines with online accounts of Google Reader and TinyTinyRSS. OPTIONS
Liferea options: --version output version information and exit --help display a option overview and exit --mainwindow-state=STATE Start Liferea with its mainwindow in STATE: shown, iconified, hidden --debug-all Print debugging messages of all types --debug-cache Print debugging messages for the cache handling --debug-conf Print debugging messages of the configuration handling --debug-gui Print debugging messages of all GUI functions --debug-html Enables HTML rendering debugging. Each time Liferea renders HTML output it will also dump the generated HTML into ~/.lif- erea_1.6/output.xhtml. --debug-parsing Print debugging messages of all parsing functions --debug-performance Print debugging messages when a function takes too long to process --debug-trace Print debugging messages when entering/leaving functions --debug-update Print debugging messages of the feed update processing --debug-verbose Print verbose debugging messages DBUS INTERFACE
To allow integration with other programs Liferea profives a DBUS interface for automatic creation of new subscriptions. The script liferea- add-feed is a convenient way to use this interface. Just pass a valid feed URL as parameter and the feed will be added to the feed list. You can also pass non-feed URLs to use feed auto discovery. Example: liferea-add-feed "http://www.newsforge.com/newsforge.rss" Please note that Liferea needs to be running for liferea-add-feed to work. ENVIRONMENT
http_proxy If a proxy is not specified in the Liferea preferences (which uses the proxy settings in gconf), then Liferea will use the proxy specified in $http_proxy. $http_proxy should be set to a URI specifying the desired proxy, for example 'http://proxy.exam- ple.com:3128/'. FILES
/usr/share/liferea/css/ Contains default stylesheets for feed display /usr/share/liferea/opml/ Contains default feedlists ~/.liferea_1.8/ Contains user feedlist and feed cache ~/.liferea_1.8/liferea.db Sqlite3 database with all subscriptions and headlines ~/.liferea_1.8/liferea.css Stylesheet that can be edited by user AUTHOR
This manual page was written by Lars Lindner <lars.lindner@gmail.com>. Sep 14, 2011 LIFEREA(1)

Check Out this Related Man Page

Feed::Find(3pm) 					User Contributed Perl Documentation					   Feed::Find(3pm)

NAME
Feed::Find - Syndication feed auto-discovery SYNOPSIS
use Feed::Find; my @feeds = Feed::Find->find('http://example.com/'); DESCRIPTION
Feed::Find implements feed auto-discovery for finding syndication feeds, given a URI. It (currently) passes all of the auto-discovery tests at http://diveintomark.org/tests/client/autodiscovery/. Feed::Find will discover the following feed formats: o RSS 0.91 o RSS 1.0 o RSS 2.0 o Atom USAGE
Feed::Find->find($uri) Given a URI $uri, use a variety of techniques to find the feeds associated with that page. If $uri itself points to a feed (i.e., if the Content-Type of the response is a recognized feed type), returns $uri. Returns a list of feed URIs. The following techniques are used: 1. <link> tag auto-discovery If the page contains any <link> tags in the <head> section, these tags are examined for recognized feed content types. The following content types are treated as feeds: application/x.atom+xml, application/atom+xml, application/xml, text/xml, application/rss+xml, and application/rdf+xml. 2. Scanning <a> tags If the page does not contain any known <link> tags, the page is then scanned for <a> tags for links to URIs with certain file extensions. The following extensions are treated as feeds: .rss, .xml, and .rdf. Note that this technique is employed only if the first technique returns no results. Feed::Find->find_in_html($html [, $base_uri ]) Given a reference to a string $html containing an HTML page, uses the same techniques as described above in find to find the feeds associated with that page. If you know the URI of the page, you should provide it in $base_uri, so that relative links can be properly made absolute. Feed::Find will attempt to determine the correct base URI, but unless that URI is specified in the HTML itself (in a "<meta>" tag), you'll need to supply it yourself. Returns a list of feed URIs. LICENSE
Feed::Find is free software; you may redistribute it and/or modify it under the same terms as Perl itself. AUTHOR &; COPYRIGHT Except where otherwise noted, Feed::Find is Copyright 2004 Benjamin Trott, ben+cpan@stupidfool.org. All rights reserved. perl v5.10.1 2011-01-28 Feed::Find(3pm)
Man Page