×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles

    MediawikiExtensions/RSS

    Revision as of 20:39, 25 March 2005 by imported>mutante

    Integrate RSS newsfeeds into wiki pages using magpie RSS parser in a custom Mediawiki extension:

    (For example to interwiki syndicate RecentChanges pages.)

    mutante 21:35, 25 Mar 2005 (CET)

    Syntax

    <rss>URL</rss>

    Example

    <rss>http://slashdot.org/slashdot.rss</rss>

    Result =

    <rss>http://slashdot.org/slashdot.rss</rss>

    Source

    <?php
    # RSS-Feed Mediawiki extension
    # using magpieRSS (http://magpierss.sourceforge.net/)
    # by mutante 25.03.2005
    
    require_once('magpierss-0.71.1/rss_fetch.inc');
    $wgExtensionFunctions[] = "wfRssExtension";
    
    function wfRssExtension() {
    global $wgParser;
    $wgParser->setHook( "rss", "renderRss" );
    }
    
    
    function renderRss( $input ) {
    
    # $input = mysql_escape_string($input);
    
    
    $rss = fetch_rss($input);
    
    $output="<table><tr><th>Channel Title: </th><th>" . $rss->channel['title'] . "</th></tr>";
    $output.="<tr><td>";
    foreach ($rss->items as $item) {
    $href = $item['link'];
    $title = $item['title'];
    $output.="<td colspan='2'><a href='$href'>$title</a></td></tr>";
    }
    $output.="</table>";
    
    return $output;
    
    }
    
    ?>
    

    </nowiki>

    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.