X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FSpecialWatchlist.php;h=3d14b2a4d217d995f3d0fda8d625c378b138724a;hb=f3fecc6331ff1e47bf00a3af971abac303159c9f;hp=a84ad5e0a43d52d74db013d734a57d9c713de634;hpb=90155b8a9719ada6522a320a3315b4e698fdd970;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php index a84ad5e0a4..3d14b2a4d2 100644 --- a/includes/SpecialWatchlist.php +++ b/includes/SpecialWatchlist.php @@ -1,13 +1,15 @@ setPagetitle( wfMsg( "watchlist" ) ); - $sub = wfMsg( "watchlistsub", $wgUser->getName() ); + $wgOut->setPagetitle( wfMsg( 'watchlist' ) ); + $sub = wfMsg( 'watchlistsub', $wgUser->getName() ); $wgOut->setSubtitle( $sub ); - $wgOut->setRobotpolicy( "noindex,nofollow" ); + $wgOut->setRobotpolicy( 'noindex,nofollow' ); - $specialTitle = Title::makeTitle( NS_SPECIAL, "Watchlist" ); + $specialTitle = Title::makeTitle( NS_SPECIAL, 'Watchlist' ); - $uid = $wgUser->getID(); - if( $uid == 0 ) { - $wgOut->addHTML( wfMsg( "nowatchlist" ) ); + if( $wgUser->isAnon() ) { + $wgOut->addWikiText( wfMsg( 'nowatchlist' ) ); return; } @@ -34,45 +36,69 @@ function wfSpecialWatchlist() { $days = $wgRequest->getVal( 'days' ); $action = $wgRequest->getVal( 'action' ); $remove = $wgRequest->getVal( 'remove' ); - $id = $wgRequest->getVal( 'id' ); + $id = $wgRequest->getArray( 'id' ); + + if( $wgUser->getOption( 'enotifwatchlistpages' ) ) { + $wgOut->addHTML( "
\n" ); + + $wgOut->addWikiText( wfMsg( 'email_notification_infotext' ) ); + + $wgOut->addHTML( '
' . + "
\n\n" ); + } + + $uid = $wgUser->getID(); + if( $wgRequest->getVal( 'reset' ) == 'all' ) { + $wgUser->clearAllNotifications( $uid ); + } - if(($action == "submit") && isset($remove) && is_array($id)) { - $wgOut->addHTML( wfMsg( "removingchecked" ) ); + if(($action == 'submit') && isset($remove) && is_array($id)) { + $wgOut->addWikiText( wfMsg( 'removingchecked' ) ); + $wgOut->addHTML( '

' ); foreach($id as $one) { $t = Title::newFromURL( $one ); - if($t->getDBkey() != "") { + if($t->getDBkey() != '') { $wl = WatchedItem::fromUserTitle( $wgUser, $t ); if( $wl->removeWatch() === false ) { - $wgOut->addHTML( "
\n" . wfMsg( "couldntremove", htmlspecialchars($one) ) ); + $wgOut->addHTML( "
\n" . wfMsg( 'couldntremove', htmlspecialchars($one) ) ); } else { - $wgOut->addHTML( " (" . htmlspecialchars($one) . ")" ); + $wgOut->addHTML( ' (' . htmlspecialchars($one) . ')' ); } } else { - $wgOut->addHTML( "
\n" . wfMsg( "iteminvalidname", htmlspecialchars($one) ) ); + $wgOut->addHTML( "
\n" . wfMsg( 'iteminvalidname', htmlspecialchars($one) ) ); } } - $wgOut->addHTML( "done.\n

" ); + $wgOut->addHTML( "done.

\n" ); } if ( $wgUseWatchlistCache ) { $memckey = "$wgDBname:watchlist:id:" . $wgUser->getId(); $cache_s = @$wgMemc->get( $memckey ); if( $cache_s ){ - $wgOut->addHTML( wfMsg("wlsaved") ); + $wgOut->addWikiText( wfMsg('wlsaved') ); $wgOut->addHTML( $cache_s ); return; } } $dbr =& wfGetDB( DB_SLAVE ); - extract( $dbr->tableNames( 'cur', 'watchlist', 'recentchanges' ) ); + extract( $dbr->tableNames( 'page', 'revision', 'watchlist', 'recentchanges' ) ); $sql = "SELECT COUNT(*) AS n FROM $watchlist WHERE wl_user=$uid"; - $res = $dbr->query( $sql ); + $res = $dbr->query( $sql, $fname ); $s = $dbr->fetchObject( $res ); + +# Patch *** A1 *** (see A2 below) +# adjust for page X, talk:page X, which are both stored separately, but treated together +# $nitems = $s->n / 2; $nitems = $s->n; + if($nitems == 0) { - $wgOut->addHTML( wfMsg( "nowatchlist" ) ); + $wgOut->addWikiText( wfMsg( 'nowatchlist' ) ); return; } @@ -91,28 +117,33 @@ function wfSpecialWatchlist() { if ( $days <= 0 ) { $docutoff = ''; $cutoff = false; - $npages = wfMsg( "all" ); + $npages = wfMsg( 'all' ); } else { - $docutoff = "AND cur_timestamp > '" . + $docutoff = "AND rev_timestamp > '" . ( $cutoff = $dbr->timestamp( time() - intval( $days * 86400 ) ) ) . "'"; - $sql = "SELECT COUNT(*) AS n FROM $cur WHERE cur_timestamp>'$cutoff'"; - $res = $dbr->query( $sql ); + $sql = "SELECT COUNT(*) AS n FROM $page, $revision WHERE rev_timestamp>'$cutoff' AND page_id=rev_page"; + $res = $dbr->query( $sql, $fname ); $s = $dbr->fetchObject( $res ); $npages = $s->n; } if(isset($_REQUEST['magic'])) { - $wgOut->addHTML( wfMsg( "watchlistcontains", $wgLang->formatNum( $nitems ) ) . - "

" . wfMsg( "watcheditlist" ) . "

\n" ); + $wgOut->addWikiText( wfMsg( 'watchlistcontains', $wgLang->formatNum( $nitems ) ) . + '

' . wfMsg( 'watcheditlist' ) . "

\n" ); - $wgOut->addHTML( "
escapeLocalUrl( 'action=submit' ) . "' method='post'>\n" . "\n" . - "\n" . + "\n" . "
\n" ); return; @@ -141,59 +172,83 @@ function wfSpecialWatchlist() { # Up estimate of watched items by 15% to compensate for talk pages... if( $cutoff && ( $nitems*1.15 > $npages ) ) { - $x = "cur_timestamp"; - $y = wfMsg( "watchmethod-recent" ); - $z = "wl_namespace=cur_namespace&65534"; + $x = 'rev_timestamp'; + $y = wfMsg( 'watchmethod-recent' ); + # TG patch: here we do not consider pages and their talk pages equivalent - why should we ? + # The change results in talk-pages not automatically included in watchlists, when their parent page is included + # $z = "wl_namespace=cur_namespace & ~1"; + $z = 'wl_namespace=page_namespace'; } else { - $x = "name_title_timestamp"; - $y = wfMsg( "watchmethod-list" ); - $z = "(wl_namespace=cur_namespace OR wl_namespace+1=cur_namespace)"; + $x = 'page_timestamp'; + $y = wfMsg( 'watchmethod-list' ); + # TG patch: here we do not consider pages and their talk pages equivalent - why should we ? + # The change results in talk-pages not automatically included in watchlists, when their parent page is included + # $z = "(wl_namespace=cur_namespace OR wl_namespace+1=cur_namespace)"; + $z = 'wl_namespace=page_namespace'; } - $wgOut->addHTML( "" . wfMsg( "watchdetails", + $wgOut->addHTML( '' . wfMsg( 'watchdetails', $wgLang->formatNum( $nitems ), $wgLang->formatNum( $npages ), $y, - $specialTitle->escapeLocalUrl( "magic=yes" ) ) . "
\n" ); + $specialTitle->escapeLocalUrl( 'magic=yes' ) ) . "

\n" ); $use_index = $dbr->useIndexClause( $x ); $sql = "SELECT - cur_namespace,cur_title,cur_comment, cur_id, - cur_user,cur_user_text,cur_timestamp,cur_minor_edit,cur_is_new - FROM $watchlist,$cur $use_index + page_namespace,page_title,rev_comment, page_id, + rev_user,rev_user_text,rev_timestamp,rev_minor_edit,page_is_new,wl_notificationtimestamp + FROM $watchlist,$page,$revision $use_index WHERE wl_user=$uid AND $z - AND wl_title=cur_title + AND wl_title=page_title + AND page_latest=rev_id $docutoff - ORDER BY cur_timestamp DESC"; + ORDER BY rev_timestamp DESC"; $res = $dbr->query( $sql, $fname ); $numRows = $dbr->numRows( $res ); if($days >= 1) - $note = wfMsg( "rcnote", $wgLang->formatNum( $numRows ), $wgLang->formatNum( $days ) ); + $note = wfMsg( 'rcnote', $wgLang->formatNum( $numRows ), $wgLang->formatNum( $days ) ); elseif($days > 0) - $note = wfMsg( "wlnote", $wgLang->formatNum( $numRows ), $wgLang->formatNum( round($days*24) ) ); + $note = wfMsg( 'wlnote', $wgLang->formatNum( $numRows ), $wgLang->formatNum( round($days*24) ) ); else - $note = ""; + $note = ''; $wgOut->addHTML( "\n
\n{$note}\n
" ); $note = wlCutoffLinks( $days ); $wgOut->addHTML( "{$note}\n" ); if ( $numRows == 0 ) { - $wgOut->addHTML( "

" . wfMsg( "watchnochange" ) . "

" ); + $wgOut->addHTML( '

' . wfMsg( 'watchnochange' ) . '

' ); return; } $sk = $wgUser->getSkin(); - $s = $sk->beginRecentChangesList(); + $list =& new ChangesList( $sk ); + $s = $list->beginRecentChangesList(); $counter = 1; while ( $obj = $dbr->fetchObject( $res ) ) { # Make fake RC entry $rc = RecentChange::newFromCurRow( $obj ); $rc->counter = $counter++; - $s .= $sk->recentChangesLine( $rc, true ); + + if ($wgShowUpdatedMarker && $wgUser->getOption( 'showupdated' )) { + $rc->notificationtimestamp = $obj->wl_notificationtimestamp; + } else { + $rc->notificationtimestamp = false; + } + + if ($wgRCShowWatchingUsers && $wgUser->getOption( 'shownumberswatching' )) { + $sql3 = "SELECT COUNT(*) AS n FROM $watchlist WHERE wl_title='" .wfStrencode($obj->cur_title). "' AND wl_namespace='{$obj->cur_namespace}'" ; + $res3 = $dbr->query( $sql3, DB_READ, $fname ); + $x = $dbr->fetchObject( $res3 ); + $rc->numberofWatchingusers = $x->n; + } else { + $rc->numberofWatchingusers = 0; + } + + $s .= $list->recentChangesLine( $rc, true); } - $s .= $sk->endRecentChangesList(); + $s .= $list->endRecentChangesList(); $dbr->freeResult( $res ); $wgOut->addHTML( $s ); @@ -206,30 +261,30 @@ function wfSpecialWatchlist() { function wlHoursLink( $h, $page ) { - global $wgUser, $wgLang; + global $wgUser, $wgLang, $wgContLang; $sk = $wgUser->getSkin(); $s = $sk->makeKnownLink( - $wgLang->specialPage( $page ), + $wgContLang->specialPage( $page ), $wgLang->formatNum( $h ), - "days=" . ($h / 24.0) ); + 'days=' . ($h / 24.0) ); return $s; } function wlDaysLink( $d, $page ) { - global $wgUser, $wgLang; + global $wgUser, $wgLang, $wgContLang; $sk = $wgUser->getSkin(); $s = $sk->makeKnownLink( - $wgLang->specialPage( $page ), - ($d ? $wgLang->formatNum( $d ) : wfMsg( "all" ) ), "days=$d" ); + $wgContLang->specialPage( $page ), + ($d ? $wgLang->formatNum( $d ) : wfMsg( 'all' ) ), "days=$d" ); return $s; } -function wlCutoffLinks( $days, $page = "Watchlist" ) +function wlCutoffLinks( $days, $page = 'Watchlist' ) { $hours = array( 1, 2, 6, 12 ); $days = array( 1, 3, 7 ); - $cl = ""; + $cl = ''; $i = 0; foreach( $hours as $h ) { $hours[$i++] = wlHoursLink( $h, $page ); @@ -238,9 +293,9 @@ function wlCutoffLinks( $days, $page = "Watchlist" ) foreach( $days as $d ) { $days[$i++] = wlDaysLink( $d, $page ); } - return wfMsg ("wlshowlast", - implode(" | ", $hours), - implode(" | ", $days), + return wfMsg ('wlshowlast', + implode(' | ', $hours), + implode(' | ', $days), wlDaysLink( 0, $page ) ); }