×
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: Difference between revisions

    Content added Content deleted
    imported>mutante
    mNo edit summary
     
    imported>mutante
    mNo edit summary
    Line 10: Line 10:
    ==== Example ====
    ==== Example ====


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


    ==== Result =====
    ==== Result =====

    Revision as of 20:35, 25 March 2005

    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><nowiki> ==== Result ===== <rss>http://slashdot.org/slashdot.rss</rss> ==== Source ==== <pre> <?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; } ?> </pre>

    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.