Difference between revisions of "RC-Summary.php"
m |
(Trying to return raw but processed content if SWF in QS) |
||
Line 1: | Line 1: | ||
<? | <? | ||
− | # Appends article with a compact list of last 5 non-minor changes | + | if ($event == 'data') { |
− | global $wgLang, $wgContLang; | + | # Appends article with a compact list of last 5 non-minor changes |
− | $db =& wfGetDB( DB_MASTER ); | + | global $wgLang, $wgContLang; |
− | $result = $db->query( "SELECT rc_id, rc_timestamp, rc_user_text, rc_namespace, rc_title, rc_comment FROM recentchanges WHERE rc_minor=0 ORDER BY rc_timestamp DESC LIMIT 5" ); | + | $db =& wfGetDB( DB_MASTER ); |
− | $changes = array(); | + | $result = $db->query( "SELECT rc_id, rc_timestamp, rc_user_text, rc_namespace, rc_title, rc_comment FROM recentchanges WHERE rc_minor=0 ORDER BY rc_timestamp DESC LIMIT 5" ); |
− | while ($row = mysql_fetch_assoc($result)) { | + | $changes = array(); |
− | + | while ($row = mysql_fetch_assoc($result)) { | |
− | + | $time = $wgLang->time( $row['rc_timestamp'], true ); | |
− | + | $ns = $wgContLang->getNsText( $row['rc_namespace'] ); | |
− | + | $title = $ns ? "$ns:".$row['rc_title'] : $row['rc_title']; | |
+ | $changes[] = 'id'.$row['rc_id']."=$time,".$row['rc_user_text'].",$title,".$row['rc_comment']; | ||
+ | } | ||
+ | if ($_REQUEST['SWF']) { | ||
+ | xwSetProperty( $properties, 'view', $tTitle ); | ||
+ | $GLOBALS[$title] = join( '&', $changes ); | ||
+ | } | ||
+ | else $article = join( '<br>', $changes ); | ||
} | } | ||
− | + | elseif ($event == 'view' ) { | |
− | $article = | + | $article = $GLOBALS[$title]; |
− | |||
− | |||
} | } | ||
− | |||
?> | ?> |
Revision as of 20:44, 23 February 2006
<?
if ($event == 'data') {
# Appends article with a compact list of last 5 non-minor changes
global $wgLang, $wgContLang;
$db =& wfGetDB( DB_MASTER );
$result = $db->query( "SELECT rc_id, rc_timestamp, rc_user_text, rc_namespace, rc_title, rc_comment FROM recentchanges WHERE rc_minor=0 ORDER BY rc_timestamp DESC LIMIT 5" );
$changes = array();
while ($row = mysql_fetch_assoc($result)) {
$time = $wgLang->time( $row['rc_timestamp'], true );
$ns = $wgContLang->getNsText( $row['rc_namespace'] );
$title = $ns ? "$ns:".$row['rc_title'] : $row['rc_title'];
$changes[] = 'id'.$row['rc_id']."=$time,".$row['rc_user_text'].",$title,".$row['rc_comment'];
}
if ($_REQUEST['SWF']) {
xwSetProperty( $properties, 'view', $tTitle );
$GLOBALS[$title] = join( '&', $changes );
}
else $article = join( '
', $changes );
}
elseif ($event == 'view' ) {
$article = $GLOBALS[$title];
}
?>