119 wfDebug(
"DifferenceEngine old '$old' new '$new' rcid '$rcid'\n" );
121 $this->mOldid = $old;
122 $this->mNewid = $new;
131 $this->mReducedLineNumbers =
$value;
138 if ( $this->mDiffLang ===
null ) {
139 # Default language in which the diff text is written.
140 $this->mDiffLang = $this->
getTitle()->getPageLanguage();
180 if ( $this->
getUser()->isAllowed(
'deletedhistory' ) ) {
182 $arQuery = Revision::getArchiveQueryInfo();
183 $row =
$dbr->selectRow(
185 array_merge( $arQuery[
'fields'], [
'ar_namespace',
'ar_title' ] ),
186 [
'ar_rev_id' => $id ],
192 $rev = Revision::newFromArchiveRow( $row );
193 $title = Title::makeTitleSafe( $row->ar_namespace, $row->ar_title );
195 return SpecialPage::getTitleFor(
'Undelete' )->getFullURL( [
196 'target' => $title->getPrefixedText(),
197 'timestamp' =>
$rev->getTimestamp()
215 return "[$link $id]";
225 if ( $this->mOldRev ===
null ||
226 ( $this->mOldRev && $this->mOldContent ===
null )
230 if ( $this->mNewRev ===
null ||
231 ( $this->mNewRev && $this->mNewContent ===
null )
236 $out->setPageTitle( $this->
msg(
'errorpagetitle' ) );
237 $msg = $this->
msg(
'difference-missing-revision' )
238 ->params( $this->
getLanguage()->listToText( $missing ) )
239 ->numParams( count( $missing ) )
241 $out->addHTML( $msg );
245 # Allow frames except in certain special cases
247 $out->allowClickjacking();
248 $out->setRobotPolicy(
'noindex,nofollow' );
251 Hooks::run(
'DifferenceEngineShowDiffPage', [
$out ] );
254 if ( Hooks::run(
'DifferenceEngineShowDiffPageMaybeShowMissingRevision', [ $this ] ) ) {
261 $permErrors = $this->mNewPage->getUserPermissionsErrors(
'read', $user );
262 if ( $this->mOldPage ) { # mOldPage might not be
set, see
below.
264 $this->mOldPage->getUserPermissionsErrors(
'read', $user ) );
266 if ( count( $permErrors ) ) {
273 # Carry over 'diffonly' param via navigation links
274 if ( $diffOnly != $user->getBoolOption(
'diffonly' ) ) {
275 $query[
'diffonly'] = $diffOnly;
277 # Cascade unhide param in links for easy deletion browsing
278 if ( $this->unhide ) {
282 # Check if one of the revisions is deleted/suppressed
284 $allowed = $this->mNewRev->userCan( Revision::DELETED_TEXT, $user );
288 # mOldRev is false if the difference engine is called with a "vague" query for
289 # a diff between a version V and its previous version V' AND the version V
290 # is the first version of that article. In that case, V' does not exist.
291 if ( $this->mOldRev ===
false ) {
292 $out->setPageTitle( $this->
msg(
'difference-title', $this->mNewPage->getPrefixedText() ) );
296 Hooks::run(
'DifferenceEngineOldHeaderNoOldRev', [ &$oldHeader ] );
298 Hooks::run(
'DiffViewHeader', [ $this, $this->mOldRev, $this->mNewRev ] );
300 if ( $this->mNewPage->equals( $this->mOldPage ) ) {
301 $out->setPageTitle( $this->
msg(
'difference-title', $this->mNewPage->getPrefixedText() ) );
304 $out->setPageTitle( $this->
msg(
'difference-title-multipage',
305 $this->mOldPage->getPrefixedText(), $this->mNewPage->getPrefixedText() ) );
306 $out->addSubtitle( $this->
msg(
'difference-multipage' ) );
310 if ( $samePage && $this->mNewPage->quickUserCan(
'edit', $user ) ) {
311 if ( $this->mNewRev->isCurrent() && $this->mNewPage->userCan(
'rollback', $user ) ) {
313 if ( $rollbackLink ) {
314 $out->preventClickjacking();
315 $rollback =
'   ' . $rollbackLink;
319 if ( !$this->mOldRev->isDeleted( Revision::DELETED_TEXT ) &&
320 !$this->mNewRev->isDeleted( Revision::DELETED_TEXT )
322 $undoLink = Html::element(
'a', [
323 'href' => $this->mNewPage->getLocalURL( [
325 'undoafter' => $this->mOldid,
326 'undo' => $this->mNewid
330 $this->msg(
'editundo' )->text()
332 $revisionTools[
'mw-diff-undo'] = $undoLink;
336 # Make "previous revision link"
337 if ( $samePage && $this->mOldRev->getPrevious() ) {
340 $this->
msg(
'previousdiff' )->escaped(),
341 [
'id' =>
'differences-prevlink' ],
342 [
'diff' =>
'prev',
'oldid' => $this->mOldid ] +
$query
345 $prevlink =
' ';
348 if ( $this->mOldRev->isMinor() ) {
358 $oldHeader =
'<div id="mw-diff-otitle1"><strong>' . $oldRevisionHeader .
'</strong></div>' .
359 '<div id="mw-diff-otitle2">' .
361 '<div id="mw-diff-otitle3">' .
$oldminor .
363 '<div id="mw-diff-otitle5">' . $oldChangeTags[0] .
'</div>' .
364 '<div id="mw-diff-otitle4">' . $prevlink .
'</div>';
367 Hooks::run(
'DifferenceEngineOldHeader', [ $this, &$oldHeader, $prevlink,
$oldminor,
368 $diffOnly, $ldel, $this->unhide ] );
370 if ( $this->mOldRev->isDeleted( Revision::DELETED_TEXT ) ) {
372 if ( $this->mOldRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
377 # Check if this user can see the revisions
378 if ( !$this->mOldRev->userCan( Revision::DELETED_TEXT, $user ) ) {
383 $out->addJsConfigVars( [
384 'wgDiffOldId' => $this->mOldid,
385 'wgDiffNewId' => $this->mNewid,
388 # Make "next revision link"
389 # Skip next link on the top revision
390 if ( $samePage && !$this->mNewRev->isCurrent() ) {
393 $this->
msg(
'nextdiff' )->escaped(),
394 [
'id' =>
'differences-nextlink' ],
395 [
'diff' =>
'next',
'oldid' => $this->mNewid ] +
$query
398 $nextlink =
' ';
401 if ( $this->mNewRev->isMinor() ) {
407 # Handle RevisionDelete links...
410 # Allow extensions to define their own revision tools
411 Hooks::run(
'DiffRevisionTools',
412 [ $this->mNewRev, &$revisionTools, $this->mOldRev, $user ] );
413 $formattedRevisionTools = [];
415 foreach ( $revisionTools as $key => $tool ) {
416 $toolClass = is_string( $key ) ? $key :
'mw-diff-tool';
417 $element = Html::rawElement(
419 [
'class' => $toolClass ],
420 $this->
msg(
'parentheses' )->rawParams( $tool )->escaped()
422 $formattedRevisionTools[] = $element;
425 ' ' . implode(
' ', $formattedRevisionTools );
428 $newHeader =
'<div id="mw-diff-ntitle1"><strong>' . $newRevisionHeader .
'</strong></div>' .
431 '<div id="mw-diff-ntitle3">' .
$newminor .
433 '<div id="mw-diff-ntitle5">' . $newChangeTags[0] .
'</div>' .
434 '<div id="mw-diff-ntitle4">' . $nextlink . $this->
markPatrolledLink() .
'</div>';
437 Hooks::run(
'DifferenceEngineNewHeader', [ $this, &$newHeader, $formattedRevisionTools,
440 if ( $this->mNewRev->isDeleted( Revision::DELETED_TEXT ) ) {
442 if ( $this->mNewRev->isDeleted( Revision::DELETED_RESTRICTED ) ) {
447 # If the diff cannot be shown due to a deleted revision, then output
448 # the diff header and links to unhide (if available)...
449 if ( $deleted && ( !$this->unhide || !$allowed ) ) {
452 $out->addHTML( $this->
addHeader(
'', $oldHeader, $newHeader, $multi ) );
454 $msg =
$suppressed ?
'rev-suppressed-no-diff' :
'rev-deleted-no-diff';
455 # Give explanation for why revision is not visible
456 $out->wrapWikiMsg(
"<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
459 # Give explanation and add a link to view the diff...
462 $msg =
$suppressed ?
'rev-suppressed-unhide-diff' :
'rev-deleted-unhide-diff';
464 "<div id='mw-$msg' class='mw-warning plainlinks'>\n$1\n</div>\n",
468 # Otherwise, output a regular diff...
470 # Add deletion notice if the user is viewing deleted content
473 $msg =
$suppressed ?
'rev-suppressed-diff-view' :
'rev-deleted-diff-view';
474 $notice =
"<div id='mw-$msg' class='mw-warning plainlinks'>\n" .
475 $this->
msg( $msg )->parse() .
478 $this->
showDiff( $oldHeader, $newHeader, $notice );
495 if ( $this->mMarkPatrolledLink ===
null ) {
499 $this->mMarkPatrolledLink =
'';
501 $this->mMarkPatrolledLink =
' <span class="patrollink" data-mw="interface">[' .
504 $this->
msg(
'markaspatrolleddiff' )->escaped(),
507 'action' =>
'markpatrolled',
508 'rcid' => $linkInfo[
'rcid'],
512 Hooks::run(
'DifferenceEngineMarkPatrolledLink', [ $this,
513 &$this->mMarkPatrolledLink, $linkInfo[
'rcid'] ] );
534 $wgUseRCPatrol && $this->mNewPage->quickUserCan(
'patrol', $user ) &&
537 RecentChange::isInRCLifespan( $this->mNewRev->getTimestamp(), 21600 )
541 $change = RecentChange::newFromConds(
543 'rc_timestamp' => $db->timestamp( $this->mNewRev->getTimestamp() ),
544 'rc_this_oldid' => $this->mNewid,
545 'rc_patrolled' => RecentChange::PRC_UNPATROLLED
550 if ( $change && !$change->getPerformer()->equals( $user ) ) {
551 $rcid = $change->getAttribute(
'rc_id' );
562 Hooks::run(
'DifferenceEngineMarkPatrolledRCID', [ &$rcid, $this, $change, $user ] );
566 $this->
getOutput()->preventClickjacking();
568 && $user->isAllowed(
'writeapi' )
570 $this->
getOutput()->addModules(
'mediawiki.page.patrol.ajax' );
590 if (
$link !==
'' ) {
603 # Add "current version as of X" title
604 $out->addHTML(
"<hr class='diff-hr' id='mw-oldid' />
605 <h2 class='diff-currentversion-title'>{$revHeader}</h2>\n" );
606 # Page content may be handled by a hooked call instead...
607 if ( Hooks::run(
'ArticleContentOnDiff', [ $this,
$out ] ) ) {
609 $out->setRevisionId( $this->mNewid );
610 $out->setRevisionTimestamp( $this->mNewRev->getTimestamp() );
611 $out->setArticleFlag(
true );
613 if ( !Hooks::run(
'ArticleContentViewCustom',
614 [ $this->mNewContent, $this->mNewPage,
$out ] )
619 if ( $this->
getTitle()->equals( $this->mNewPage ) ) {
626 $wikiPage = WikiPage::factory( $this->mNewPage );
631 # WikiPage::getParserOutput() should not return false, but just in case
632 if ( $parserOutput ) {
634 if ( Hooks::run(
'DifferenceEngineRenderRevisionAddParserOutput',
635 [ $this,
$out, $parserOutput, $wikiPage ] )
637 $out->addParserOutput( $parserOutput, [
638 'enableSectionEditLinks' => $this->mNewRev->isCurrent()
639 && $this->mNewRev->getTitle()->quickUserCan(
'edit', $this->getUser() ),
647 if ( Hooks::run(
'DifferenceEngineRenderRevisionShowFinalPatrolLink' ) ) {
648 # Add redundant patrol link on bottom...
663 return $parserOutput;
676 public function showDiff( $otitle, $ntitle, $notice =
'' ) {
678 Hooks::run(
'DifferenceEngineShowDiff', [ $this ] );
680 $diff = $this->
getDiff( $otitle, $ntitle, $notice );
681 if ( $diff ===
false ) {
697 $this->
getOutput()->addModuleStyles(
'mediawiki.diff.styles' );
709 public function getDiff( $otitle, $ntitle, $notice =
'' ) {
711 if ( $body ===
false ) {
717 if ( $body ===
'' ) {
718 $notice .=
'<div class="mw-diff-empty">' .
719 $this->
msg(
'diff-empty' )->parse() .
723 return $this->
addHeader( $body, $otitle, $ntitle, $multi, $notice );
732 $this->mCacheHit =
true;
736 } elseif ( $this->mOldRev &&
737 !$this->mOldRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
740 } elseif ( $this->mNewRev &&
741 !$this->mNewRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
746 if ( $this->mOldRev ===
false || ( $this->mOldRev && $this->mNewRev
747 && $this->mOldRev->getId() == $this->mNewRev->getId() )
749 if ( Hooks::run(
'DifferenceEngineShowEmptyOldContent', [ $this ] ) ) {
755 $cache = ObjectCache::getMainWANInstance();
756 if ( $this->mOldid && $this->mNewid ) {
760 if ( $key ===
null ) {
761 $key = call_user_func_array(
768 if ( !$this->mRefreshCache ) {
769 $difftext =
$cache->get( $key );
773 $difftext .=
"\n<!-- diff cache key $key -->\n";
779 $this->mCacheHit =
false;
792 if ( !Hooks::run(
'AbortDiffCache', [ &$diffEngine ] ) ) {
794 } elseif ( $key !==
false && $difftext !==
false ) {
796 $cache->set( $key, $difftext, 7 * 86400 );
801 if ( $difftext !==
false ) {
835 if ( !$this->mOldid || !$this->mNewid ) {
836 throw new MWException(
'mOldid and mNewid must be set to get diff cache key.' );
844 "old-{$this->mOldid}",
845 "rev-{$this->mNewid}"
848 if (
$engine ===
'wikidiff2' ) {
849 $params[] = phpversion(
'wikidiff2' );
850 $params[] = $this->
getConfig()->get(
'WikiDiff2MovedParagraphDetectionCutoff' );
877 throw new MWException(
"Diff not implemented for " . get_class( $old ) .
"; " .
878 "override generateContentDiffBody to fix this." );
882 throw new MWException(
"Diff not implemented for " . get_class( $new ) .
"; "
883 .
"override generateContentDiffBody to fix this." );
903 $diff =
function () use ( $otext, $ntext ) {
904 $time = microtime(
true );
906 $result = $this->
textDiff( $otext, $ntext );
908 $time = intval( ( microtime(
true ) -
$time ) * 1000 );
909 MediaWikiServices::getInstance()->getStatsdDataFactory()->timing(
'diff_time',
$time );
911 if (
$time > 100 && $this->mOldPage && $this->mNewPage ) {
913 "$time ms diff: {$this->mOldid} -> {$this->mNewid} {$this->mNewPage}" );
923 $error =
function (
$status ) {
928 if ( strlen( $otext ) + strlen( $ntext ) > 20000 ) {
930 md5( $otext ) . md5( $ntext ),
931 [
'doWork' => $diff,
'error' => $error ]
933 return $work->execute();
949 wfDeprecated(
"\$wgExternalDiffEngine = '{$wgExternalDiffEngine}'",
'1.27' );
956 wfWarn(
'$wgExternalDiffEngine is set to a non-string value, forcing it to false' );
980 $otext = str_replace(
"\r\n",
"\n", $otext );
981 $ntext = str_replace(
"\r\n",
"\n", $ntext );
987 if (
$engine ===
'wikidiff2' ) {
988 $wikidiff2Version = phpversion(
'wikidiff2' );
990 $wikidiff2Version !==
false &&
991 version_compare( $wikidiff2Version,
'1.5.0',
'>=' )
997 $this->
getConfig()->
get(
'WikiDiff2MovedParagraphDetectionCutoff' )
1008 if ( $this->
getConfig()->
get(
'WikiDiff2MovedParagraphDetectionCutoff' ) > 0 ) {
1009 wfLogWarning(
'$wgWikiDiff2MovedParagraphDetectionCutoff is set but has no
1010 effect since the used version of WikiDiff2 does not support it.' );
1014 $text .= $this->
debug(
'wikidiff2' );
1017 } elseif (
$engine !==
false ) {
1018 # Diff via the shell
1020 $tempName1 = tempnam( $tmpDir,
'diff_' );
1021 $tempName2 = tempnam( $tmpDir,
'diff_' );
1023 $tempFile1 = fopen( $tempName1,
"w" );
1024 if ( !$tempFile1 ) {
1027 $tempFile2 = fopen( $tempName2,
"w" );
1028 if ( !$tempFile2 ) {
1031 fwrite( $tempFile1, $otext );
1032 fwrite( $tempFile2, $ntext );
1033 fclose( $tempFile1 );
1034 fclose( $tempFile2 );
1035 $cmd = [
$engine, $tempName1, $tempName2 ];
1036 $result = Shell::command( $cmd )
1038 $exitCode = $result->getExitCode();
1039 if ( $exitCode !== 0 ) {
1040 throw new Exception(
"External diff command returned code {$exitCode}. Stderr: "
1044 $difftext = $result->getStdout();
1045 $difftext .= $this->
debug(
"external $engine" );
1046 unlink( $tempName1 );
1047 unlink( $tempName2 );
1053 $ota = explode(
"\n",
$wgContLang->segmentForDiff( $otext ) );
1054 $nta = explode(
"\n",
$wgContLang->segmentForDiff( $ntext ) );
1055 $diffs =
new Diff( $ota, $nta );
1057 $difftext =
$wgContLang->unsegmentForDiff( $formatter->format( $diffs ) );
1058 $difftext .= $this->
debug(
'native PHP' );
1073 if ( !$this->enableDebugComment ) {
1082 return "<!-- diff generator: " .
1083 implode(
" ", array_map(
"htmlspecialchars", $data ) ) .
1095 if ( $this->
getEngine() ===
'wikidiff2' &&
1096 version_compare( phpversion(
'wikidiff2' ),
'1.5.1',
'>=' )
1111 return preg_replace_callback(
1112 '/<!--LINE (\d+)-->/',
1113 [ $this,
'localiseLineNumbersCb' ],
1119 if (
$matches[1] ===
'1' && $this->mReducedLineNumbers ) {
1123 return $this->
msg(
'lineno' )->numParams(
$matches[1] )->escaped();
1133 return preg_replace_callback(
1134 '/class="mw-diff-movedpara-(left|right)"/',
1135 [ $this,
'addLocalisedTitleTooltipsCb' ],
1146 'diff-paragraph-moved-toold' :
1147 'diff-paragraph-moved-tonew';
1148 return $matches[0] .
' title="' . $this->
msg( $key )->escaped() .
'"';
1157 if ( !is_object( $this->mOldRev ) || !is_object( $this->mNewRev ) ) {
1159 } elseif ( !$this->mOldPage->equals( $this->mNewPage ) ) {
1164 if ( $this->mOldRev->getTimestamp() > $this->mNewRev->getTimestamp() ) {
1174 $nEdits = $this->mNewPage->countRevisionsBetween( $oldRev, $newRev, 1000 );
1175 if ( $nEdits > 0 && $nEdits <= 1000 ) {
1177 $users = $this->mNewPage->getAuthorsBetween( $oldRev, $newRev, $limit );
1178 $numUsers = count( $users );
1180 if ( $numUsers == 1 && $users[0] == $newRev->getUserText( Revision::RAW ) ) {
1200 if ( $numUsers === 0 ) {
1201 $msg =
'diff-multi-sameuser';
1202 } elseif ( $numUsers > $limit ) {
1203 $msg =
'diff-multi-manyusers';
1206 $msg =
'diff-multi-otherusers';
1209 return wfMessage( $msg )->numParams( $numEdits, $numUsers )->parse();
1224 $revtimestamp =
$rev->getTimestamp();
1225 $timestamp =
$lang->userTimeAndDate( $revtimestamp, $user );
1226 $dateofrev =
$lang->userDate( $revtimestamp, $user );
1227 $timeofrev =
$lang->userTime( $revtimestamp, $user );
1230 $rev->
isCurrent() ?
'currentrev-asof' :
'revisionasof',
1236 if ( $complete !==
'complete' ) {
1240 $title =
$rev->getTitle();
1243 [
'oldid' =>
$rev->getId() ] );
1245 if (
$rev->userCan( Revision::DELETED_TEXT, $user ) ) {
1246 $editQuery = [
'action' =>
'edit' ];
1247 if ( !
$rev->isCurrent() ) {
1248 $editQuery[
'oldid'] =
$rev->getId();
1251 $key = $title->quickUserCan(
'edit', $user ) ?
'editold' :
'viewsourceold';
1252 $msg = $this->
msg( $key )->escaped();
1253 $editLink = $this->
msg(
'parentheses' )->rawParams(
1255 $header .=
' ' . Html::rawElement(
1257 [
'class' =>
'mw-diff-edit' ],
1260 if (
$rev->isDeleted( Revision::DELETED_TEXT ) ) {
1263 [
'class' =>
'history-deleted' ],
1268 $header = Html::rawElement(
'span', [
'class' =>
'history-deleted' ],
$header );
1286 public function addHeader( $diff, $otitle, $ntitle, $multi =
'', $notice =
'' ) {
1289 $header = Html::openElement(
'table', [
1290 'class' => [
'diff',
'diff-contentalign-' . $this->
getDiffLang()->alignStart() ],
1291 'data-mw' =>
'interface',
1293 $userLang = htmlspecialchars( $this->
getLanguage()->getHtmlCode() );
1295 if ( !$diff && !$otitle ) {
1297 <tr class=\"diff-title\" lang=\"{$userLang}\">
1298 <td class=\"diff-ntitle\">{$ntitle}</td>
1304 <col class=\"diff-marker\" />
1305 <col class=\"diff-content\" />
1306 <col class=\"diff-marker\" />
1307 <col class=\"diff-content\" />";
1314 if ( $otitle || $ntitle ) {
1316 <tr class=\"diff-title\" lang=\"{$userLang}\">
1317 <td colspan=\"$colspan\" class=\"diff-otitle\">{$otitle}</td>
1318 <td colspan=\"$colspan\" class=\"diff-ntitle\">{$ntitle}</td>
1323 if ( $multi !=
'' ) {
1324 $header .=
"<tr><td colspan=\"{$multiColspan}\" " .
1325 "class=\"diff-multi\" lang=\"{$userLang}\">{$multi}</td></tr>";
1327 if ( $notice !=
'' ) {
1328 $header .=
"<tr><td colspan=\"{$multiColspan}\" " .
1329 "class=\"diff-notice\" lang=\"{$userLang}\">{$notice}</td></tr>";
1332 return $header . $diff .
"</table>";
1342 $this->mOldContent = $oldContent;
1343 $this->mNewContent = $newContent;
1345 $this->mTextLoaded = 2;
1346 $this->mRevisionsLoaded =
true;
1371 if ( $new ===
'prev' ) {
1373 $newid = intval( $old );
1374 $oldid = $this->
getTitle()->getPreviousRevisionID( $newid );
1375 } elseif ( $new ===
'next' ) {
1377 $oldid = intval( $old );
1378 $newid = $this->
getTitle()->getNextRevisionID( $oldid );
1380 $oldid = intval( $old );
1381 $newid = intval( $new );
1384 return [ $oldid, $newid ];
1391 if ( $this->mRevisionsIdsLoaded ) {
1395 $this->mRevisionsIdsLoaded =
true;
1401 if ( $new ===
'next' && $this->mNewid ===
false ) {
1402 # if no result, NewId points to the newest old revision. The only newer
1403 # revision is cur, which is "0".
1408 'NewDifferenceEngine',
1409 [ $this->
getTitle(), &$this->mOldid, &$this->mNewid, $old, $new ]
1426 if ( $this->mRevisionsLoaded ) {
1431 $this->mRevisionsLoaded =
true;
1436 if ( $this->mNewid ) {
1437 $this->mNewRev = Revision::newFromId( $this->mNewid );
1439 $this->mNewRev = Revision::newFromTitle(
1442 Revision::READ_NORMAL
1446 if ( !$this->mNewRev instanceof
Revision ) {
1451 $this->mNewid = $this->mNewRev->getId();
1452 $this->mNewPage = $this->mNewRev->getTitle();
1455 $this->mOldRev =
false;
1456 if ( $this->mOldid ) {
1457 $this->mOldRev = Revision::newFromId( $this->mOldid );
1458 } elseif ( $this->mOldid === 0 ) {
1459 $rev = $this->mNewRev->getPrevious();
1461 $this->mOldid =
$rev->getId();
1462 $this->mOldRev =
$rev;
1465 $this->mOldid =
false;
1466 $this->mOldRev =
false;
1470 if ( is_null( $this->mOldRev ) ) {
1474 if ( $this->mOldRev ) {
1475 $this->mOldPage = $this->mOldRev->getTitle();
1480 if ( $this->mOldid !==
false ) {
1481 $this->mOldTags =
$dbr->selectField(
1484 [
'ts_rev_id' => $this->mOldid ],
1488 $this->mOldTags =
false;
1490 $this->mNewTags =
$dbr->selectField(
1493 [
'ts_rev_id' => $this->mNewid ],
1506 if ( $this->mTextLoaded == 2 ) {
1511 $this->mTextLoaded = 2;
1517 if ( $this->mOldRev ) {
1518 $this->mOldContent = $this->mOldRev->getContent( Revision::FOR_THIS_USER, $this->
getUser() );
1519 if ( $this->mOldContent ===
null ) {
1524 if ( $this->mNewRev ) {
1525 $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->
getUser() );
1526 Hooks::run(
'DifferenceEngineLoadTextAfterNewContentIsLoaded', [ $this ] );
1527 if ( $this->mNewContent ===
null ) {
1541 if ( $this->mTextLoaded >= 1 ) {
1545 $this->mTextLoaded = 1;
1551 $this->mNewContent = $this->mNewRev->getContent( Revision::FOR_THIS_USER, $this->
getUser() );
1553 Hooks::run(
'DifferenceEngineAfterLoadNewText', [ $this ] );
$wgShowHostnames
Expose backend server host names through the API and various HTML comments.
$wgUseRCPatrol
Use RC Patrolling to check for vandalism (from recent changes and watchlists) New pages and new files...
$wgEnableWriteAPI
Allow the API to be used to perform write operations (page edits, rollback, etc.) when an authorised ...
$wgEnableAPI
Enable the MediaWiki API for convenient access to machine-readable data via api.php.
$wgExternalDiffEngine
Name of the external diff engine to use.
wfGetLangObj( $langcode=false)
Return a Language object from $langcode.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfTempDir()
Tries to get the system directory for temporary files.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
wfIncrStats( $key, $count=1)
Increment a statistics counter.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfMergeErrorArrays()
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
wfHostname()
Fetch server name for use in error reporting etc.
wfLogWarning( $msg, $callerOffset=1, $level=E_USER_WARNING)
Send a warning as a PHP error and the debug log.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
static flag( $flag, IContextSource $context=null)
Make an "<abbr>" element for a given change flag.
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
getWikiPage()
Get the WikiPage object.
getContext()
Get the base IContextSource object.
setContext(IContextSource $context)
Class representing a 'diff' between two sequences of strings.
getDiffBodyCacheKey()
Returns the cache key for diff body text or content.
bool $unhide
Show rev_deleted content if allowed.
bool $mRevisionsIdsLoaded
Have the revisions IDs been loaded.
revisionDeleteLink( $rev)
int $mTextLoaded
How many text blobs have been loaded, 0, 1 or 2?
deletedIdMarker( $id)
Build a wikitext link toward a deleted revision, if viewable.
generateTextDiffBody( $otext, $ntext)
Generate a diff, no caching.
loadNewText()
Load the text of the new revision, not the old one.
showDiffPage( $diffOnly=false)
loadText()
Load the text of the revisions, as well as revision data.
const DIFF_VERSION
Constant to indicate diff cache compatibility.
mapDiffPrevNext( $old, $new)
Maps a revision pair definition as accepted by DifferenceEngine constructor to a pair of actual integ...
getParserOutput(WikiPage $page, Revision $rev)
getDiffBody()
Get the diff table body, without header.
loadRevisionData()
Load revision metadata for the specified articles.
loadRevisionIds()
Load revision IDs.
bool $mRevisionsLoaded
Have the revisions been loaded.
showDiff( $otitle, $ntitle, $notice='')
Get the diff text, send it to the OutputPage object Returns false if the diff could not be generated,...
localiseLineNumbers( $text)
Replace line numbers with the text in the user's language.
string $mMarkPatrolledLink
Link to action=markpatrolled.
localiseLineNumbersCb( $matches)
deletedLink( $id)
Look up a special:Undelete link to the given deleted revision id, as a workaround for being unable to...
bool $mReducedLineNumbers
If true, line X is not displayed when X is 1, for example to increase readability and conserve space ...
getRevisionHeader(Revision $rev, $complete='')
Get a header for a specified revision.
__construct( $context=null, $old=0, $new=0, $rcid=0, $refreshCache=false, $unhide=false)
#-
bool $mCacheHit
Was the diff fetched from cache?
getMultiNotice()
If there are revisions between the ones being compared, return a note saying so.
debug( $generator="internal")
Generate a debug comment indicating diff generating time, server node, and generator backend.
addHeader( $diff, $otitle, $ntitle, $multi='', $notice='')
Add the header to a diff body.
bool $mRefreshCache
Refresh the diff cache.
getEngine()
Process $wgExternalDiffEngine and get a sane, usable engine.
getDiffBodyCacheKeyParams()
Get the cache key parameters.
getDiff( $otitle, $ntitle, $notice='')
Get complete diff table, including header.
renderNewRevision()
Show the new revision of the page.
addLocalisedTitleTooltips( $text)
Add title attributes for tooltips on moved paragraph indicators.
setContent(Content $oldContent, Content $newContent)
Use specified text instead of loading from the database.
generateContentDiffBody(Content $old, Content $new)
Generate a diff, no caching.
localiseDiff( $text)
Localise diff output.
getMarkPatrolledLinkInfo()
Returns an array of meta data needed to build a "mark as patrolled" link and adds the mediawiki....
setReducedLineNumbers( $value=true)
textDiff( $otext, $ntext)
Generates diff, to be wrapped internally in a logging/instrumentation.
static intermediateEditsMsg( $numEdits, $numUsers, $limit)
Get a notice about how many intermediate edits and users there are.
setTextLanguage( $lang)
Set the language in which the diff text is written (Defaults to page content language).
showDiffStyle()
Add style sheets for diff display.
addLocalisedTitleTooltipsCb(array $matches)
markPatrolledLink()
Build a link to mark a change as patrolled.
$enableDebugComment
Set this to true to add debug info to the HTML output.
Exception class which takes an HTML error message, and does not produce a backtrace.
Internationalisation code.
static generateRollback( $rev, IContextSource $context=null, $options=[ 'verify'])
Generate a rollback link for a given revision.
static titleAttrib( $name, $options=null, array $msgParams=[])
Given the id of an interface element, constructs the appropriate title attribute from the system mess...
static linkKnown( $target, $html=null, $customAttribs=[], $query=[], $options=[ 'known'])
Identical to link(), except $options defaults to 'known'.
static revComment(Revision $rev, $local=false, $isPublic=false)
Wrap and format the given revision's comment block, if the current user is allowed to view it.
static revUserTools( $rev, $isPublic=false)
Generate a user tool link cluster if the current user is allowed to view it.
static getRevDeleteLink(User $user, Revision $rev, Title $title)
Get a revision-deletion link, or disabled link, or nothing, depending on user permissions & the setti...
Show an error when a user tries to do something they do not have the necessary permissions for.
Convenience class for dealing with PoolCounters using callbacks.
Content object implementation for representing flat text.
Represents a title within MediaWiki.
Class representing a MediaWiki article and history.
makeParserOptions( $context)
Get parser options suitable for rendering the primary article wikitext.
getParserOutput(ParserOptions $parserOptions, $oldid=null, $forceParse=false)
Get a ParserOutput for the given ParserOptions and revision ID.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify as strings Extensions should add to this list prev or next $refreshCache
also included in $newHeader $rollback
passed in as a query string parameter to the various URLs constructed here(i.e. $nextlink) $rdel also included in $oldHeader $oldminor
namespace being checked & $result
see documentation in includes Linker php for Linker::makeImageLink & $time
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy: boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
returning false will NOT prevent logging a wrapping ErrorException $suppressed
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
usually copyright or history_copyright This message must be in HTML not wikitext & $link
the value to return A Title object or null for latest all implement SearchIndexField $engine
also included in $newHeader if any $newminor
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Base interface for content objects.
serialize( $format=null)
Convenience method for serializing this Content object.
Interface for objects which can provide a MediaWiki context on request.
controlled by $wgMainCacheType controlled by $wgParserCacheType controlled by $wgMessageCacheType If you set CACHE_NONE to one of the three control default value for MediaWiki still create a but requests to it are no ops and we always fall through to the database If the cache daemon can t be it should also disable itself fairly smoothly By $wgMemc is used but when it is $parserMemc or $messageMemc this is mentioned below
if(!isset( $args[0])) $lang
wikidiff2_do_diff( $text1, $text2, $numContextLines, $movedParagraphDetectionCutoff=0)
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge...