Patch: channels.php.dist (adds sourceforge feeds)
Ryan Gallagher <[email protected]>
| Newsgroups | gmane.comp.horde.jonah |
|---|---|
| Message-ID | <[email protected]> |
Here's a patch for the channels file. Added all public (non-project) SourceForge RSS Channels. You can nix that comment block if it's not to your liking. I just included it to point to further docs and specify the two common url options that the SF feeds allow (on _most_ of em). Warning: no jonah handy, have NOT tested it. -- Ryan T. Gallagher -- Jonah mailing list Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [email protected]
channels.php.dist.patch
(application/octet-stream, 3.1 KB)
502a503,567 > /** > * Sourceforge Public (Non-Project) RSS Feeds. > * > * Note: > * Most of the following accept additional arguments to control full-text > * and limits. These are not implemented for all listed below so you > * should > * consult the official documentation: > * > * Information regarding SourceForge.net-provided RSS feeds > * http://sourceforge.net/docman/display_doc.php?docid=15483&group_id=1 > * > * - &rss_limit=LIMIT > * (Control the quanitity of items returned, see URL above) > * - &rss_fulltext=1 > * (Retrieve full text of article/item, see URL above) > */ > 'sfnewsfront' => array( > 'name' => 'SourceForge.net - Front Page News', > 'link' => 'http://www.sourceforge.net', > 'url' => 'http://sourceforge.net/export/rss2_sfnews.php?feed'), > > 'sfnewssite' => array( > 'name' => 'SourceForge.net - Site Wide News', > 'url' => 'http://sourceforge.net/export/rss2_sfnews.php?rss_allnews=1'), > > 'sfsitefile' => array( > 'name' => 'SourceForge.net - Site Wide File Releases', > 'link' => 'http://sourceforge.net/new/', > 'url' => 'http://sourceforge.net/export/rss2_sffiles.php?feed'), > > 'sfsitestatus' => array( > 'name' => 'SourceForge.net - Site Status', > 'link' => 'http://sourceforge.net/docman/display_doc.php?docid=2352&group_id=1', > 'url' => 'http://sourceforge.net/export/rss2_sitestatus.php?feed'), > > 'sffarmstatus' => array( > 'name' => 'SourceForge.net - Compile Farm Status', > 'link' => 'http://sourceforge.net/docman/display_doc.php?docid=10472&group_id=1', > 'url' => 'http://sourceforge.net/export/rss2_sitestatus.php?cfstatus=1'), > > 'sfprojectsnew' => array( > 'name' => 'SourceForge.net - Newly Registered Projects', > 'url' => 'http://sourceforge.net/export/rss2_sfnewprojects.php?feed'), > > 'sfprojectsdownweek' => array( > 'name' => 'SourceForge.net - Top Projects By Download (This Week)', > 'link' => 'http://sourceforge.net/top/toplist.php?type=downloads_week', > 'url' => 'http://sourceforge.net/export/rss2_sftopstats.php?feed=downloads_weekly'), > > 'sfprojectsdownall' => array( > 'name' => 'SourceForge.net - Top Projects By Download (All Time)', > 'link' => 'http://sourceforge.net/top/toplist.php?type=downloads', > 'url' => 'http://sourceforge.net/export/rss2_sftopstats.php?feed=downloads_all'), > > 'sfprojectsactweek' => array( > 'name' => 'SourceForge.net - Top Projects By Activity (This Week)', > 'link' => 'http://sourceforge.net/top/mostactive.php?type=week', > 'url' => 'http://sourceforge.net/export/rss2_sftopstats.php?feed=mostactive_weekly'), > > 'sfprojectsactall' => array( > 'name' => 'SourceForge.net - Top Projects By Activity (All Time)', > 'link' => 'http://sourceforge.net/top/mostactive.php', > 'url' => 'http://sourceforge.net/export/rss2_sftopstats.php?feed=mostactive_all'), >