2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @defgroup DifferenceEngine DifferenceEngine
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2008-08-05 19:40:29 +00:00
|
|
|
|
2007-05-16 19:10:41 +00:00
|
|
|
/**
|
|
|
|
|
* Constant to indicate diff cache compatibility.
|
|
|
|
|
* Bump this when changing the diff formatting in a way that
|
|
|
|
|
* fixes important bugs or such to force cached diff views to
|
|
|
|
|
* clear.
|
|
|
|
|
*/
|
2007-05-17 21:04:50 +00:00
|
|
|
define( 'MW_DIFF_VERSION', '1.11a' );
|
2007-05-16 19:10:41 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @todo document
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
class DifferenceEngine {
|
2005-03-29 15:49:06 +00:00
|
|
|
/**#@+
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
2005-03-29 15:49:06 +00:00
|
|
|
*/
|
2006-05-11 22:40:38 +00:00
|
|
|
var $mOldid, $mNewid, $mTitle;
|
|
|
|
|
var $mOldtitle, $mNewtitle, $mPagetitle;
|
|
|
|
|
var $mOldtext, $mNewtext;
|
|
|
|
|
var $mOldPage, $mNewPage;
|
|
|
|
|
var $mRcidMarkPatrolled;
|
|
|
|
|
var $mOldRev, $mNewRev;
|
|
|
|
|
var $mRevisionsLoaded = false; // Have the revisions been loaded
|
|
|
|
|
var $mTextLoaded = 0; // How many text blobs have been loaded, 0, 1 or 2?
|
2005-03-29 15:49:06 +00:00
|
|
|
/**#@-*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constructor
|
2006-04-19 15:46:24 +00:00
|
|
|
* @param $titleObj Title object that the diff is associated with
|
|
|
|
|
* @param $old Integer: old ID we want to show and diff with.
|
|
|
|
|
* @param $new String: either 'prev' or 'next'.
|
|
|
|
|
* @param $rcid Integer: ??? FIXME (default 0)
|
2007-09-07 23:07:07 +00:00
|
|
|
* @param $refreshCache boolean If set, refreshes the diff cache
|
2005-03-29 15:49:06 +00:00
|
|
|
*/
|
2008-04-06 18:16:38 +00:00
|
|
|
function __construct( $titleObj = null, $old = 0, $new = 0, $rcid = 0, $refreshCache = false ) {
|
2005-11-15 11:12:21 +00:00
|
|
|
$this->mTitle = $titleObj;
|
2006-01-23 19:41:03 +00:00
|
|
|
wfDebug("DifferenceEngine old '$old' new '$new' rcid '$rcid'\n");
|
2005-03-29 15:49:06 +00:00
|
|
|
|
2006-02-09 13:04:20 +00:00
|
|
|
if ( 'prev' === $new ) {
|
2004-08-29 18:13:23 +00:00
|
|
|
# Show diff between revision $old and the previous one.
|
|
|
|
|
# Get previous one from DB.
|
|
|
|
|
#
|
2007-10-01 19:50:25 +00:00
|
|
|
$this->mNewid = intval($old);
|
2004-10-02 19:49:54 +00:00
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
$this->mOldid = $this->mTitle->getPreviousRevisionID( $this->mNewid );
|
2004-08-29 18:13:23 +00:00
|
|
|
|
2006-02-09 13:04:20 +00:00
|
|
|
} elseif ( 'next' === $new ) {
|
2004-08-29 18:13:23 +00:00
|
|
|
# Show diff between revision $old and the previous one.
|
|
|
|
|
# Get previous one from DB.
|
|
|
|
|
#
|
|
|
|
|
$this->mOldid = intval($old);
|
2005-11-15 11:12:21 +00:00
|
|
|
$this->mNewid = $this->mTitle->getNextRevisionID( $this->mOldid );
|
2004-08-29 18:13:23 +00:00
|
|
|
if ( false === $this->mNewid ) {
|
|
|
|
|
# if no result, NewId points to the newest old revision. The only newer
|
|
|
|
|
# revision is cur, which is "0".
|
|
|
|
|
$this->mNewid = 0;
|
|
|
|
|
}
|
2004-08-28 23:00:04 +00:00
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
$this->mOldid = intval($old);
|
|
|
|
|
$this->mNewid = intval($new);
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
$this->mRcidMarkPatrolled = intval($rcid); # force it to be an integer
|
2007-09-07 23:07:07 +00:00
|
|
|
$this->mRefreshCache = $refreshCache;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2008-05-23 09:03:49 +00:00
|
|
|
function getTitle() {
|
|
|
|
|
return $this->mTitle;
|
|
|
|
|
}
|
|
|
|
|
|
2007-01-12 03:36:46 +00:00
|
|
|
function showDiffPage( $diffOnly = false ) {
|
2007-01-12 10:03:51 +00:00
|
|
|
global $wgUser, $wgOut, $wgUseExternalEditor, $wgUseRCPatrol;
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2008-08-05 19:40:29 +00:00
|
|
|
# If external diffs are enabled both globally and for the user,
|
2005-04-12 03:36:20 +00:00
|
|
|
# we'll use the application/x-external-editor interface to call
|
|
|
|
|
# an external diff tool like kompare, kdiff3, etc.
|
2005-04-13 21:06:09 +00:00
|
|
|
if($wgUseExternalEditor && $wgUser->getOption('externaldiff')) {
|
|
|
|
|
global $wgInputEncoding,$wgServer,$wgScript,$wgLang;
|
2005-04-12 03:36:20 +00:00
|
|
|
$wgOut->disable();
|
|
|
|
|
header ( "Content-type: application/x-external-editor; charset=".$wgInputEncoding );
|
2006-01-07 13:31:29 +00:00
|
|
|
$url1=$this->mTitle->getFullURL("action=raw&oldid=".$this->mOldid);
|
2005-11-15 11:12:21 +00:00
|
|
|
$url2=$this->mTitle->getFullURL("action=raw&oldid=".$this->mNewid);
|
2005-04-13 21:06:09 +00:00
|
|
|
$special=$wgLang->getNsText(NS_SPECIAL);
|
2005-04-12 03:36:20 +00:00
|
|
|
$control=<<<CONTROL
|
2008-08-05 19:40:29 +00:00
|
|
|
[Process]
|
|
|
|
|
Type=Diff text
|
|
|
|
|
Engine=MediaWiki
|
|
|
|
|
Script={$wgServer}{$wgScript}
|
|
|
|
|
Special namespace={$special}
|
|
|
|
|
|
|
|
|
|
[File]
|
|
|
|
|
Extension=wiki
|
|
|
|
|
URL=$url1
|
|
|
|
|
|
|
|
|
|
[File 2]
|
|
|
|
|
Extension=wiki
|
|
|
|
|
URL=$url2
|
2005-04-12 03:36:20 +00:00
|
|
|
CONTROL;
|
|
|
|
|
echo($control);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->setArticleFlag( false );
|
2005-11-15 11:12:21 +00:00
|
|
|
if ( ! $this->loadRevisionData() ) {
|
2008-06-05 17:33:31 +00:00
|
|
|
$t = $this->mTitle->getPrefixedText();
|
|
|
|
|
$d = wfMsgExt( 'missingarticle-diff', array( 'escape' ), $this->mOldid, $this->mNewid );
|
2004-08-22 17:24:50 +00:00
|
|
|
$wgOut->setPagetitle( wfMsg( 'errorpagetitle' ) );
|
2008-06-05 17:33:31 +00:00
|
|
|
$wgOut->addWikiMsg( 'missing-article', "<nowiki>$t</nowiki>", $d );
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2003-04-14 23:10:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-05-24 09:05:49 +00:00
|
|
|
wfRunHooks( 'DiffViewHeader', array( $this, $this->mOldRev, $this->mNewRev ) );
|
|
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
if ( $this->mNewRev->isCurrent() ) {
|
|
|
|
|
$wgOut->setArticleFlag( true );
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2006-01-23 19:41:03 +00:00
|
|
|
# mOldid is false if the difference engine is called with a "vague" query for
|
|
|
|
|
# a diff between a version V and its previous version V' AND the version V
|
|
|
|
|
# is the first version of that article. In that case, V' does not exist.
|
|
|
|
|
if ( $this->mOldid === false ) {
|
|
|
|
|
$this->showFirstRevision();
|
2007-01-12 03:36:46 +00:00
|
|
|
$this->renderNewRevision(); // should we respect $diffOnly here or not?
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2006-01-23 19:41:03 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2004-02-26 13:37:26 +00:00
|
|
|
$wgOut->suppressQuickbar();
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-05-11 09:47:41 +00:00
|
|
|
$oldTitle = $this->mOldPage->getPrefixedText();
|
|
|
|
|
$newTitle = $this->mNewPage->getPrefixedText();
|
|
|
|
|
if( $oldTitle == $newTitle ) {
|
2007-12-04 20:47:52 +00:00
|
|
|
$wgOut->setPageTitle( $newTitle );
|
2004-05-11 09:47:41 +00:00
|
|
|
} else {
|
2007-12-04 20:47:52 +00:00
|
|
|
$wgOut->setPageTitle( $oldTitle . ', ' . $newTitle );
|
2004-05-11 09:47:41 +00:00
|
|
|
}
|
2007-12-04 20:47:52 +00:00
|
|
|
$wgOut->setSubtitle( wfMsg( 'difference' ) );
|
2008-07-23 19:05:43 +00:00
|
|
|
$wgOut->setRobotPolicy( 'noindex,nofollow' );
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-05-11 09:47:41 +00:00
|
|
|
if ( !( $this->mOldPage->userCanRead() && $this->mNewPage->userCanRead() ) ) {
|
|
|
|
|
$wgOut->loginToUse();
|
|
|
|
|
$wgOut->output();
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-05-11 09:47:41 +00:00
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-08 07:12:03 +00:00
|
|
|
$sk = $wgUser->getSkin();
|
2004-01-17 09:49:43 +00:00
|
|
|
|
2008-05-29 21:14:11 +00:00
|
|
|
// Check if page is editable
|
|
|
|
|
$editable = $this->mNewRev->getTitle()->userCan( 'edit' );
|
2008-07-07 05:31:00 +00:00
|
|
|
if ( $editable && $this->mNewRev->isCurrent() && $wgUser->isAllowed( 'rollback' ) ) {
|
2006-11-16 22:53:01 +00:00
|
|
|
$rollback = ' ' . $sk->generateRollback( $this->mNewRev );
|
2004-01-17 09:49:43 +00:00
|
|
|
} else {
|
2004-08-22 17:24:50 +00:00
|
|
|
$rollback = '';
|
2004-01-17 09:49:43 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-08-06 03:29:40 +00:00
|
|
|
// Prepare a change patrol link, if applicable
|
|
|
|
|
if( $wgUseRCPatrol && $wgUser->isAllowed( 'patrol' ) ) {
|
|
|
|
|
// If we've been given an explicit change identifier, use it; saves time
|
|
|
|
|
if( $this->mRcidMarkPatrolled ) {
|
|
|
|
|
$rcid = $this->mRcidMarkPatrolled;
|
|
|
|
|
} else {
|
|
|
|
|
// Look for an unpatrolled change corresponding to this diff
|
2007-09-09 18:31:21 +00:00
|
|
|
$db = wfGetDB( DB_SLAVE );
|
2007-08-06 03:29:40 +00:00
|
|
|
$change = RecentChange::newFromConds(
|
2008-08-05 19:40:29 +00:00
|
|
|
array(
|
|
|
|
|
// Add redundant user,timestamp condition so we can use the existing index
|
2008-02-17 20:13:00 +00:00
|
|
|
'rc_user_text' => $this->mNewRev->getRawUserText(),
|
2007-09-09 18:31:21 +00:00
|
|
|
'rc_timestamp' => $db->timestamp( $this->mNewRev->getTimestamp() ),
|
2007-08-06 03:29:40 +00:00
|
|
|
'rc_this_oldid' => $this->mNewid,
|
|
|
|
|
'rc_last_oldid' => $this->mOldid,
|
2008-02-17 20:13:00 +00:00
|
|
|
'rc_patrolled' => 0
|
2008-08-05 19:40:29 +00:00
|
|
|
),
|
|
|
|
|
__METHOD__
|
2007-08-06 03:29:40 +00:00
|
|
|
);
|
|
|
|
|
if( $change instanceof RecentChange ) {
|
|
|
|
|
$rcid = $change->mAttribs['rc_id'];
|
|
|
|
|
} else {
|
|
|
|
|
// None found
|
|
|
|
|
$rcid = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Build the link
|
|
|
|
|
if( $rcid ) {
|
2008-03-14 22:50:09 +00:00
|
|
|
$patrol = ' <span class="patrollink">[' . $sk->makeKnownLinkObj(
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->mTitle,
|
|
|
|
|
wfMsgHtml( 'markaspatrolleddiff' ),
|
2007-08-06 03:29:40 +00:00
|
|
|
"action=markpatrolled&rcid={$rcid}"
|
2008-03-14 22:50:09 +00:00
|
|
|
) . ']</span>';
|
2007-08-06 03:29:40 +00:00
|
|
|
} else {
|
|
|
|
|
$patrol = '';
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
} else {
|
2004-08-22 17:24:50 +00:00
|
|
|
$patrol = '';
|
2004-08-09 05:38:11 +00:00
|
|
|
}
|
2004-01-17 09:49:43 +00:00
|
|
|
|
2006-11-08 07:12:03 +00:00
|
|
|
$prevlink = $sk->makeKnownLinkObj( $this->mTitle, wfMsgHtml( 'previousdiff' ),
|
2005-08-02 11:41:35 +00:00
|
|
|
'diff=prev&oldid='.$this->mOldid, '', '', 'id="differences-prevlink"' );
|
2008-06-04 03:31:56 +00:00
|
|
|
if ( $this->mNewRev->isCurrent() ) {
|
|
|
|
|
$nextlink = ' ';
|
|
|
|
|
} else {
|
|
|
|
|
$nextlink = $sk->makeKnownLinkObj( $this->mTitle, wfMsgHtml( 'nextdiff' ),
|
|
|
|
|
'diff=next&oldid='.$this->mNewid, '', '', 'id="differences-nextlink"' );
|
|
|
|
|
}
|
2004-08-29 18:13:23 +00:00
|
|
|
|
2006-11-07 13:22:34 +00:00
|
|
|
$oldminor = '';
|
|
|
|
|
$newminor = '';
|
|
|
|
|
|
|
|
|
|
if ($this->mOldRev->mMinorEdit == 1) {
|
2008-04-06 18:16:38 +00:00
|
|
|
$oldminor = Xml::span( wfMsg( 'minoreditletter'), 'minor' ) . ' ';
|
2006-11-07 13:22:34 +00:00
|
|
|
}
|
|
|
|
|
|
2006-12-10 01:11:27 +00:00
|
|
|
if ($this->mNewRev->mMinorEdit == 1) {
|
2008-04-06 18:16:38 +00:00
|
|
|
$newminor = Xml::span( wfMsg( 'minoreditletter'), 'minor' ) . ' ';
|
2006-12-10 01:11:27 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-11-24 01:40:37 +00:00
|
|
|
$rdel = ''; $ldel = '';
|
|
|
|
|
if( $wgUser->isAllowed( 'deleterevision' ) ) {
|
|
|
|
|
$revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
|
|
|
|
|
if( !$this->mOldRev->userCan( Revision::DELETED_RESTRICTED ) ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
// If revision was hidden from sysops
|
2008-04-06 18:16:38 +00:00
|
|
|
$ldel = wfMsgHtml('rev-delundel');
|
2007-11-24 01:40:37 +00:00
|
|
|
} else {
|
|
|
|
|
$ldel = $sk->makeKnownLinkObj( $revdel,
|
2008-08-05 19:40:29 +00:00
|
|
|
wfMsgHtml('rev-delundel'),
|
2007-11-24 01:40:37 +00:00
|
|
|
'target=' . urlencode( $this->mOldRev->mTitle->getPrefixedDbkey() ) .
|
|
|
|
|
'&oldid=' . urlencode( $this->mOldRev->getId() ) );
|
|
|
|
|
// Bolden oversighted content
|
|
|
|
|
if( $this->mOldRev->isDeleted( Revision::DELETED_RESTRICTED ) )
|
2008-08-05 19:40:29 +00:00
|
|
|
$ldel = "<strong>$ldel</strong>";
|
2007-11-24 01:40:37 +00:00
|
|
|
}
|
|
|
|
|
$ldel = " <tt>(<small>$ldel</small>)</tt> ";
|
|
|
|
|
// We don't currently handle well changing the top revision's settings
|
|
|
|
|
if( $this->mNewRev->isCurrent() ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
// If revision was hidden from sysops
|
2008-04-14 07:45:50 +00:00
|
|
|
$rdel = wfMsgHtml('rev-delundel');
|
2007-11-24 01:40:37 +00:00
|
|
|
} else if( !$this->mNewRev->userCan( Revision::DELETED_RESTRICTED ) ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
// If revision was hidden from sysops
|
2008-04-14 07:45:50 +00:00
|
|
|
$rdel = wfMsgHtml('rev-delundel');
|
2007-11-24 01:40:37 +00:00
|
|
|
} else {
|
|
|
|
|
$rdel = $sk->makeKnownLinkObj( $revdel,
|
2008-08-05 19:40:29 +00:00
|
|
|
wfMsgHtml('rev-delundel'),
|
2007-11-24 01:40:37 +00:00
|
|
|
'target=' . urlencode( $this->mNewRev->mTitle->getPrefixedDbkey() ) .
|
|
|
|
|
'&oldid=' . urlencode( $this->mNewRev->getId() ) );
|
|
|
|
|
// Bolden oversighted content
|
|
|
|
|
if( $this->mNewRev->isDeleted( Revision::DELETED_RESTRICTED ) )
|
2008-08-05 19:40:29 +00:00
|
|
|
$rdel = "<strong>$rdel</strong>";
|
2007-11-24 01:40:37 +00:00
|
|
|
}
|
|
|
|
|
$rdel = " <tt>(<small>$rdel</small>)</tt> ";
|
|
|
|
|
}
|
2006-11-07 13:22:34 +00:00
|
|
|
|
2007-11-24 01:40:37 +00:00
|
|
|
$oldHeader = '<div id="mw-diff-otitle1"><strong>'.$this->mOldtitle.'</strong></div>' .
|
|
|
|
|
'<div id="mw-diff-otitle2">' . $sk->revUserTools( $this->mOldRev, true ) . "</div>" .
|
|
|
|
|
'<div id="mw-diff-otitle3">' . $oldminor . $sk->revComment( $this->mOldRev, !$diffOnly, true ) . $ldel . "</div>" .
|
|
|
|
|
'<div id="mw-diff-otitle4">' . $prevlink .'</div>';
|
|
|
|
|
$newHeader = '<div id="mw-diff-ntitle1"><strong>'.$this->mNewtitle.'</strong></div>' .
|
|
|
|
|
'<div id="mw-diff-ntitle2">' . $sk->revUserTools( $this->mNewRev, true ) . " $rollback</div>" .
|
|
|
|
|
'<div id="mw-diff-ntitle3">' . $newminor . $sk->revComment( $this->mNewRev, !$diffOnly, true ) . $rdel . "</div>" .
|
2007-09-02 17:13:03 +00:00
|
|
|
'<div id="mw-diff-ntitle4">' . $nextlink . $patrol . '</div>';
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
$this->showDiff( $oldHeader, $newHeader );
|
2007-01-12 03:36:46 +00:00
|
|
|
|
|
|
|
|
if ( !$diffOnly )
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->renderNewRevision();
|
2007-01-12 03:36:46 +00:00
|
|
|
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2007-01-12 03:36:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Show the new revision of the page.
|
|
|
|
|
*/
|
|
|
|
|
function renderNewRevision() {
|
|
|
|
|
global $wgOut;
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2007-01-12 03:36:46 +00:00
|
|
|
|
2004-08-28 19:08:17 +00:00
|
|
|
$wgOut->addHTML( "<hr /><h2>{$this->mPagetitle}</h2>\n" );
|
2007-02-04 18:16:38 +00:00
|
|
|
#add deleted rev tag if needed
|
2007-11-24 01:40:37 +00:00
|
|
|
if( !$this->mNewRev->userCan(Revision::DELETED_TEXT) ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
$wgOut->addWikiMsg( 'rev-deleted-text-permission' );
|
2007-11-24 01:40:37 +00:00
|
|
|
} else if( $this->mNewRev->isDeleted(Revision::DELETED_TEXT) ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
$wgOut->addWikiMsg( 'rev-deleted-text-view' );
|
2007-02-04 18:16:38 +00:00
|
|
|
}
|
2005-06-29 23:44:03 +00:00
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
if( !$this->mNewRev->isCurrent() ) {
|
2006-07-26 07:15:39 +00:00
|
|
|
$oldEditSectionSetting = $wgOut->parserOptions()->setEditSection( false );
|
2005-06-29 23:44:03 +00:00
|
|
|
}
|
2005-11-15 11:12:21 +00:00
|
|
|
|
|
|
|
|
$this->loadNewText();
|
2005-11-27 06:04:41 +00:00
|
|
|
if( is_object( $this->mNewRev ) ) {
|
|
|
|
|
$wgOut->setRevisionId( $this->mNewRev->getId() );
|
|
|
|
|
}
|
2007-01-12 03:36:46 +00:00
|
|
|
|
2007-10-11 00:53:45 +00:00
|
|
|
if ($this->mTitle->isCssJsSubpage() || $this->mTitle->isCssOrJsPage()) {
|
|
|
|
|
// Stolen from Article::view --AG 2007-10-11
|
|
|
|
|
|
|
|
|
|
// Give hooks a chance to customise the output
|
|
|
|
|
if( wfRunHooks( 'ShowRawCssJs', array( $this->mNewtext, $this->mTitle, $wgOut ) ) ) {
|
|
|
|
|
// Wrap the whole lot in a <pre> and don't parse
|
|
|
|
|
$m = array();
|
|
|
|
|
preg_match( '!\.(css|js)$!u', $this->mTitle->getText(), $m );
|
|
|
|
|
$wgOut->addHtml( "<pre class=\"mw-code mw-{$m[1]}\" dir=\"ltr\">\n" );
|
|
|
|
|
$wgOut->addHtml( htmlspecialchars( $this->mNewtext ) );
|
|
|
|
|
$wgOut->addHtml( "\n</pre>\n" );
|
|
|
|
|
}
|
|
|
|
|
} else
|
2008-08-05 19:40:29 +00:00
|
|
|
$wgOut->addWikiTextTidy( $this->mNewtext );
|
2005-11-15 11:12:21 +00:00
|
|
|
|
|
|
|
|
if( !$this->mNewRev->isCurrent() ) {
|
2006-07-26 07:15:39 +00:00
|
|
|
$wgOut->parserOptions()->setEditSection( $oldEditSectionSetting );
|
2005-06-29 23:44:03 +00:00
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2005-03-29 15:49:06 +00:00
|
|
|
/**
|
|
|
|
|
* Show the first revision of an article. Uses normal diff headers in
|
|
|
|
|
* contrast to normal "old revision" display style.
|
|
|
|
|
*/
|
|
|
|
|
function showFirstRevision() {
|
2006-11-08 07:12:03 +00:00
|
|
|
global $wgOut, $wgUser;
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2004-08-29 18:13:23 +00:00
|
|
|
|
|
|
|
|
# Get article text from the DB
|
|
|
|
|
#
|
2005-11-15 11:12:21 +00:00
|
|
|
if ( ! $this->loadNewText() ) {
|
2008-06-05 17:33:31 +00:00
|
|
|
$t = $this->mTitle->getPrefixedText();
|
|
|
|
|
$d = wfMsgExt( 'missingarticle-diff', array( 'escape' ), $this->mOldid, $this->mNewid );
|
2004-08-29 18:13:23 +00:00
|
|
|
$wgOut->setPagetitle( wfMsg( 'errorpagetitle' ) );
|
2008-06-05 17:33:31 +00:00
|
|
|
$wgOut->addWikiMsg( 'missing-article', "<nowiki>$t</nowiki>", $d );
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-08-29 18:13:23 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2005-11-15 11:12:21 +00:00
|
|
|
if ( $this->mNewRev->isCurrent() ) {
|
|
|
|
|
$wgOut->setArticleFlag( true );
|
|
|
|
|
}
|
2004-08-29 18:13:23 +00:00
|
|
|
|
|
|
|
|
# Check if user is allowed to look at this page. If not, bail out.
|
|
|
|
|
#
|
2005-11-15 11:12:21 +00:00
|
|
|
if ( !( $this->mTitle->userCanRead() ) ) {
|
2004-08-29 18:13:23 +00:00
|
|
|
$wgOut->loginToUse();
|
|
|
|
|
$wgOut->output();
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-08-29 18:13:23 +00:00
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Prepare the header box
|
|
|
|
|
#
|
2006-11-08 07:12:03 +00:00
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
|
|
|
|
|
$nextlink = $sk->makeKnownLinkObj( $this->mTitle, wfMsgHtml( 'nextdiff' ), 'diff=next&oldid='.$this->mNewid, '', '', 'id="differences-nextlink"' );
|
2006-03-16 19:04:25 +00:00
|
|
|
$header = "<div class=\"firstrevisionheader\" style=\"text-align: center\"><strong>{$this->mOldtitle}</strong><br />" .
|
2008-08-05 19:40:29 +00:00
|
|
|
$sk->revUserTools( $this->mNewRev ) . "<br />" .
|
|
|
|
|
$sk->revComment( $this->mNewRev ) . "<br />" .
|
|
|
|
|
$nextlink . "</div>\n";
|
2004-08-30 23:17:04 +00:00
|
|
|
|
2004-08-29 18:13:23 +00:00
|
|
|
$wgOut->addHTML( $header );
|
|
|
|
|
|
2007-12-04 20:47:52 +00:00
|
|
|
$wgOut->setSubtitle( wfMsg( 'difference' ) );
|
2008-07-23 19:05:43 +00:00
|
|
|
$wgOut->setRobotPolicy( 'noindex,nofollow' );
|
2004-08-29 18:13:23 +00:00
|
|
|
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-08-29 18:13:23 +00:00
|
|
|
}
|
|
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
/**
|
|
|
|
|
* Get the diff text, send it to $wgOut
|
|
|
|
|
* Returns false if the diff could not be generated, otherwise returns true
|
|
|
|
|
*/
|
|
|
|
|
function showDiff( $otitle, $ntitle ) {
|
2007-09-07 23:07:07 +00:00
|
|
|
global $wgOut;
|
|
|
|
|
$diff = $this->getDiff( $otitle, $ntitle );
|
2005-11-15 11:12:21 +00:00
|
|
|
if ( $diff === false ) {
|
2008-06-05 17:33:31 +00:00
|
|
|
$wgOut->addWikiMsg( 'missing-article', "<nowiki>(fixme, bug)</nowiki>", '' );
|
2005-11-15 11:12:21 +00:00
|
|
|
return false;
|
|
|
|
|
} else {
|
2007-06-13 20:08:19 +00:00
|
|
|
$this->showDiffStyle();
|
2005-11-15 11:12:21 +00:00
|
|
|
$wgOut->addHTML( $diff );
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2004-10-09 02:53:11 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-06-13 20:08:19 +00:00
|
|
|
/**
|
|
|
|
|
* Add style sheets and supporting JS for diff display.
|
|
|
|
|
*/
|
|
|
|
|
function showDiffStyle() {
|
|
|
|
|
global $wgStylePath, $wgStyleVersion, $wgOut;
|
|
|
|
|
$wgOut->addStyle( 'common/diff.css' );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-06-13 20:08:19 +00:00
|
|
|
// JS is needed to detect old versions of Mozilla to work around an annoyance bug.
|
|
|
|
|
$wgOut->addScript( "<script type=\"text/javascript\" src=\"$wgStylePath/common/diff.js?$wgStyleVersion\"></script>" );
|
|
|
|
|
}
|
2005-11-15 11:12:21 +00:00
|
|
|
|
|
|
|
|
/**
|
2007-07-22 23:37:01 +00:00
|
|
|
* Get complete diff table, including header
|
|
|
|
|
*
|
|
|
|
|
* @param Title $otitle Old title
|
|
|
|
|
* @param Title $ntitle New title
|
|
|
|
|
* @return mixed
|
2005-11-15 11:12:21 +00:00
|
|
|
*/
|
2007-09-07 23:07:07 +00:00
|
|
|
function getDiff( $otitle, $ntitle ) {
|
|
|
|
|
$body = $this->getDiffBody();
|
2005-11-15 11:12:21 +00:00
|
|
|
if ( $body === false ) {
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
2006-12-06 08:28:44 +00:00
|
|
|
$multi = $this->getMultiNotice();
|
|
|
|
|
return $this->addHeader( $body, $otitle, $ntitle, $multi );
|
2005-11-15 11:12:21 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the diff table body, without header
|
2007-07-22 23:37:01 +00:00
|
|
|
*
|
|
|
|
|
* @return mixed
|
2005-11-15 11:12:21 +00:00
|
|
|
*/
|
2007-09-07 23:07:07 +00:00
|
|
|
function getDiffBody() {
|
2006-10-04 09:06:18 +00:00
|
|
|
global $wgMemc;
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2008-03-18 23:36:24 +00:00
|
|
|
// Check if the diff should be hidden from this user
|
|
|
|
|
if ( $this->mOldRev && !$this->mOldRev->userCan(Revision::DELETED_TEXT) ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
return '';
|
2008-03-18 23:36:24 +00:00
|
|
|
} else if ( $this->mNewRev && !$this->mNewRev->userCan(Revision::DELETED_TEXT) ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
return '';
|
2008-03-18 23:36:24 +00:00
|
|
|
}
|
2005-11-15 11:12:21 +00:00
|
|
|
// Cacheable?
|
|
|
|
|
$key = false;
|
2007-09-07 23:07:07 +00:00
|
|
|
if ( $this->mOldid && $this->mNewid ) {
|
2007-05-16 19:10:41 +00:00
|
|
|
$key = wfMemcKey( 'diff', 'version', MW_DIFF_VERSION, 'oldid', $this->mOldid, 'newid', $this->mNewid );
|
2007-09-07 23:07:07 +00:00
|
|
|
// Try cache
|
|
|
|
|
if ( !$this->mRefreshCache ) {
|
|
|
|
|
$difftext = $wgMemc->get( $key );
|
|
|
|
|
if ( $difftext ) {
|
2008-03-18 23:07:19 +00:00
|
|
|
wfIncrStats( 'diff_cache_hit' );
|
|
|
|
|
$difftext = $this->localiseLineNumbers( $difftext );
|
|
|
|
|
$difftext .= "\n<!-- diff cache key $key -->\n";
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2008-03-18 23:07:19 +00:00
|
|
|
return $difftext;
|
2007-09-07 23:07:07 +00:00
|
|
|
}
|
|
|
|
|
} // don't try to load but save the result
|
2005-11-15 11:12:21 +00:00
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2007-11-24 01:40:37 +00:00
|
|
|
// Loadtext is permission safe, this just clears out the diff
|
2005-11-15 11:12:21 +00:00
|
|
|
if ( !$this->loadText() ) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2005-11-15 11:12:21 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2006-02-20 06:12:12 +00:00
|
|
|
$difftext = $this->generateDiffBody( $this->mOldtext, $this->mNewtext );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-02-17 04:49:13 +00:00
|
|
|
// Save to cache for 7 days
|
2008-03-18 23:36:24 +00:00
|
|
|
if ( $key !== false && $difftext !== false ) {
|
2006-02-17 04:49:13 +00:00
|
|
|
wfIncrStats( 'diff_cache_miss' );
|
|
|
|
|
$wgMemc->set( $key, $difftext, 7*86400 );
|
|
|
|
|
} else {
|
|
|
|
|
wfIncrStats( 'diff_uncacheable' );
|
|
|
|
|
}
|
|
|
|
|
// Replace line numbers with the text in the user's language
|
2006-02-20 06:12:12 +00:00
|
|
|
if ( $difftext !== false ) {
|
|
|
|
|
$difftext = $this->localiseLineNumbers( $difftext );
|
|
|
|
|
}
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2006-02-17 04:49:13 +00:00
|
|
|
return $difftext;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Generate a diff, no caching
|
|
|
|
|
* $otext and $ntext must be already segmented
|
|
|
|
|
*/
|
|
|
|
|
function generateDiffBody( $otext, $ntext ) {
|
2006-02-20 06:12:12 +00:00
|
|
|
global $wgExternalDiffEngine, $wgContLang;
|
|
|
|
|
|
|
|
|
|
$otext = str_replace( "\r\n", "\n", $otext );
|
|
|
|
|
$ntext = str_replace( "\r\n", "\n", $ntext );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-02-09 13:04:20 +00:00
|
|
|
if ( $wgExternalDiffEngine == 'wikidiff' ) {
|
2004-08-30 23:17:04 +00:00
|
|
|
# For historical reasons, external diff engine expects
|
|
|
|
|
# input text to be HTML-escaped already
|
2006-02-20 06:12:12 +00:00
|
|
|
$otext = htmlspecialchars ( $wgContLang->segmentForDiff( $otext ) );
|
|
|
|
|
$ntext = htmlspecialchars ( $wgContLang->segmentForDiff( $ntext ) );
|
2004-11-21 03:54:26 +00:00
|
|
|
if( !function_exists( 'wikidiff_do_diff' ) ) {
|
|
|
|
|
dl('php_wikidiff.so');
|
|
|
|
|
}
|
2008-04-25 22:52:05 +00:00
|
|
|
return $wgContLang->unsegementForDiff( wikidiff_do_diff( $otext, $ntext, 2 ) ) .
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->debug( 'wikidiff1' );
|
2006-03-11 17:13:49 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-02-17 04:49:13 +00:00
|
|
|
if ( $wgExternalDiffEngine == 'wikidiff2' ) {
|
2006-02-09 13:04:20 +00:00
|
|
|
# Better external diff engine, the 2 may some day be dropped
|
2006-02-20 06:12:12 +00:00
|
|
|
# This one does the escaping and segmenting itself
|
2006-02-09 13:04:20 +00:00
|
|
|
if ( !function_exists( 'wikidiff2_do_diff' ) ) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ . "-dl" );
|
2006-02-17 04:49:13 +00:00
|
|
|
@dl('php_wikidiff2.so');
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ . "-dl" );
|
2006-02-09 13:04:20 +00:00
|
|
|
}
|
2006-02-17 04:49:13 +00:00
|
|
|
if ( function_exists( 'wikidiff2_do_diff' ) ) {
|
2006-04-02 03:57:51 +00:00
|
|
|
wfProfileIn( 'wikidiff2_do_diff' );
|
|
|
|
|
$text = wikidiff2_do_diff( $otext, $ntext, 2 );
|
2008-04-25 22:52:05 +00:00
|
|
|
$text .= $this->debug( 'wikidiff2' );
|
2006-04-02 03:57:51 +00:00
|
|
|
wfProfileOut( 'wikidiff2_do_diff' );
|
|
|
|
|
return $text;
|
2006-02-17 04:49:13 +00:00
|
|
|
}
|
|
|
|
|
}
|
2008-08-05 19:40:29 +00:00
|
|
|
if ( $wgExternalDiffEngine != 'wikidiff3' && $wgExternalDiffEngine !== false ) {
|
2006-02-09 13:04:20 +00:00
|
|
|
# Diff via the shell
|
|
|
|
|
global $wgTmpDirectory;
|
|
|
|
|
$tempName1 = tempnam( $wgTmpDirectory, 'diff_' );
|
|
|
|
|
$tempName2 = tempnam( $wgTmpDirectory, 'diff_' );
|
|
|
|
|
|
|
|
|
|
$tempFile1 = fopen( $tempName1, "w" );
|
|
|
|
|
if ( !$tempFile1 ) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2006-02-09 13:04:20 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
$tempFile2 = fopen( $tempName2, "w" );
|
|
|
|
|
if ( !$tempFile2 ) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2006-02-09 13:04:20 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
fwrite( $tempFile1, $otext );
|
|
|
|
|
fwrite( $tempFile2, $ntext );
|
|
|
|
|
fclose( $tempFile1 );
|
|
|
|
|
fclose( $tempFile2 );
|
|
|
|
|
$cmd = wfEscapeShellArg( $wgExternalDiffEngine, $tempName1, $tempName2 );
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ . "-shellexec" );
|
2006-02-09 13:04:20 +00:00
|
|
|
$difftext = wfShellExec( $cmd );
|
2008-04-25 22:52:05 +00:00
|
|
|
$difftext .= $this->debug( "external $wgExternalDiffEngine" );
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ . "-shellexec" );
|
2006-02-09 13:04:20 +00:00
|
|
|
unlink( $tempName1 );
|
|
|
|
|
unlink( $tempName2 );
|
2006-02-17 04:49:13 +00:00
|
|
|
return $difftext;
|
2005-11-15 11:12:21 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-02-17 04:49:13 +00:00
|
|
|
# Native PHP diff
|
2006-02-20 06:12:12 +00:00
|
|
|
$ota = explode( "\n", $wgContLang->segmentForDiff( $otext ) );
|
|
|
|
|
$nta = explode( "\n", $wgContLang->segmentForDiff( $ntext ) );
|
2006-07-11 14:11:23 +00:00
|
|
|
$diffs = new Diff( $ota, $nta );
|
|
|
|
|
$formatter = new TableDiffFormatter();
|
2008-04-25 22:52:05 +00:00
|
|
|
return $wgContLang->unsegmentForDiff( $formatter->format( $diffs ) ) .
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->debug();
|
2008-04-25 22:52:05 +00:00
|
|
|
}
|
2008-08-05 19:40:29 +00:00
|
|
|
|
2008-04-25 22:52:05 +00:00
|
|
|
/**
|
|
|
|
|
* Generate a debug comment indicating diff generating time,
|
|
|
|
|
* server node, and generator backend.
|
|
|
|
|
*/
|
|
|
|
|
protected function debug( $generator="internal" ) {
|
|
|
|
|
global $wgShowHostnames, $wgNodeName;
|
|
|
|
|
$data = array( $generator );
|
|
|
|
|
if( $wgShowHostnames ) {
|
|
|
|
|
$data[] = $wgNodeName;
|
|
|
|
|
}
|
|
|
|
|
$data[] = wfTimestamp( TS_DB );
|
|
|
|
|
return "<!-- diff generator: " .
|
2008-08-05 19:40:29 +00:00
|
|
|
implode( " ",
|
|
|
|
|
array_map(
|
2008-04-25 22:52:05 +00:00
|
|
|
"htmlspecialchars",
|
2008-08-05 19:40:29 +00:00
|
|
|
$data ) ) .
|
2008-04-25 22:52:05 +00:00
|
|
|
" -->\n";
|
2005-11-15 11:12:21 +00:00
|
|
|
}
|
|
|
|
|
|
2006-02-08 22:56:55 +00:00
|
|
|
/**
|
|
|
|
|
* Replace line numbers with the text in the user's language
|
|
|
|
|
*/
|
|
|
|
|
function localiseLineNumbers( $text ) {
|
2006-03-11 17:13:49 +00:00
|
|
|
return preg_replace_callback( '/<!--LINE (\d+)-->/',
|
2008-08-05 19:40:29 +00:00
|
|
|
array( &$this, 'localiseLineNumbersCb' ), $text );
|
2006-02-08 22:56:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function localiseLineNumbersCb( $matches ) {
|
|
|
|
|
global $wgLang;
|
2006-05-17 13:26:42 +00:00
|
|
|
return wfMsgExt( 'lineno', array('parseinline'), $wgLang->formatNum( $matches[1] ) );
|
2006-02-08 22:56:55 +00:00
|
|
|
}
|
|
|
|
|
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-12-06 08:28:44 +00:00
|
|
|
/**
|
|
|
|
|
* If there are revisions between the ones being compared, return a note saying so.
|
|
|
|
|
*/
|
|
|
|
|
function getMultiNotice() {
|
2006-12-06 08:46:22 +00:00
|
|
|
if ( !is_object($this->mOldRev) || !is_object($this->mNewRev) )
|
2008-08-05 19:40:29 +00:00
|
|
|
return '';
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-12-06 21:27:04 +00:00
|
|
|
if( !$this->mOldPage->equals( $this->mNewPage ) ) {
|
|
|
|
|
// Comparing two different pages? Count would be meaningless.
|
|
|
|
|
return '';
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-12-06 08:28:44 +00:00
|
|
|
$oldid = $this->mOldRev->getId();
|
|
|
|
|
$newid = $this->mNewRev->getId();
|
|
|
|
|
if ( $oldid > $newid ) {
|
|
|
|
|
$tmp = $oldid; $oldid = $newid; $newid = $tmp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$n = $this->mTitle->countRevisionsBetween( $oldid, $newid );
|
|
|
|
|
if ( !$n )
|
2008-08-05 19:40:29 +00:00
|
|
|
return '';
|
2006-12-06 08:28:44 +00:00
|
|
|
|
2006-12-06 15:27:30 +00:00
|
|
|
return wfMsgExt( 'diff-multi', array( 'parseinline' ), $n );
|
2006-12-06 08:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
/**
|
|
|
|
|
* Add the header to a diff body
|
|
|
|
|
*/
|
2007-11-24 01:40:37 +00:00
|
|
|
static function addHeader( $diff, $otitle, $ntitle, $multi = '' ) {
|
2007-02-04 18:16:38 +00:00
|
|
|
global $wgOut;
|
2007-11-24 01:40:37 +00:00
|
|
|
|
2006-12-06 08:28:44 +00:00
|
|
|
$header = "
|
2008-08-05 19:40:29 +00:00
|
|
|
<table class='diff'>
|
|
|
|
|
<col class='diff-marker' />
|
|
|
|
|
<col class='diff-content' />
|
|
|
|
|
<col class='diff-marker' />
|
|
|
|
|
<col class='diff-content' />
|
|
|
|
|
<tr valign='top'>
|
|
|
|
|
<td colspan='2' class='diff-otitle'>{$otitle}</td>
|
|
|
|
|
<td colspan='2' class='diff-ntitle'>{$ntitle}</td>
|
|
|
|
|
</tr>
|
2005-11-15 11:12:21 +00:00
|
|
|
";
|
2006-12-06 08:28:44 +00:00
|
|
|
|
|
|
|
|
if ( $multi != '' )
|
2008-08-05 19:40:29 +00:00
|
|
|
$header .= "<tr><td colspan='4' align='center' class='diff-multi'>{$multi}</td></tr>";
|
2006-12-06 08:28:44 +00:00
|
|
|
|
|
|
|
|
return $header . $diff . "</table>";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-07 13:09:30 +00:00
|
|
|
/**
|
2005-11-15 11:12:21 +00:00
|
|
|
* Use specified text instead of loading from the database
|
|
|
|
|
*/
|
|
|
|
|
function setText( $oldText, $newText ) {
|
|
|
|
|
$this->mOldtext = $oldText;
|
|
|
|
|
$this->mNewtext = $newText;
|
|
|
|
|
$this->mTextLoaded = 2;
|
|
|
|
|
}
|
|
|
|
|
|
2005-03-29 15:49:06 +00:00
|
|
|
/**
|
2005-11-15 11:12:21 +00:00
|
|
|
* Load revision metadata for the specified articles. If newid is 0, then compare
|
2005-03-29 15:49:06 +00:00
|
|
|
* the old article in oldid to the current article; if oldid is 0, then
|
|
|
|
|
* compare the current article to the immediately previous one (ignoring the
|
2006-01-07 13:09:30 +00:00
|
|
|
* value of newid).
|
2005-11-15 11:12:21 +00:00
|
|
|
*
|
2006-01-07 13:09:30 +00:00
|
|
|
* If oldid is false, leave the corresponding revision object set
|
|
|
|
|
* to false. This is impossible via ordinary user input, and is provided for
|
|
|
|
|
* API convenience.
|
2005-11-15 11:12:21 +00:00
|
|
|
*/
|
|
|
|
|
function loadRevisionData() {
|
|
|
|
|
global $wgLang;
|
|
|
|
|
if ( $this->mRevisionsLoaded ) {
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
// Whether it succeeds or fails, we don't want to try again
|
|
|
|
|
$this->mRevisionsLoaded = true;
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
// Load the new revision object
|
2007-08-04 19:15:18 +00:00
|
|
|
$this->mNewRev = $this->mNewid
|
2008-08-05 19:40:29 +00:00
|
|
|
? Revision::newFromId( $this->mNewid )
|
|
|
|
|
: Revision::newFromTitle( $this->mTitle );
|
2007-08-04 19:15:18 +00:00
|
|
|
if( !$this->mNewRev instanceof Revision )
|
2008-08-05 19:40:29 +00:00
|
|
|
return false;
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-08-04 19:15:18 +00:00
|
|
|
// Update the new revision ID in case it was 0 (makes life easier doing UI stuff)
|
|
|
|
|
$this->mNewid = $this->mNewRev->getId();
|
2008-04-12 17:58:58 +00:00
|
|
|
|
|
|
|
|
// Check if page is editable
|
|
|
|
|
$editable = $this->mNewRev->getTitle()->userCan( 'edit' );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
// Set assorted variables
|
2006-06-18 22:53:35 +00:00
|
|
|
$timestamp = $wgLang->timeanddate( $this->mNewRev->getTimestamp(), true );
|
|
|
|
|
$this->mNewPage = $this->mNewRev->getTitle();
|
2005-11-15 11:12:21 +00:00
|
|
|
if( $this->mNewRev->isCurrent() ) {
|
2008-06-04 04:05:47 +00:00
|
|
|
$newLink = $this->mNewPage->escapeLocalUrl( 'oldid=' . $this->mNewid );
|
2006-05-30 22:06:04 +00:00
|
|
|
$this->mPagetitle = htmlspecialchars( wfMsg( 'currentrev' ) );
|
|
|
|
|
$newEdit = $this->mNewPage->escapeLocalUrl( 'action=edit' );
|
2006-12-10 01:11:27 +00:00
|
|
|
|
2008-04-12 17:58:58 +00:00
|
|
|
$this->mNewtitle = "<a href='$newLink'>{$this->mPagetitle}</a> ($timestamp)";
|
|
|
|
|
$this->mNewtitle .= " (<a href='$newEdit'>" . wfMsgHtml( $editable ? 'editold' : 'viewsourceold' ) . "</a>)";
|
2006-06-18 22:53:35 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
} else {
|
2006-05-30 22:06:04 +00:00
|
|
|
$newLink = $this->mNewPage->escapeLocalUrl( 'oldid=' . $this->mNewid );
|
|
|
|
|
$newEdit = $this->mNewPage->escapeLocalUrl( 'action=edit&oldid=' . $this->mNewid );
|
2007-11-24 01:40:37 +00:00
|
|
|
$this->mPagetitle = wfMsgHTML( 'revisionasof', $timestamp );
|
2006-12-10 01:11:27 +00:00
|
|
|
|
2008-04-12 17:58:58 +00:00
|
|
|
$this->mNewtitle = "<a href='$newLink'>{$this->mPagetitle}</a>";
|
|
|
|
|
$this->mNewtitle .= " (<a href='$newEdit'>" . wfMsgHtml( $editable ? 'editold' : 'viewsourceold' ) . "</a>)";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2007-11-24 01:40:37 +00:00
|
|
|
if ( !$this->mNewRev->userCan(Revision::DELETED_TEXT) ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->mNewtitle = "<span class='history-deleted'>{$this->mPagetitle}</span>";
|
2007-11-24 01:40:37 +00:00
|
|
|
} else if ( $this->mNewRev->isDeleted(Revision::DELETED_TEXT) ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->mNewtitle = '<span class="history-deleted">'.$this->mNewtitle.'</span>';
|
2007-11-24 01:40:37 +00:00
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
// Load the old revision object
|
|
|
|
|
$this->mOldRev = false;
|
2004-12-19 12:21:29 +00:00
|
|
|
if( $this->mOldid ) {
|
2005-11-15 11:12:21 +00:00
|
|
|
$this->mOldRev = Revision::newFromId( $this->mOldid );
|
|
|
|
|
} elseif ( $this->mOldid === 0 ) {
|
2006-01-23 19:41:03 +00:00
|
|
|
$rev = $this->mNewRev->getPrevious();
|
|
|
|
|
if( $rev ) {
|
|
|
|
|
$this->mOldid = $rev->getId();
|
|
|
|
|
$this->mOldRev = $rev;
|
|
|
|
|
} else {
|
|
|
|
|
// No previous revision; mark to show as first-version only.
|
|
|
|
|
$this->mOldid = false;
|
|
|
|
|
$this->mOldRev = false;
|
|
|
|
|
}
|
2005-11-15 11:12:21 +00:00
|
|
|
}/* elseif ( $this->mOldid === false ) leave mOldRev false; */
|
|
|
|
|
|
|
|
|
|
if( is_null( $this->mOldRev ) ) {
|
2005-03-20 10:31:55 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
if ( $this->mOldRev ) {
|
|
|
|
|
$this->mOldPage = $this->mOldRev->getTitle();
|
|
|
|
|
|
|
|
|
|
$t = $wgLang->timeanddate( $this->mOldRev->getTimestamp(), true );
|
|
|
|
|
$oldLink = $this->mOldPage->escapeLocalUrl( 'oldid=' . $this->mOldid );
|
2006-05-30 22:06:04 +00:00
|
|
|
$oldEdit = $this->mOldPage->escapeLocalUrl( 'action=edit&oldid=' . $this->mOldid );
|
2007-11-24 01:40:37 +00:00
|
|
|
$this->mOldPagetitle = htmlspecialchars( wfMsg( 'revisionasof', $t ) );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-11-24 01:40:37 +00:00
|
|
|
$this->mOldtitle = "<a href='$oldLink'>{$this->mOldPagetitle}</a>"
|
2008-08-05 19:40:29 +00:00
|
|
|
. " (<a href='$oldEdit'>" . wfMsgHtml( $editable ? 'editold' : 'viewsourceold' ) . "</a>)";
|
2007-08-04 19:15:18 +00:00
|
|
|
// Add an "undo" link
|
2007-03-28 19:41:53 +00:00
|
|
|
$newUndo = $this->mNewPage->escapeLocalUrl( 'action=edit&undoafter=' . $this->mOldid . '&undo=' . $this->mNewid);
|
2008-04-23 16:46:31 +00:00
|
|
|
if( $editable && !$this->mOldRev->isDeleted( Revision::DELETED_TEXT ) && !$this->mNewRev->isDeleted( Revision::DELETED_TEXT ) ) {
|
2007-11-24 01:40:37 +00:00
|
|
|
$this->mNewtitle .= " (<a href='$newUndo'>" . htmlspecialchars( wfMsg( 'editundo' ) ) . "</a>)";
|
2008-04-23 16:46:31 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-04-23 16:46:31 +00:00
|
|
|
if( !$this->mOldRev->userCan( Revision::DELETED_TEXT ) ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->mOldtitle = '<span class="history-deleted">' . $this->mOldPagetitle . '</span>';
|
2008-04-23 16:46:31 +00:00
|
|
|
} else if( $this->mOldRev->isDeleted( Revision::DELETED_TEXT ) ) {
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->mOldtitle = '<span class="history-deleted">' . $this->mOldtitle . '</span>';
|
2007-11-24 01:40:37 +00:00
|
|
|
}
|
2005-11-15 11:12:21 +00:00
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load the text of the revisions, as well as revision data.
|
|
|
|
|
*/
|
|
|
|
|
function loadText() {
|
|
|
|
|
if ( $this->mTextLoaded == 2 ) {
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
// Whether it succeeds or fails, we don't want to try again
|
|
|
|
|
$this->mTextLoaded = 2;
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
if ( !$this->loadRevisionData() ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if ( $this->mOldRev ) {
|
2007-02-05 23:28:17 +00:00
|
|
|
$this->mOldtext = $this->mOldRev->revText();
|
2006-01-19 04:52:18 +00:00
|
|
|
if ( $this->mOldtext === false ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2005-11-15 11:12:21 +00:00
|
|
|
}
|
|
|
|
|
if ( $this->mNewRev ) {
|
2007-02-05 23:28:17 +00:00
|
|
|
$this->mNewtext = $this->mNewRev->revText();
|
2006-01-19 04:52:18 +00:00
|
|
|
if ( $this->mNewtext === false ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2005-11-15 11:12:21 +00:00
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2005-11-15 11:12:21 +00:00
|
|
|
/**
|
|
|
|
|
* Load the text of the new revision, not the old one
|
|
|
|
|
*/
|
|
|
|
|
function loadNewText() {
|
|
|
|
|
if ( $this->mTextLoaded >= 1 ) {
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
$this->mTextLoaded = 1;
|
|
|
|
|
}
|
|
|
|
|
if ( !$this->loadRevisionData() ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
$this->mNewtext = $this->mNewRev->getText();
|
2003-04-14 23:10:40 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2000, 2001 Geoffrey T. Dairiki <dairiki@dairiki.org>
|
|
|
|
|
// You may copy this code freely under the conditions of the GPL.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
define('USE_ASSERTS', function_exists('assert'));
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @todo document
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
class _DiffOp {
|
2006-05-11 22:40:38 +00:00
|
|
|
var $type;
|
|
|
|
|
var $orig;
|
|
|
|
|
var $closing;
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function reverse() {
|
2004-08-22 17:24:50 +00:00
|
|
|
trigger_error('pure virtual', E_USER_ERROR);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function norig() {
|
|
|
|
|
return $this->orig ? sizeof($this->orig) : 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function nclosing() {
|
|
|
|
|
return $this->closing ? sizeof($this->closing) : 0;
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @todo document
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
class _DiffOp_Copy extends _DiffOp {
|
2006-05-11 22:40:38 +00:00
|
|
|
var $type = 'copy';
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function _DiffOp_Copy ($orig, $closing = false) {
|
|
|
|
|
if (!is_array($closing))
|
2008-08-05 19:40:29 +00:00
|
|
|
$closing = $orig;
|
2004-04-17 07:37:55 +00:00
|
|
|
$this->orig = $orig;
|
|
|
|
|
$this->closing = $closing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function reverse() {
|
|
|
|
|
return new _DiffOp_Copy($this->closing, $this->orig);
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @todo document
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
class _DiffOp_Delete extends _DiffOp {
|
2006-05-11 22:40:38 +00:00
|
|
|
var $type = 'delete';
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function _DiffOp_Delete ($lines) {
|
|
|
|
|
$this->orig = $lines;
|
|
|
|
|
$this->closing = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function reverse() {
|
|
|
|
|
return new _DiffOp_Add($this->orig);
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @todo document
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
class _DiffOp_Add extends _DiffOp {
|
2006-05-11 22:40:38 +00:00
|
|
|
var $type = 'add';
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function _DiffOp_Add ($lines) {
|
|
|
|
|
$this->closing = $lines;
|
|
|
|
|
$this->orig = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function reverse() {
|
|
|
|
|
return new _DiffOp_Delete($this->closing);
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @todo document
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
class _DiffOp_Change extends _DiffOp {
|
2006-05-11 22:40:38 +00:00
|
|
|
var $type = 'change';
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function _DiffOp_Change ($orig, $closing) {
|
|
|
|
|
$this->orig = $orig;
|
|
|
|
|
$this->closing = $closing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function reverse() {
|
|
|
|
|
return new _DiffOp_Change($this->closing, $this->orig);
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
/**
|
|
|
|
|
* Class used internally by Diff to actually compute the diffs.
|
|
|
|
|
*
|
|
|
|
|
* The algorithm used here is mostly lifted from the perl module
|
|
|
|
|
* Algorithm::Diff (version 1.06) by Ned Konz, which is available at:
|
2004-04-17 07:37:55 +00:00
|
|
|
* http://www.perl.com/CPAN/authors/id/N/NE/NEDKONZ/Algorithm-Diff-1.06.zip
|
2003-04-14 23:10:40 +00:00
|
|
|
*
|
|
|
|
|
* More ideas are taken from:
|
2004-04-17 07:37:55 +00:00
|
|
|
* http://www.ics.uci.edu/~eppstein/161/960229.html
|
2003-04-14 23:10:40 +00:00
|
|
|
*
|
|
|
|
|
* Some ideas are (and a bit of code) are from from analyze.c, from GNU
|
|
|
|
|
* diffutils-2.7, which can be found at:
|
2004-04-17 07:37:55 +00:00
|
|
|
* ftp://gnudist.gnu.org/pub/gnu/diffutils/diffutils-2.7.tar.gz
|
2003-04-14 23:10:40 +00:00
|
|
|
*
|
2004-01-15 09:27:12 +00:00
|
|
|
* closingly, some ideas (subdivision by NCHUNKS > 2, and some optimizations)
|
2003-04-14 23:10:40 +00:00
|
|
|
* are my own.
|
|
|
|
|
*
|
2005-08-31 02:22:05 +00:00
|
|
|
* Line length limits for robustness added by Tim Starling, 2005-08-31
|
2008-08-05 19:40:29 +00:00
|
|
|
* Alternative implementation added by Guy Van den Broeck, 2008-07-30
|
2005-08-31 02:22:05 +00:00
|
|
|
*
|
2008-08-05 19:40:29 +00:00
|
|
|
* @author Geoffrey T. Dairiki, Tim Starling, Guy Van den Broeck
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2003-04-14 23:10:40 +00:00
|
|
|
*/
|
2008-04-06 18:16:38 +00:00
|
|
|
class _DiffEngine {
|
2008-08-05 19:40:29 +00:00
|
|
|
|
2006-10-03 13:00:52 +00:00
|
|
|
const MAX_XREF_LENGTH = 10000;
|
|
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function diff ($from_lines, $to_lines) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2008-08-05 19:40:29 +00:00
|
|
|
global $wgExternalDiffEngine;
|
|
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
$n_from = sizeof($from_lines);
|
|
|
|
|
$n_to = sizeof($to_lines);
|
|
|
|
|
|
2008-08-05 19:40:29 +00:00
|
|
|
if($wgExternalDiffEngine == 'wikidiff3'){
|
|
|
|
|
// wikidiff3
|
2008-08-05 21:10:06 +00:00
|
|
|
global $IP;
|
|
|
|
|
require_once( "$IP/includes/Diff.php" );
|
2008-08-05 19:40:29 +00:00
|
|
|
list($this->xchanged, $this->ychanged) = wikidiff3_diff($from_lines, $to_lines, TRUE, 100000);
|
|
|
|
|
}else{
|
|
|
|
|
// old diff
|
|
|
|
|
wfProfileIn( __METHOD__ ." - basicdiff");
|
|
|
|
|
$this->xchanged = $this->ychanged = array();
|
|
|
|
|
$this->xv = $this->yv = array();
|
|
|
|
|
$this->xind = $this->yind = array();
|
|
|
|
|
unset($this->seq);
|
|
|
|
|
unset($this->in_seq);
|
|
|
|
|
unset($this->lcs);
|
|
|
|
|
|
|
|
|
|
// Skip leading common lines.
|
|
|
|
|
for ($skip = 0; $skip < $n_from && $skip < $n_to; $skip++) {
|
|
|
|
|
if ($from_lines[$skip] !== $to_lines[$skip])
|
2004-04-17 07:37:55 +00:00
|
|
|
break;
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->xchanged[$skip] = $this->ychanged[$skip] = false;
|
|
|
|
|
}
|
|
|
|
|
// Skip trailing common lines.
|
|
|
|
|
$xi = $n_from; $yi = $n_to;
|
|
|
|
|
for ($endskip = 0; --$xi > $skip && --$yi > $skip; $endskip++) {
|
|
|
|
|
if ($from_lines[$xi] !== $to_lines[$yi])
|
2004-04-17 07:37:55 +00:00
|
|
|
break;
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->xchanged[$xi] = $this->ychanged[$yi] = false;
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2008-08-05 19:40:29 +00:00
|
|
|
// Ignore lines which do not exist in both files.
|
|
|
|
|
for ($xi = $skip; $xi < $n_from - $endskip; $xi++) {
|
|
|
|
|
$xhash[$this->_line_hash($from_lines[$xi])] = 1;
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2008-08-05 19:40:29 +00:00
|
|
|
for ($yi = $skip; $yi < $n_to - $endskip; $yi++) {
|
|
|
|
|
$line = $to_lines[$yi];
|
|
|
|
|
if ( ($this->ychanged[$yi] = empty($xhash[$this->_line_hash($line)])) )
|
2004-04-17 07:37:55 +00:00
|
|
|
continue;
|
2008-08-05 19:40:29 +00:00
|
|
|
$yhash[$this->_line_hash($line)] = 1;
|
|
|
|
|
$this->yv[] = $line;
|
|
|
|
|
$this->yind[] = $yi;
|
|
|
|
|
}
|
|
|
|
|
for ($xi = $skip; $xi < $n_from - $endskip; $xi++) {
|
|
|
|
|
$line = $from_lines[$xi];
|
|
|
|
|
if ( ($this->xchanged[$xi] = empty($yhash[$this->_line_hash($line)])) )
|
2004-04-17 07:37:55 +00:00
|
|
|
continue;
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->xv[] = $line;
|
|
|
|
|
$this->xind[] = $xi;
|
|
|
|
|
}
|
2004-04-17 07:37:55 +00:00
|
|
|
|
2008-08-05 19:40:29 +00:00
|
|
|
// Find the LCS.
|
|
|
|
|
$this->_compareseq(0, sizeof($this->xv), 0, sizeof($this->yv));
|
|
|
|
|
wfProfileOut( __METHOD__ ." - basicdiff");
|
|
|
|
|
}
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
// Merge edits when possible
|
|
|
|
|
$this->_shift_boundaries($from_lines, $this->xchanged, $this->ychanged);
|
|
|
|
|
$this->_shift_boundaries($to_lines, $this->ychanged, $this->xchanged);
|
|
|
|
|
|
|
|
|
|
// Compute the edit operations.
|
|
|
|
|
$edits = array();
|
|
|
|
|
$xi = $yi = 0;
|
|
|
|
|
while ($xi < $n_from || $yi < $n_to) {
|
|
|
|
|
USE_ASSERTS && assert($yi < $n_to || $this->xchanged[$xi]);
|
|
|
|
|
USE_ASSERTS && assert($xi < $n_from || $this->ychanged[$yi]);
|
|
|
|
|
|
|
|
|
|
// Skip matching "snake".
|
|
|
|
|
$copy = array();
|
|
|
|
|
while ( $xi < $n_from && $yi < $n_to
|
2008-08-05 19:40:29 +00:00
|
|
|
&& !$this->xchanged[$xi] && !$this->ychanged[$yi]) {
|
2004-04-17 07:37:55 +00:00
|
|
|
$copy[] = $from_lines[$xi++];
|
|
|
|
|
++$yi;
|
|
|
|
|
}
|
|
|
|
|
if ($copy)
|
2008-08-05 19:40:29 +00:00
|
|
|
$edits[] = new _DiffOp_Copy($copy);
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
// Find deletes & adds.
|
|
|
|
|
$delete = array();
|
|
|
|
|
while ($xi < $n_from && $this->xchanged[$xi])
|
2008-08-05 19:40:29 +00:00
|
|
|
$delete[] = $from_lines[$xi++];
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
$add = array();
|
|
|
|
|
while ($yi < $n_to && $this->ychanged[$yi])
|
2008-08-05 19:40:29 +00:00
|
|
|
$add[] = $to_lines[$yi++];
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
if ($delete && $add)
|
2008-08-05 19:40:29 +00:00
|
|
|
$edits[] = new _DiffOp_Change($delete, $add);
|
2004-04-17 07:37:55 +00:00
|
|
|
elseif ($delete)
|
2008-08-05 19:40:29 +00:00
|
|
|
$edits[] = new _DiffOp_Delete($delete);
|
2004-04-17 07:37:55 +00:00
|
|
|
elseif ($add)
|
2008-08-05 19:40:29 +00:00
|
|
|
$edits[] = new _DiffOp_Add($add);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
return $edits;
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2005-08-31 02:22:05 +00:00
|
|
|
/**
|
|
|
|
|
* Returns the whole line if it's small enough, or the MD5 hash otherwise
|
|
|
|
|
*/
|
|
|
|
|
function _line_hash( $line ) {
|
2006-10-03 13:00:52 +00:00
|
|
|
if ( strlen( $line ) > self::MAX_XREF_LENGTH ) {
|
2005-08-31 02:22:05 +00:00
|
|
|
return md5( $line );
|
|
|
|
|
} else {
|
|
|
|
|
return $line;
|
|
|
|
|
}
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
/* Divide the Largest Common Subsequence (LCS) of the sequences
|
|
|
|
|
* [XOFF, XLIM) and [YOFF, YLIM) into NCHUNKS approximately equally
|
|
|
|
|
* sized segments.
|
|
|
|
|
*
|
|
|
|
|
* Returns (LCS, PTS). LCS is the length of the LCS. PTS is an
|
|
|
|
|
* array of NCHUNKS+1 (X, Y) indexes giving the diving points between
|
|
|
|
|
* sub sequences. The first sub-sequence is contained in [X0, X1),
|
|
|
|
|
* [Y0, Y1), the second in [X1, X2), [Y1, Y2) and so on. Note
|
|
|
|
|
* that (X0, Y0) == (XOFF, YOFF) and
|
|
|
|
|
* (X[NCHUNKS], Y[NCHUNKS]) == (XLIM, YLIM).
|
|
|
|
|
*
|
|
|
|
|
* This function assumes that the first lines of the specified portions
|
|
|
|
|
* of the two files do not match, and likewise that the last lines do not
|
|
|
|
|
* match. The caller must trim matching lines from the beginning and end
|
|
|
|
|
* of the portions it is going to specify.
|
|
|
|
|
*/
|
|
|
|
|
function _diag ($xoff, $xlim, $yoff, $ylim, $nchunks) {
|
2004-11-25 23:49:52 +00:00
|
|
|
$flip = false;
|
|
|
|
|
|
|
|
|
|
if ($xlim - $xoff > $ylim - $yoff) {
|
|
|
|
|
// Things seems faster (I'm not sure I understand why)
|
2008-08-05 19:40:29 +00:00
|
|
|
// when the shortest sequence in X.
|
|
|
|
|
$flip = true;
|
2004-11-25 23:49:52 +00:00
|
|
|
list ($xoff, $xlim, $yoff, $ylim)
|
|
|
|
|
= array( $yoff, $ylim, $xoff, $xlim);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
if ($flip)
|
2008-08-05 19:40:29 +00:00
|
|
|
for ($i = $ylim - 1; $i >= $yoff; $i--)
|
|
|
|
|
$ymatches[$this->xv[$i]][] = $i;
|
2004-11-25 23:49:52 +00:00
|
|
|
else
|
2008-08-05 19:40:29 +00:00
|
|
|
for ($i = $ylim - 1; $i >= $yoff; $i--)
|
|
|
|
|
$ymatches[$this->yv[$i]][] = $i;
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
$this->lcs = 0;
|
|
|
|
|
$this->seq[0]= $yoff - 1;
|
|
|
|
|
$this->in_seq = array();
|
|
|
|
|
$ymids[0] = array();
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
$numer = $xlim - $xoff + $nchunks - 1;
|
|
|
|
|
$x = $xoff;
|
|
|
|
|
for ($chunk = 0; $chunk < $nchunks; $chunk++) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ . "-chunk" );
|
2004-11-25 23:49:52 +00:00
|
|
|
if ($chunk > 0)
|
2008-08-05 19:40:29 +00:00
|
|
|
for ($i = 0; $i <= $this->lcs; $i++)
|
|
|
|
|
$ymids[$i][$chunk-1] = $this->seq[$i];
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
$x1 = $xoff + (int)(($numer + ($xlim-$xoff)*$chunk) / $nchunks);
|
|
|
|
|
for ( ; $x < $x1; $x++) {
|
2004-04-17 07:37:55 +00:00
|
|
|
$line = $flip ? $this->yv[$x] : $this->xv[$x];
|
2008-08-05 19:40:29 +00:00
|
|
|
if (empty($ymatches[$line]))
|
|
|
|
|
continue;
|
2004-11-25 23:49:52 +00:00
|
|
|
$matches = $ymatches[$line];
|
2004-04-17 07:37:55 +00:00
|
|
|
reset($matches);
|
2004-11-25 23:49:52 +00:00
|
|
|
while (list ($junk, $y) = each($matches))
|
2008-08-05 19:40:29 +00:00
|
|
|
if (empty($this->in_seq[$y])) {
|
|
|
|
|
$k = $this->_lcs_pos($y);
|
|
|
|
|
USE_ASSERTS && assert($k > 0);
|
|
|
|
|
$ymids[$k] = $ymids[$k-1];
|
|
|
|
|
break;
|
|
|
|
|
}
|
2006-11-29 11:43:58 +00:00
|
|
|
while (list ( /* $junk */, $y) = each($matches)) {
|
2004-11-25 23:49:52 +00:00
|
|
|
if ($y > $this->seq[$k-1]) {
|
|
|
|
|
USE_ASSERTS && assert($y < $this->seq[$k]);
|
|
|
|
|
// Optimization: this is a common case:
|
|
|
|
|
// next match is just replacing previous match.
|
|
|
|
|
$this->in_seq[$this->seq[$k]] = false;
|
|
|
|
|
$this->seq[$k] = $y;
|
|
|
|
|
$this->in_seq[$y] = 1;
|
|
|
|
|
} else if (empty($this->in_seq[$y])) {
|
|
|
|
|
$k = $this->_lcs_pos($y);
|
|
|
|
|
USE_ASSERTS && assert($k > 0);
|
|
|
|
|
$ymids[$k] = $ymids[$k-1];
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
$seps[] = $flip ? array($yoff, $xoff) : array($xoff, $yoff);
|
|
|
|
|
$ymid = $ymids[$this->lcs];
|
|
|
|
|
for ($n = 0; $n < $nchunks - 1; $n++) {
|
|
|
|
|
$x1 = $xoff + (int)(($numer + ($xlim - $xoff) * $n) / $nchunks);
|
|
|
|
|
$y1 = $ymid[$n] + 1;
|
|
|
|
|
$seps[] = $flip ? array($y1, $x1) : array($x1, $y1);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2004-11-25 23:49:52 +00:00
|
|
|
$seps[] = $flip ? array($ylim, $xlim) : array($xlim, $ylim);
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
return array($this->lcs, $seps);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function _lcs_pos ($ypos) {
|
2004-11-25 23:49:52 +00:00
|
|
|
$end = $this->lcs;
|
|
|
|
|
if ($end == 0 || $ypos > $this->seq[$end]) {
|
|
|
|
|
$this->seq[++$this->lcs] = $ypos;
|
|
|
|
|
$this->in_seq[$ypos] = 1;
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-11-25 23:49:52 +00:00
|
|
|
return $this->lcs;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
$beg = 1;
|
|
|
|
|
while ($beg < $end) {
|
|
|
|
|
$mid = (int)(($beg + $end) / 2);
|
|
|
|
|
if ( $ypos > $this->seq[$mid] )
|
2008-08-05 19:40:29 +00:00
|
|
|
$beg = $mid + 1;
|
2004-11-25 23:49:52 +00:00
|
|
|
else
|
2008-08-05 19:40:29 +00:00
|
|
|
$end = $mid;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
USE_ASSERTS && assert($ypos != $this->seq[$end]);
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
$this->in_seq[$this->seq[$end]] = false;
|
|
|
|
|
$this->seq[$end] = $ypos;
|
|
|
|
|
$this->in_seq[$ypos] = 1;
|
|
|
|
|
return $end;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Find LCS of two sequences.
|
|
|
|
|
*
|
|
|
|
|
* The results are recorded in the vectors $this->{x,y}changed[], by
|
|
|
|
|
* storing a 1 in the element for each line that is an insertion
|
|
|
|
|
* or deletion (ie. is not in the LCS).
|
|
|
|
|
*
|
|
|
|
|
* The subsequence of file 0 is [XOFF, XLIM) and likewise for file 1.
|
|
|
|
|
*
|
|
|
|
|
* Note that XLIM, YLIM are exclusive bounds.
|
|
|
|
|
* All line numbers are origin-0 and discarded lines are not counted.
|
|
|
|
|
*/
|
|
|
|
|
function _compareseq ($xoff, $xlim, $yoff, $ylim) {
|
2004-11-25 23:49:52 +00:00
|
|
|
// Slide down the bottom initial diagonal.
|
|
|
|
|
while ($xoff < $xlim && $yoff < $ylim
|
2008-08-05 19:40:29 +00:00
|
|
|
&& $this->xv[$xoff] == $this->yv[$yoff]) {
|
2004-11-25 23:49:52 +00:00
|
|
|
++$xoff;
|
|
|
|
|
++$yoff;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
// Slide up the top initial diagonal.
|
|
|
|
|
while ($xlim > $xoff && $ylim > $yoff
|
2008-08-05 19:40:29 +00:00
|
|
|
&& $this->xv[$xlim - 1] == $this->yv[$ylim - 1]) {
|
2004-11-25 23:49:52 +00:00
|
|
|
--$xlim;
|
|
|
|
|
--$ylim;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
if ($xoff == $xlim || $yoff == $ylim)
|
2008-08-05 19:40:29 +00:00
|
|
|
$lcs = 0;
|
2004-11-25 23:49:52 +00:00
|
|
|
else {
|
|
|
|
|
// This is ad hoc but seems to work well.
|
|
|
|
|
//$nchunks = sqrt(min($xlim - $xoff, $ylim - $yoff) / 2.5);
|
|
|
|
|
//$nchunks = max(2,min(8,(int)$nchunks));
|
|
|
|
|
$nchunks = min(7, $xlim - $xoff, $ylim - $yoff) + 1;
|
|
|
|
|
list ($lcs, $seps)
|
|
|
|
|
= $this->_diag($xoff,$xlim,$yoff, $ylim,$nchunks);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
if ($lcs == 0) {
|
|
|
|
|
// X and Y sequences have no common subsequence:
|
|
|
|
|
// mark all changed.
|
|
|
|
|
while ($yoff < $ylim)
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->ychanged[$this->yind[$yoff++]] = 1;
|
2004-11-25 23:49:52 +00:00
|
|
|
while ($xoff < $xlim)
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->xchanged[$this->xind[$xoff++]] = 1;
|
2004-11-25 23:49:52 +00:00
|
|
|
} else {
|
|
|
|
|
// Use the partitions to split this problem into subproblems.
|
|
|
|
|
reset($seps);
|
|
|
|
|
$pt1 = $seps[0];
|
|
|
|
|
while ($pt2 = next($seps)) {
|
|
|
|
|
$this->_compareseq ($pt1[0], $pt2[0], $pt1[1], $pt2[1]);
|
|
|
|
|
$pt1 = $pt2;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Adjust inserts/deletes of identical lines to join changes
|
|
|
|
|
* as much as possible.
|
|
|
|
|
*
|
|
|
|
|
* We do something when a run of changed lines include a
|
|
|
|
|
* line at one end and has an excluded, identical line at the other.
|
|
|
|
|
* We are free to choose which identical line is included.
|
|
|
|
|
* `compareseq' usually chooses the one at the beginning,
|
|
|
|
|
* but usually it is cleaner to consider the following identical line
|
|
|
|
|
* to be the "change".
|
|
|
|
|
*
|
|
|
|
|
* This is extracted verbatim from analyze.c (GNU diffutils-2.7).
|
|
|
|
|
*/
|
|
|
|
|
function _shift_boundaries ($lines, &$changed, $other_changed) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2004-11-25 23:49:52 +00:00
|
|
|
$i = 0;
|
|
|
|
|
$j = 0;
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
USE_ASSERTS && assert('sizeof($lines) == sizeof($changed)');
|
|
|
|
|
$len = sizeof($lines);
|
|
|
|
|
$other_len = sizeof($other_changed);
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
while (1) {
|
|
|
|
|
/*
|
|
|
|
|
* Scan forwards to find beginning of another run of changes.
|
|
|
|
|
* Also keep track of the corresponding point in the other file.
|
|
|
|
|
*
|
|
|
|
|
* Throughout this code, $i and $j are adjusted together so that
|
|
|
|
|
* the first $i elements of $changed and the first $j elements
|
|
|
|
|
* of $other_changed both contain the same number of zeros
|
|
|
|
|
* (unchanged lines).
|
|
|
|
|
* Furthermore, $j is always kept so that $j == $other_len or
|
|
|
|
|
* $other_changed[$j] == false.
|
|
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
while ($j < $other_len && $other_changed[$j])
|
2008-08-05 19:40:29 +00:00
|
|
|
$j++;
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
while ($i < $len && ! $changed[$i]) {
|
|
|
|
|
USE_ASSERTS && assert('$j < $other_len && ! $other_changed[$j]');
|
|
|
|
|
$i++; $j++;
|
|
|
|
|
while ($j < $other_len && $other_changed[$j])
|
2008-08-05 19:40:29 +00:00
|
|
|
$j++;
|
2004-11-25 23:49:52 +00:00
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
if ($i == $len)
|
2008-08-05 19:40:29 +00:00
|
|
|
break;
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
$start = $i;
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
// Find the end of this run of changes.
|
|
|
|
|
while (++$i < $len && $changed[$i])
|
2008-08-05 19:40:29 +00:00
|
|
|
continue;
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
do {
|
|
|
|
|
/*
|
|
|
|
|
* Record the length of this run of changes, so that
|
|
|
|
|
* we can later determine whether the run has grown.
|
|
|
|
|
*/
|
|
|
|
|
$runlength = $i - $start;
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
/*
|
|
|
|
|
* Move the changed region back, so long as the
|
|
|
|
|
* previous unchanged line matches the last changed one.
|
|
|
|
|
* This merges with previous changed regions.
|
|
|
|
|
*/
|
|
|
|
|
while ($start > 0 && $lines[$start - 1] == $lines[$i - 1]) {
|
|
|
|
|
$changed[--$start] = 1;
|
|
|
|
|
$changed[--$i] = false;
|
|
|
|
|
while ($start > 0 && $changed[$start - 1])
|
2008-08-05 19:40:29 +00:00
|
|
|
$start--;
|
2004-11-25 23:49:52 +00:00
|
|
|
USE_ASSERTS && assert('$j > 0');
|
|
|
|
|
while ($other_changed[--$j])
|
2008-08-05 19:40:29 +00:00
|
|
|
continue;
|
2004-11-25 23:49:52 +00:00
|
|
|
USE_ASSERTS && assert('$j >= 0 && !$other_changed[$j]');
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
/*
|
|
|
|
|
* Set CORRESPONDING to the end of the changed run, at the last
|
|
|
|
|
* point where it corresponds to a changed run in the other file.
|
|
|
|
|
* CORRESPONDING == LEN means no such point has been found.
|
|
|
|
|
*/
|
|
|
|
|
$corresponding = $j < $other_len ? $i : $len;
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
/*
|
|
|
|
|
* Move the changed region forward, so long as the
|
|
|
|
|
* first changed line matches the following unchanged one.
|
|
|
|
|
* This merges with following changed regions.
|
|
|
|
|
* Do this second, so that if there are no merges,
|
|
|
|
|
* the changed region is moved forward as far as possible.
|
|
|
|
|
*/
|
|
|
|
|
while ($i < $len && $lines[$start] == $lines[$i]) {
|
|
|
|
|
$changed[$start++] = false;
|
|
|
|
|
$changed[$i++] = 1;
|
|
|
|
|
while ($i < $len && $changed[$i])
|
2008-08-05 19:40:29 +00:00
|
|
|
$i++;
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
USE_ASSERTS && assert('$j < $other_len && ! $other_changed[$j]');
|
|
|
|
|
$j++;
|
|
|
|
|
if ($j < $other_len && $other_changed[$j]) {
|
|
|
|
|
$corresponding = $i;
|
|
|
|
|
while ($j < $other_len && $other_changed[$j])
|
2008-08-05 19:40:29 +00:00
|
|
|
$j++;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} while ($runlength != $i - $start);
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
/*
|
|
|
|
|
* If possible, move the fully-merged run of changes
|
|
|
|
|
* back to a corresponding run in the other file.
|
|
|
|
|
*/
|
|
|
|
|
while ($corresponding < $i) {
|
|
|
|
|
$changed[--$start] = 1;
|
|
|
|
|
$changed[--$i] = 0;
|
|
|
|
|
USE_ASSERTS && assert('$j > 0');
|
|
|
|
|
while ($other_changed[--$j])
|
2008-08-05 19:40:29 +00:00
|
|
|
continue;
|
2004-11-25 23:49:52 +00:00
|
|
|
USE_ASSERTS && assert('$j >= 0 && !$other_changed[$j]');
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
}
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class representing a 'diff' between two sequences of strings.
|
2004-09-02 23:28:24 +00:00
|
|
|
* @todo document
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2003-04-14 23:10:40 +00:00
|
|
|
*/
|
2004-08-09 05:38:11 +00:00
|
|
|
class Diff
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2006-05-11 22:40:38 +00:00
|
|
|
var $edits;
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constructor.
|
|
|
|
|
* Computes diff between sequences of strings.
|
|
|
|
|
*
|
|
|
|
|
* @param $from_lines array An array of strings.
|
|
|
|
|
* (Typically these are lines from a file.)
|
|
|
|
|
* @param $to_lines array An array of strings.
|
|
|
|
|
*/
|
|
|
|
|
function Diff($from_lines, $to_lines) {
|
|
|
|
|
$eng = new _DiffEngine;
|
|
|
|
|
$this->edits = $eng->diff($from_lines, $to_lines);
|
|
|
|
|
//$this->_check($from_lines, $to_lines);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Compute reversed Diff.
|
|
|
|
|
*
|
|
|
|
|
* SYNOPSIS:
|
|
|
|
|
*
|
|
|
|
|
* $diff = new Diff($lines1, $lines2);
|
|
|
|
|
* $rev = $diff->reverse();
|
|
|
|
|
* @return object A Diff object representing the inverse of the
|
|
|
|
|
* original diff.
|
|
|
|
|
*/
|
|
|
|
|
function reverse () {
|
2004-11-25 23:49:52 +00:00
|
|
|
$rev = $this;
|
2004-04-17 07:37:55 +00:00
|
|
|
$rev->edits = array();
|
|
|
|
|
foreach ($this->edits as $edit) {
|
|
|
|
|
$rev->edits[] = $edit->reverse();
|
|
|
|
|
}
|
2004-11-25 23:49:52 +00:00
|
|
|
return $rev;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check for empty diff.
|
|
|
|
|
*
|
|
|
|
|
* @return bool True iff two sequences were identical.
|
|
|
|
|
*/
|
|
|
|
|
function isEmpty () {
|
|
|
|
|
foreach ($this->edits as $edit) {
|
|
|
|
|
if ($edit->type != 'copy')
|
2008-08-05 19:40:29 +00:00
|
|
|
return false;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
/**
|
|
|
|
|
* Compute the length of the Longest Common Subsequence (LCS).
|
|
|
|
|
*
|
|
|
|
|
* This is mostly for diagnostic purposed.
|
|
|
|
|
*
|
|
|
|
|
* @return int The length of the LCS.
|
|
|
|
|
*/
|
|
|
|
|
function lcs () {
|
2004-11-25 23:49:52 +00:00
|
|
|
$lcs = 0;
|
2004-04-17 07:37:55 +00:00
|
|
|
foreach ($this->edits as $edit) {
|
|
|
|
|
if ($edit->type == 'copy')
|
2008-08-05 19:40:29 +00:00
|
|
|
$lcs += sizeof($edit->orig);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2004-11-25 23:49:52 +00:00
|
|
|
return $lcs;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the original set of lines.
|
|
|
|
|
*
|
|
|
|
|
* This reconstructs the $from_lines parameter passed to the
|
|
|
|
|
* constructor.
|
|
|
|
|
*
|
|
|
|
|
* @return array The original sequence of strings.
|
|
|
|
|
*/
|
|
|
|
|
function orig() {
|
|
|
|
|
$lines = array();
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
foreach ($this->edits as $edit) {
|
|
|
|
|
if ($edit->orig)
|
2008-08-05 19:40:29 +00:00
|
|
|
array_splice($lines, sizeof($lines), 0, $edit->orig);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
return $lines;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the closing set of lines.
|
|
|
|
|
*
|
|
|
|
|
* This reconstructs the $to_lines parameter passed to the
|
|
|
|
|
* constructor.
|
|
|
|
|
*
|
|
|
|
|
* @return array The sequence of strings.
|
|
|
|
|
*/
|
|
|
|
|
function closing() {
|
|
|
|
|
$lines = array();
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
foreach ($this->edits as $edit) {
|
|
|
|
|
if ($edit->closing)
|
2008-08-05 19:40:29 +00:00
|
|
|
array_splice($lines, sizeof($lines), 0, $edit->closing);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
return $lines;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2004-08-09 05:38:11 +00:00
|
|
|
* Check a Diff for validity.
|
2004-04-17 07:37:55 +00:00
|
|
|
*
|
|
|
|
|
* This is here only for debugging purposes.
|
|
|
|
|
*/
|
|
|
|
|
function _check ($from_lines, $to_lines) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
if (serialize($from_lines) != serialize($this->orig()))
|
2008-08-05 19:40:29 +00:00
|
|
|
trigger_error("Reconstructed original doesn't match", E_USER_ERROR);
|
2004-04-17 07:37:55 +00:00
|
|
|
if (serialize($to_lines) != serialize($this->closing()))
|
2008-08-05 19:40:29 +00:00
|
|
|
trigger_error("Reconstructed closing doesn't match", E_USER_ERROR);
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
$rev = $this->reverse();
|
|
|
|
|
if (serialize($to_lines) != serialize($rev->orig()))
|
2008-08-05 19:40:29 +00:00
|
|
|
trigger_error("Reversed original doesn't match", E_USER_ERROR);
|
2004-04-17 07:37:55 +00:00
|
|
|
if (serialize($from_lines) != serialize($rev->closing()))
|
2008-08-05 19:40:29 +00:00
|
|
|
trigger_error("Reversed closing doesn't match", E_USER_ERROR);
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
$prevtype = 'none';
|
|
|
|
|
foreach ($this->edits as $edit) {
|
|
|
|
|
if ( $prevtype == $edit->type )
|
2008-08-05 19:40:29 +00:00
|
|
|
trigger_error("Edit sequence is non-optimal", E_USER_ERROR);
|
2004-04-17 07:37:55 +00:00
|
|
|
$prevtype = $edit->type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$lcs = $this->lcs();
|
2004-08-22 17:24:50 +00:00
|
|
|
trigger_error('Diff okay: LCS = '.$lcs, E_USER_NOTICE);
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
/**
|
2007-04-04 05:22:37 +00:00
|
|
|
* @todo document, bad name.
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2003-04-14 23:10:40 +00:00
|
|
|
*/
|
2004-09-02 23:28:24 +00:00
|
|
|
class MappedDiff extends Diff
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2004-04-17 07:37:55 +00:00
|
|
|
/**
|
|
|
|
|
* Constructor.
|
|
|
|
|
*
|
|
|
|
|
* Computes diff between sequences of strings.
|
|
|
|
|
*
|
|
|
|
|
* This can be used to compute things like
|
|
|
|
|
* case-insensitve diffs, or diffs which ignore
|
|
|
|
|
* changes in white-space.
|
|
|
|
|
*
|
|
|
|
|
* @param $from_lines array An array of strings.
|
|
|
|
|
* (Typically these are lines from a file.)
|
|
|
|
|
*
|
|
|
|
|
* @param $to_lines array An array of strings.
|
|
|
|
|
*
|
|
|
|
|
* @param $mapped_from_lines array This array should
|
|
|
|
|
* have the same size number of elements as $from_lines.
|
|
|
|
|
* The elements in $mapped_from_lines and
|
|
|
|
|
* $mapped_to_lines are what is actually compared
|
|
|
|
|
* when computing the diff.
|
|
|
|
|
*
|
|
|
|
|
* @param $mapped_to_lines array This array should
|
|
|
|
|
* have the same number of elements as $to_lines.
|
|
|
|
|
*/
|
|
|
|
|
function MappedDiff($from_lines, $to_lines,
|
2008-08-05 19:40:29 +00:00
|
|
|
$mapped_from_lines, $mapped_to_lines) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
assert(sizeof($from_lines) == sizeof($mapped_from_lines));
|
|
|
|
|
assert(sizeof($to_lines) == sizeof($mapped_to_lines));
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
$this->Diff($mapped_from_lines, $mapped_to_lines);
|
|
|
|
|
|
|
|
|
|
$xi = $yi = 0;
|
|
|
|
|
for ($i = 0; $i < sizeof($this->edits); $i++) {
|
|
|
|
|
$orig = &$this->edits[$i]->orig;
|
|
|
|
|
if (is_array($orig)) {
|
|
|
|
|
$orig = array_slice($from_lines, $xi, sizeof($orig));
|
|
|
|
|
$xi += sizeof($orig);
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
$closing = &$this->edits[$i]->closing;
|
|
|
|
|
if (is_array($closing)) {
|
|
|
|
|
$closing = array_slice($to_lines, $yi, sizeof($closing));
|
|
|
|
|
$yi += sizeof($closing);
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A class to format Diffs
|
|
|
|
|
*
|
|
|
|
|
* This class formats the diff in classic diff format.
|
|
|
|
|
* It is intended that this class be customized via inheritance,
|
|
|
|
|
* to obtain fancier outputs.
|
2004-09-02 23:28:24 +00:00
|
|
|
* @todo document
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2003-04-14 23:10:40 +00:00
|
|
|
*/
|
2008-04-06 18:16:38 +00:00
|
|
|
class DiffFormatter {
|
2004-04-17 07:37:55 +00:00
|
|
|
/**
|
|
|
|
|
* Number of leading context "lines" to preserve.
|
|
|
|
|
*
|
|
|
|
|
* This should be left at zero for this class, but subclasses
|
|
|
|
|
* may want to set this to other values.
|
|
|
|
|
*/
|
2006-05-11 22:40:38 +00:00
|
|
|
var $leading_context_lines = 0;
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Number of trailing context "lines" to preserve.
|
|
|
|
|
*
|
|
|
|
|
* This should be left at zero for this class, but subclasses
|
|
|
|
|
* may want to set this to other values.
|
|
|
|
|
*/
|
2006-05-11 22:40:38 +00:00
|
|
|
var $trailing_context_lines = 0;
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Format a diff.
|
|
|
|
|
*
|
|
|
|
|
* @param $diff object A Diff object.
|
|
|
|
|
* @return string The formatted output.
|
|
|
|
|
*/
|
|
|
|
|
function format($diff) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
$xi = $yi = 1;
|
|
|
|
|
$block = false;
|
|
|
|
|
$context = array();
|
|
|
|
|
|
|
|
|
|
$nlead = $this->leading_context_lines;
|
|
|
|
|
$ntrail = $this->trailing_context_lines;
|
|
|
|
|
|
|
|
|
|
$this->_start_diff();
|
|
|
|
|
|
|
|
|
|
foreach ($diff->edits as $edit) {
|
|
|
|
|
if ($edit->type == 'copy') {
|
|
|
|
|
if (is_array($block)) {
|
|
|
|
|
if (sizeof($edit->orig) <= $nlead + $ntrail) {
|
|
|
|
|
$block[] = $edit;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if ($ntrail) {
|
|
|
|
|
$context = array_slice($edit->orig, 0, $ntrail);
|
|
|
|
|
$block[] = new _DiffOp_Copy($context);
|
|
|
|
|
}
|
|
|
|
|
$this->_block($x0, $ntrail + $xi - $x0,
|
2008-08-05 19:40:29 +00:00
|
|
|
$y0, $ntrail + $yi - $y0,
|
|
|
|
|
$block);
|
2004-04-17 07:37:55 +00:00
|
|
|
$block = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$context = $edit->orig;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if (! is_array($block)) {
|
|
|
|
|
$context = array_slice($context, sizeof($context) - $nlead);
|
|
|
|
|
$x0 = $xi - sizeof($context);
|
|
|
|
|
$y0 = $yi - sizeof($context);
|
|
|
|
|
$block = array();
|
|
|
|
|
if ($context)
|
2008-08-05 19:40:29 +00:00
|
|
|
$block[] = new _DiffOp_Copy($context);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
$block[] = $edit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($edit->orig)
|
2008-08-05 19:40:29 +00:00
|
|
|
$xi += sizeof($edit->orig);
|
2004-04-17 07:37:55 +00:00
|
|
|
if ($edit->closing)
|
2008-08-05 19:40:29 +00:00
|
|
|
$yi += sizeof($edit->closing);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_array($block))
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->_block($x0, $xi - $x0,
|
|
|
|
|
$y0, $yi - $y0,
|
|
|
|
|
$block);
|
2004-04-17 07:37:55 +00:00
|
|
|
|
2004-11-25 23:49:52 +00:00
|
|
|
$end = $this->_end_diff();
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-11-25 23:49:52 +00:00
|
|
|
return $end;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _block($xbeg, $xlen, $ybeg, $ylen, &$edits) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
$this->_start_block($this->_block_header($xbeg, $xlen, $ybeg, $ylen));
|
|
|
|
|
foreach ($edits as $edit) {
|
|
|
|
|
if ($edit->type == 'copy')
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->_context($edit->orig);
|
2004-04-17 07:37:55 +00:00
|
|
|
elseif ($edit->type == 'add')
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->_added($edit->closing);
|
2004-04-17 07:37:55 +00:00
|
|
|
elseif ($edit->type == 'delete')
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->_deleted($edit->orig);
|
2004-04-17 07:37:55 +00:00
|
|
|
elseif ($edit->type == 'change')
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->_changed($edit->orig, $edit->closing);
|
2004-04-17 07:37:55 +00:00
|
|
|
else
|
2008-08-05 19:40:29 +00:00
|
|
|
trigger_error('Unknown edit type', E_USER_ERROR);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
$this->_end_block();
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _start_diff() {
|
|
|
|
|
ob_start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _end_diff() {
|
|
|
|
|
$val = ob_get_contents();
|
|
|
|
|
ob_end_clean();
|
|
|
|
|
return $val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _block_header($xbeg, $xlen, $ybeg, $ylen) {
|
|
|
|
|
if ($xlen > 1)
|
2008-08-05 19:40:29 +00:00
|
|
|
$xbeg .= "," . ($xbeg + $xlen - 1);
|
2004-04-17 07:37:55 +00:00
|
|
|
if ($ylen > 1)
|
2008-08-05 19:40:29 +00:00
|
|
|
$ybeg .= "," . ($ybeg + $ylen - 1);
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
return $xbeg . ($xlen ? ($ylen ? 'c' : 'd') : 'a') . $ybeg;
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function _start_block($header) {
|
2007-11-26 18:39:40 +00:00
|
|
|
echo $header . "\n";
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function _end_block() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _lines($lines, $prefix = ' ') {
|
|
|
|
|
foreach ($lines as $line)
|
2008-08-05 19:40:29 +00:00
|
|
|
echo "$prefix $line\n";
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function _context($lines) {
|
|
|
|
|
$this->_lines($lines);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _added($lines) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->_lines($lines, '>');
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
function _deleted($lines) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->_lines($lines, '<');
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _changed($orig, $closing) {
|
|
|
|
|
$this->_deleted($orig);
|
|
|
|
|
echo "---\n";
|
|
|
|
|
$this->_added($closing);
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2007-11-27 21:36:43 +00:00
|
|
|
/**
|
|
|
|
|
* A formatter that outputs unified diffs
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2007-11-27 21:36:43 +00:00
|
|
|
*/
|
|
|
|
|
|
2008-04-06 18:16:38 +00:00
|
|
|
class UnifiedDiffFormatter extends DiffFormatter {
|
2007-11-27 21:36:43 +00:00
|
|
|
var $leading_context_lines = 2;
|
|
|
|
|
var $trailing_context_lines = 2;
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-11-27 21:36:43 +00:00
|
|
|
function _added($lines) {
|
|
|
|
|
$this->_lines($lines, '+');
|
|
|
|
|
}
|
|
|
|
|
function _deleted($lines) {
|
|
|
|
|
$this->_lines($lines, '-');
|
|
|
|
|
}
|
|
|
|
|
function _changed($orig, $closing) {
|
|
|
|
|
$this->_deleted($orig);
|
|
|
|
|
$this->_added($closing);
|
|
|
|
|
}
|
|
|
|
|
function _block_header($xbeg, $xlen, $ybeg, $ylen) {
|
|
|
|
|
return "@@ -$xbeg,$xlen +$ybeg,$ylen @@";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A pseudo-formatter that just passes along the Diff::$edits array
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2007-11-27 21:36:43 +00:00
|
|
|
*/
|
2008-04-06 18:16:38 +00:00
|
|
|
class ArrayDiffFormatter extends DiffFormatter {
|
|
|
|
|
function format($diff) {
|
2007-11-27 21:36:43 +00:00
|
|
|
$oldline = 1;
|
|
|
|
|
$newline = 1;
|
|
|
|
|
$retval = array();
|
|
|
|
|
foreach($diff->edits as $edit)
|
2008-08-05 19:40:29 +00:00
|
|
|
switch($edit->type) {
|
|
|
|
|
case 'add':
|
|
|
|
|
foreach($edit->closing as $l) {
|
|
|
|
|
$retval[] = array(
|
2007-11-27 21:36:43 +00:00
|
|
|
'action' => 'add',
|
|
|
|
|
'new'=> $l,
|
|
|
|
|
'newline' => $newline++
|
2008-08-05 19:40:29 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'delete':
|
|
|
|
|
foreach($edit->orig as $l) {
|
|
|
|
|
$retval[] = array(
|
2007-11-27 21:36:43 +00:00
|
|
|
'action' => 'delete',
|
|
|
|
|
'old' => $l,
|
|
|
|
|
'oldline' => $oldline++,
|
2008-08-05 19:40:29 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'change':
|
|
|
|
|
foreach($edit->orig as $i => $l) {
|
|
|
|
|
$retval[] = array(
|
2007-11-27 21:36:43 +00:00
|
|
|
'action' => 'change',
|
|
|
|
|
'old' => $l,
|
2007-12-01 09:08:02 +00:00
|
|
|
'new' => @$edit->closing[$i],
|
2007-11-27 21:36:43 +00:00
|
|
|
'oldline' => $oldline++,
|
|
|
|
|
'newline' => $newline++,
|
2008-08-05 19:40:29 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'copy':
|
|
|
|
|
$oldline += count($edit->orig);
|
|
|
|
|
$newline += count($edit->orig);
|
|
|
|
|
}
|
2007-11-27 21:36:43 +00:00
|
|
|
return $retval;
|
2008-04-06 18:16:38 +00:00
|
|
|
}
|
2007-11-27 21:36:43 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
/**
|
2004-04-17 07:37:55 +00:00
|
|
|
* Additions by Axel Boldt follow, partly taken from diff.php, phpwiki-1.3.3
|
2004-08-09 05:38:11 +00:00
|
|
|
*
|
2003-04-14 23:10:40 +00:00
|
|
|
*/
|
|
|
|
|
|
2008-04-06 18:16:38 +00:00
|
|
|
define('NBSP', ' '); // iso-8859-x non-breaking space.
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @todo document
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2003-04-14 23:10:40 +00:00
|
|
|
class _HWLDF_WordAccumulator {
|
2004-04-17 07:37:55 +00:00
|
|
|
function _HWLDF_WordAccumulator () {
|
|
|
|
|
$this->_lines = array();
|
|
|
|
|
$this->_line = '';
|
|
|
|
|
$this->_group = '';
|
|
|
|
|
$this->_tag = '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _flushGroup ($new_tag) {
|
|
|
|
|
if ($this->_group !== '') {
|
2007-02-03 21:47:53 +00:00
|
|
|
if ($this->_tag == 'ins')
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->_line .= '<ins class="diffchange diffchange-inline">' .
|
|
|
|
|
htmlspecialchars ( $this->_group ) . '</ins>';
|
2007-02-03 21:47:53 +00:00
|
|
|
elseif ($this->_tag == 'del')
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->_line .= '<del class="diffchange diffchange-inline">' .
|
|
|
|
|
htmlspecialchars ( $this->_group ) . '</del>';
|
2004-08-30 23:17:04 +00:00
|
|
|
else
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->_line .= htmlspecialchars ( $this->_group );
|
2004-08-30 23:17:04 +00:00
|
|
|
}
|
2004-04-17 07:37:55 +00:00
|
|
|
$this->_group = '';
|
|
|
|
|
$this->_tag = $new_tag;
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function _flushLine ($new_tag) {
|
|
|
|
|
$this->_flushGroup($new_tag);
|
|
|
|
|
if ($this->_line != '')
|
2008-08-05 19:40:29 +00:00
|
|
|
array_push ( $this->_lines, $this->_line );
|
2004-08-30 23:17:04 +00:00
|
|
|
else
|
2008-08-05 19:40:29 +00:00
|
|
|
# make empty lines visible by inserting an NBSP
|
|
|
|
|
array_push ( $this->_lines, NBSP );
|
2004-04-17 07:37:55 +00:00
|
|
|
$this->_line = '';
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function addWords ($words, $tag = '') {
|
|
|
|
|
if ($tag != $this->_tag)
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->_flushGroup($tag);
|
2004-04-17 07:37:55 +00:00
|
|
|
|
|
|
|
|
foreach ($words as $word) {
|
|
|
|
|
// new-line should only come as first char of word.
|
|
|
|
|
if ($word == '')
|
2008-08-05 19:40:29 +00:00
|
|
|
continue;
|
2004-04-17 07:37:55 +00:00
|
|
|
if ($word[0] == "\n") {
|
|
|
|
|
$this->_flushLine($tag);
|
|
|
|
|
$word = substr($word, 1);
|
|
|
|
|
}
|
|
|
|
|
assert(!strstr($word, "\n"));
|
|
|
|
|
$this->_group .= $word;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getLines() {
|
|
|
|
|
$this->_flushLine('~done');
|
|
|
|
|
return $this->_lines;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @todo document
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2008-04-06 18:16:38 +00:00
|
|
|
class WordLevelDiff extends MappedDiff {
|
2006-10-03 13:00:52 +00:00
|
|
|
const MAX_LINE_LENGTH = 10000;
|
|
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
function WordLevelDiff ($orig_lines, $closing_lines) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
list ($orig_words, $orig_stripped) = $this->_split($orig_lines);
|
|
|
|
|
list ($closing_words, $closing_stripped) = $this->_split($closing_lines);
|
|
|
|
|
|
|
|
|
|
$this->MappedDiff($orig_words, $closing_words,
|
2008-08-05 19:40:29 +00:00
|
|
|
$orig_stripped, $closing_stripped);
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _split($lines) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2005-08-31 02:22:05 +00:00
|
|
|
|
|
|
|
|
$words = array();
|
|
|
|
|
$stripped = array();
|
|
|
|
|
$first = true;
|
|
|
|
|
foreach ( $lines as $line ) {
|
|
|
|
|
# If the line is too long, just pretend the entire line is one big word
|
|
|
|
|
# This prevents resource exhaustion problems
|
|
|
|
|
if ( $first ) {
|
|
|
|
|
$first = false;
|
|
|
|
|
} else {
|
|
|
|
|
$words[] = "\n";
|
|
|
|
|
$stripped[] = "\n";
|
|
|
|
|
}
|
2006-10-03 13:00:52 +00:00
|
|
|
if ( strlen( $line ) > self::MAX_LINE_LENGTH ) {
|
2005-08-31 02:22:05 +00:00
|
|
|
$words[] = $line;
|
|
|
|
|
$stripped[] = $line;
|
|
|
|
|
} else {
|
2006-11-29 11:43:58 +00:00
|
|
|
$m = array();
|
2005-08-31 02:22:05 +00:00
|
|
|
if (preg_match_all('/ ( [^\S\n]+ | [0-9_A-Za-z\x80-\xff]+ | . ) (?: (?!< \n) [^\S\n])? /xs',
|
2008-08-05 19:40:29 +00:00
|
|
|
$line, $m))
|
2005-08-31 02:22:05 +00:00
|
|
|
{
|
|
|
|
|
$words = array_merge( $words, $m[0] );
|
|
|
|
|
$stripped = array_merge( $stripped, $m[1] );
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2005-08-31 02:22:05 +00:00
|
|
|
return array($words, $stripped);
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function orig () {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
$orig = new _HWLDF_WordAccumulator;
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
foreach ($this->edits as $edit) {
|
|
|
|
|
if ($edit->type == 'copy')
|
2008-08-05 19:40:29 +00:00
|
|
|
$orig->addWords($edit->orig);
|
2004-04-17 07:37:55 +00:00
|
|
|
elseif ($edit->orig)
|
2008-08-05 19:40:29 +00:00
|
|
|
$orig->addWords($edit->orig, 'del');
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2004-11-25 23:49:52 +00:00
|
|
|
$lines = $orig->getLines();
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-11-25 23:49:52 +00:00
|
|
|
return $lines;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function closing () {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
$closing = new _HWLDF_WordAccumulator;
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
foreach ($this->edits as $edit) {
|
|
|
|
|
if ($edit->type == 'copy')
|
2008-08-05 19:40:29 +00:00
|
|
|
$closing->addWords($edit->closing);
|
2004-04-17 07:37:55 +00:00
|
|
|
elseif ($edit->closing)
|
2008-08-05 19:40:29 +00:00
|
|
|
$closing->addWords($edit->closing, 'ins');
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2004-11-25 23:49:52 +00:00
|
|
|
$lines = $closing->getLines();
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-11-25 23:49:52 +00:00
|
|
|
return $lines;
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-06 18:16:38 +00:00
|
|
|
* Wikipedia Table style diff formatter.
|
2004-09-02 23:28:24 +00:00
|
|
|
* @todo document
|
2006-04-19 15:46:24 +00:00
|
|
|
* @private
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup DifferenceEngine
|
2003-04-14 23:10:40 +00:00
|
|
|
*/
|
2008-04-06 18:16:38 +00:00
|
|
|
class TableDiffFormatter extends DiffFormatter {
|
2003-04-14 23:10:40 +00:00
|
|
|
function TableDiffFormatter() {
|
|
|
|
|
$this->leading_context_lines = 2;
|
|
|
|
|
$this->trailing_context_lines = 2;
|
|
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2008-03-21 11:48:24 +00:00
|
|
|
public static function escapeWhiteSpace( $msg ) {
|
|
|
|
|
$msg = preg_replace( '/^ /m', ' ', $msg );
|
|
|
|
|
$msg = preg_replace( '/ $/m', ' ', $msg );
|
|
|
|
|
$msg = preg_replace( '/ /', ' ', $msg );
|
|
|
|
|
return $msg;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function _block_header( $xbeg, $xlen, $ybeg, $ylen ) {
|
2007-05-17 18:33:00 +00:00
|
|
|
$r = '<tr><td colspan="2" class="diff-lineno"><!--LINE '.$xbeg."--></td>\n" .
|
|
|
|
|
'<td colspan="2" class="diff-lineno"><!--LINE '.$ybeg."--></td></tr>\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
return $r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _start_block( $header ) {
|
2004-10-09 02:53:11 +00:00
|
|
|
echo $header;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _end_block() {
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
function _lines( $lines, $prefix=' ', $color='white' ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-08-30 23:17:04 +00:00
|
|
|
# HTML-escape parameter before calling this
|
2003-04-14 23:10:40 +00:00
|
|
|
function addedLine( $line ) {
|
2007-05-16 17:57:00 +00:00
|
|
|
return $this->wrapLine( '+', 'diff-addedline', $line );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-08-30 23:17:04 +00:00
|
|
|
# HTML-escape parameter before calling this
|
2003-04-14 23:10:40 +00:00
|
|
|
function deletedLine( $line ) {
|
2007-05-16 17:57:00 +00:00
|
|
|
return $this->wrapLine( '-', 'diff-deletedline', $line );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-08-30 23:17:04 +00:00
|
|
|
# HTML-escape parameter before calling this
|
|
|
|
|
function contextLine( $line ) {
|
2007-05-16 17:57:00 +00:00
|
|
|
return $this->wrapLine( ' ', 'diff-context', $line );
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-05-16 17:57:00 +00:00
|
|
|
private function wrapLine( $marker, $class, $line ) {
|
|
|
|
|
if( $line !== '' ) {
|
|
|
|
|
// The <div> wrapper is needed for 'overflow: auto' style to scroll properly
|
2008-03-21 11:48:24 +00:00
|
|
|
$line = Xml::tags( 'div', null, $this->escapeWhiteSpace( $line ) );
|
2007-05-16 17:57:00 +00:00
|
|
|
}
|
|
|
|
|
return "<td class='diff-marker'>$marker</td><td class='$class'>$line</td>";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2004-08-30 23:17:04 +00:00
|
|
|
function emptyLine() {
|
|
|
|
|
return '<td colspan="2"> </td>';
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-08-09 05:38:11 +00:00
|
|
|
|
2004-08-30 23:17:04 +00:00
|
|
|
function _added( $lines ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
foreach ($lines as $line) {
|
2004-10-09 02:53:11 +00:00
|
|
|
echo '<tr>' . $this->emptyLine() .
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->addedLine( '<ins class="diffchange">' .
|
|
|
|
|
htmlspecialchars ( $line ) . '</ins>' ) . "</tr>\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _deleted($lines) {
|
|
|
|
|
foreach ($lines as $line) {
|
2007-12-06 21:35:01 +00:00
|
|
|
echo '<tr>' . $this->deletedLine( '<del class="diffchange">' .
|
2008-08-05 19:40:29 +00:00
|
|
|
htmlspecialchars ( $line ) . '</del>' ) .
|
|
|
|
|
$this->emptyLine() . "</tr>\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _context( $lines ) {
|
|
|
|
|
foreach ($lines as $line) {
|
2004-10-09 02:53:11 +00:00
|
|
|
echo '<tr>' .
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->contextLine( htmlspecialchars ( $line ) ) .
|
|
|
|
|
$this->contextLine( htmlspecialchars ( $line ) ) . "</tr>\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-15 09:27:12 +00:00
|
|
|
function _changed( $orig, $closing ) {
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileIn( __METHOD__ );
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2004-04-17 07:37:55 +00:00
|
|
|
$diff = new WordLevelDiff( $orig, $closing );
|
2003-04-14 23:10:40 +00:00
|
|
|
$del = $diff->orig();
|
2004-01-15 09:27:12 +00:00
|
|
|
$add = $diff->closing();
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-08-30 23:17:04 +00:00
|
|
|
# Notice that WordLevelDiff returns HTML-escaped output.
|
2004-08-30 23:23:10 +00:00
|
|
|
# Hence, we will be calling addedLine/deletedLine without HTML-escaping.
|
2004-08-30 23:17:04 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
while ( $line = array_shift( $del ) ) {
|
|
|
|
|
$aline = array_shift( $add );
|
2004-10-09 02:53:11 +00:00
|
|
|
echo '<tr>' . $this->deletedLine( $line ) .
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->addedLine( $aline ) . "</tr>\n";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-08-30 23:45:05 +00:00
|
|
|
foreach ($add as $line) { # If any leftovers
|
2004-10-09 02:53:11 +00:00
|
|
|
echo '<tr>' . $this->emptyLine() .
|
2008-08-05 19:40:29 +00:00
|
|
|
$this->addedLine( $line ) . "</tr>\n";
|
2004-08-30 23:45:05 +00:00
|
|
|
}
|
2008-04-06 18:16:38 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
2004-04-17 07:37:55 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|