2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2003-11-17 03:00:18 +00:00
|
|
|
include_once( "SpecialRecentchanges.php" );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-07-02 06:22:03 +00:00
|
|
|
function wfSpecialRecentchangeslinked( $par = NULL )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
|
|
|
|
global $wgUser, $wgOut, $wgLang, $wgTitle;
|
2003-06-03 08:44:50 +00:00
|
|
|
global $days, $target, $hideminor; # From query string
|
2003-04-14 23:10:40 +00:00
|
|
|
$fname = "wfSpecialRecentchangeslinked";
|
|
|
|
|
|
|
|
|
|
$wgOut->setPagetitle( wfMsg( "recentchanges" ) );
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
|
2003-07-02 06:22:03 +00:00
|
|
|
if( $par ) {
|
|
|
|
|
$target = $par;
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( "" == $target ) {
|
|
|
|
|
$wgOut->errorpage( "notargettitle", "notargettext" );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$nt = Title::newFromURL( $target );
|
2003-11-15 13:41:26 +00:00
|
|
|
$wgOut->setSubtitle( wfMsg( "rclsub", $nt->getPrefixedText() ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( ! $days ) {
|
|
|
|
|
$days = $wgUser->getOption( "rcdays" );
|
|
|
|
|
if ( ! $days ) { $days = 7; }
|
|
|
|
|
}
|
2003-06-03 08:44:50 +00:00
|
|
|
$days = (int)$days;
|
|
|
|
|
list( $limit, $offset ) = wfCheckLimits( 100, "rclimit" );
|
2003-06-30 01:33:16 +00:00
|
|
|
$cutoff = wfUnix2Timestamp( time() - ( $days * 86400 ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-11-30 01:23:44 +00:00
|
|
|
$hideminor = ($hideminor ? 1 : 0);
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( $hideminor ) {
|
|
|
|
|
$mlink = $sk->makeKnownLink( $wgLang->specialPage( "Recentchangeslinked" ),
|
|
|
|
|
WfMsg( "show" ), "target=" . wfEscapeHTML( $nt->getPrefixedURL() ) .
|
|
|
|
|
"&days={$days}&limit={$limit}&hideminor=0" );
|
|
|
|
|
} else {
|
|
|
|
|
$mlink = $sk->makeKnownLink( $wgLang->specialPage( "Recentchangeslinked" ),
|
|
|
|
|
WfMsg( "hide" ), "target=" . wfEscapeHTML( $nt->getPrefixedURL() ) .
|
|
|
|
|
"&days={$days}&limit={$limit}&hideminor=1" );
|
|
|
|
|
}
|
|
|
|
|
if ( $hideminor ) {
|
|
|
|
|
$cmq = "AND cur_minor_edit=0";
|
|
|
|
|
} else { $cmq = ""; }
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT cur_id,cur_namespace,cur_title,cur_user,cur_comment," .
|
|
|
|
|
"cur_user_text,cur_timestamp,cur_minor_edit,cur_is_new FROM links, cur " .
|
|
|
|
|
"WHERE cur_timestamp > '{$cutoff}' {$cmq} AND l_to=cur_id AND l_from='" .
|
|
|
|
|
wfStrencode( $nt->getPrefixedDBkey() ) . "' GROUP BY cur_id " .
|
|
|
|
|
"ORDER BY inverse_timestamp LIMIT {$limit}";
|
2003-09-20 02:21:40 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-06-03 08:44:50 +00:00
|
|
|
$note = wfMsg( "rcnote", $limit, $days );
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->addHTML( "<hr>\n{$note}\n<br>" );
|
|
|
|
|
|
2003-11-29 18:39:04 +00:00
|
|
|
$note = rcDayLimitlinks( $days, $limit, "Recentchangeslinked",
|
|
|
|
|
"target=" . $nt->getPrefixedURL() . "&hideminor={$hideminor}",
|
|
|
|
|
false, $mlink );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->addHTML( "{$note}\n" );
|
|
|
|
|
|
|
|
|
|
$s = $sk->beginRecentChangesList();
|
|
|
|
|
$count = wfNumRows( $res );
|
|
|
|
|
|
|
|
|
|
while ( $limit ) {
|
|
|
|
|
if ( 0 == $count ) { break; }
|
|
|
|
|
$obj = wfFetchObject( $res );
|
|
|
|
|
--$count;
|
|
|
|
|
|
2004-01-17 09:49:43 +00:00
|
|
|
$rc = RecentChange::newFromCurRow( $obj );
|
|
|
|
|
$s .= $sk->recentChangesLine( $rc );
|
2003-04-14 23:10:40 +00:00
|
|
|
--$limit;
|
|
|
|
|
}
|
|
|
|
|
$s .= $sk->endRecentChangesList();
|
|
|
|
|
|
|
|
|
|
wfFreeResult( $res );
|
|
|
|
|
$wgOut->addHTML( $s );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|