×
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

    RssFeedFiltering: Difference between revisions

    Content added Content deleted
    imported>MattisManzel
    No edit summary
     
    imported>MattisManzel
    mNo edit summary
    Line 15: Line 15:
    there is a secction
    there is a secction


    $defaults = array(
    $defaults = array(
    /* int */ 'days' => $wgUser->getDefaultOption('rcdays'),
    /* int */ 'days' => $wgUser->getDefaultOption('rcdays'),
    /* int */ 'limit' => $wgUser->getDefaultOption('rclimit'),
    /* int */ 'limit' => $wgUser->getDefaultOption('rclimit'),
    /* bool */ 'hideminor' => false,
    /* bool */ 'hideminor' => false,
    /* bool */ 'hidebots' => true,
    /* bool */ 'hidebots' => true,
    /* bool */ 'hideliu' => false,
    /* bool */ 'hideliu' => false,
    /* bool */ 'hidepatrolled' => false,
    /* bool */ 'hidepatrolled' => false,
    /* text */ 'from' => '',
    /* text */ 'from' => '',
    /* text */ 'namespace' => null,
    /* text */ 'namespace' => null,
    /* bool */ 'invert' => false,
    /* bool */ 'invert' => false,
    );
    );


    somewhere there maybe, dunno.
    somewhere there maybe, dunno.

    Revision as of 16:45, 29 November 2005

    rss-feed-filtering

    Mediawiki boost out the full version history as a feed. It is essential for making useful and readable recent near changes to be able to filter the feed.

    what works is

    &limit=n - limit the number of last changes

    ?days=n - limit the number of days

    We need to cut out the history.

    on http://cvs.sourceforge.net/viewcvs.py/wikipedia/phase3/includes/SpecialRecentchanges.php?view=markup

    there is a secction

    $defaults = array(
    /* int  */ 'days' => $wgUser->getDefaultOption('rcdays'),
    /* int  */ 'limit' => $wgUser->getDefaultOption('rclimit'),
    /* bool */ 'hideminor' => false,
    /* bool */ 'hidebots' => true,
    /* bool */ 'hideliu' => false,
    /* bool */ 'hidepatrolled' => false,
    /* text */ 'from' => ,
    /* text */ 'namespace' => null,
    /* bool */ 'invert' => false,
    );
    

    somewhere there maybe, dunno.

    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.