mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
108 lines
2.8 KiB
PHP
108 lines
2.8 KiB
PHP
<?
|
|
//Diff function by Leto of StC.
|
|
function diff($OldText, $NewText) {
|
|
$LineArrayOld = explode("\n", $OldText);
|
|
$LineArrayNew = explode("\n", $NewText);
|
|
$LineOffset = 0;
|
|
$Result = array();
|
|
|
|
foreach ($LineArrayOld as $OldLine => $OldString) {
|
|
$Key = $OldLine + $LineOffset;
|
|
if ($Key < 0) {
|
|
$Key = 0;
|
|
}
|
|
$Found = -1;
|
|
|
|
while ($Key < count($LineArrayNew)) {
|
|
if ($OldString != $LineArrayNew[$Key]) {
|
|
$Key++;
|
|
} elseif ($OldString == $LineArrayNew[$Key]) {
|
|
$Found = $Key;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ($Found == '-1') { //we never found the old line in the new array
|
|
$Result[] = '<span class="line_deleted">← '.$OldString.'</span><br />';
|
|
$LineOffset = $LineOffset - 1;
|
|
} elseif ($Found == $OldLine + $LineOffset) {
|
|
$Result[] = '<span class="line_unchanged">↕ '.$OldString.'</span><br />';
|
|
} elseif ($Found != $OldLine + $LineOffset) {
|
|
if ($Found < $OldLine + $LineOffset) {
|
|
$Result[] = '<span class="line_moved">⇤ '.$OldString.'</span><br />';
|
|
} else {
|
|
$Result[] = '<span class="line_moved">← '.$OldString.'</span><br />';
|
|
$Key = $OldLine + $LineOffset;
|
|
while ($Key < $Found) {
|
|
$Result[] = '<span class="line_new">→ '.$LineArrayNew[$Key].'</span><br />';
|
|
$Key++;
|
|
}
|
|
$Result[] = '<span class="line_moved">→ '.$OldString.'</span><br />';
|
|
}
|
|
$LineOffset = $Found - $OldLine;
|
|
}
|
|
}
|
|
if (count($LineArrayNew) > count($LineArrayOld) + $LineOffset) {
|
|
$Key = count($LineArrayOld) + $LineOffset;
|
|
while ($Key < count($LineArrayNew)) {
|
|
$Result[] = '<span class="line_new">→ '.$LineArrayNew[$Key].'</span><br />';
|
|
$Key++;
|
|
}
|
|
}
|
|
return $Result;
|
|
|
|
}
|
|
|
|
function get_body($ID, $Rev) {
|
|
global $DB, $Revision, $Body;
|
|
if ($Rev == $Revision) {
|
|
$Str = $Body;
|
|
} else {
|
|
$DB->query("
|
|
SELECT Body
|
|
FROM wiki_revisions
|
|
WHERE ID = '$ID'
|
|
AND Revision = '$Rev'");
|
|
if (!$DB->has_results()) {
|
|
error(404);
|
|
}
|
|
list($Str) = $DB->next_record();
|
|
}
|
|
return $Str;
|
|
}
|
|
|
|
if (!isset($_GET['old'])
|
|
|| !isset($_GET['new'])
|
|
|| !isset($_GET['id'])
|
|
|| !is_number($_GET['old'])
|
|
|| !is_number($_GET['new'])
|
|
|| !is_number($_GET['id'])
|
|
|| $_GET['old'] > $_GET['new']
|
|
) {
|
|
error(0);
|
|
}
|
|
|
|
$ArticleID = (int)$_GET['id'];
|
|
|
|
$Article = Wiki::get_article($ArticleID);
|
|
list($Revision, $Title, $Body, $Read, $Edit, $Date, $AuthorID, $AuthorName) = array_shift($Article);
|
|
if ($Edit > $LoggedUser['EffectiveClass']) {
|
|
error(404);
|
|
}
|
|
|
|
View::show_header('Compare Article Revisions');
|
|
$Diff2 = get_body($ArticleID, $_GET['new']);
|
|
$Diff1 = get_body($ArticleID, $_GET['old']);
|
|
?>
|
|
<div class="thin">
|
|
<div class="header">
|
|
<h2>Compare <a href="wiki.php?action=article&id=<?=$ArticleID?>"><?=$Title?></a> Revisions</h2>
|
|
</div>
|
|
<div class="box center_revision" id="center">
|
|
<div class="body"><? foreach (diff($Diff1, $Diff2) AS $Line) { echo $Line; } ?></div>
|
|
</div>
|
|
</div>
|
|
<?
|
|
View::show_footer();
|
|
?>
|