Update v1.0.6
This commit is contained in:
13
vendor/phpspec/php-diff/example/a.txt
vendored
13
vendor/phpspec/php-diff/example/a.txt
vendored
@@ -1,13 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
|
||||
<title>Hello World!</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||
|
||||
<h2>A heading we'll be removing</h2>
|
||||
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||
</body>
|
||||
</html>
|
14
vendor/phpspec/php-diff/example/b.txt
vendored
14
vendor/phpspec/php-diff/example/b.txt
vendored
@@ -1,14 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
|
||||
<title>Goodbye Cruel World!</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||
|
||||
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||
|
||||
<p>Just a small amount of new text...</p>
|
||||
</body>
|
||||
</html>
|
69
vendor/phpspec/php-diff/example/example.php
vendored
69
vendor/phpspec/php-diff/example/example.php
vendored
@@ -1,69 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
|
||||
<title>PHP LibDiff - Examples</title>
|
||||
<link rel="stylesheet" href="styles.css" type="text/css" charset="utf-8"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>PHP LibDiff - Examples</h1>
|
||||
<hr />
|
||||
<?php
|
||||
|
||||
// Include the diff class
|
||||
require_once dirname(__FILE__).'/../lib/Diff.php';
|
||||
|
||||
// Include two sample files for comparison
|
||||
$a = explode("\n", file_get_contents(dirname(__FILE__).'/a.txt'));
|
||||
$b = explode("\n", file_get_contents(dirname(__FILE__).'/b.txt'));
|
||||
|
||||
// Options for generating the diff
|
||||
$options = array(
|
||||
//'ignoreWhitespace' => true,
|
||||
//'ignoreCase' => true,
|
||||
);
|
||||
|
||||
// Initialize the diff class
|
||||
$diff = new Diff($a, $b, $options);
|
||||
|
||||
?>
|
||||
<h2>Side by Side Diff</h2>
|
||||
<?php
|
||||
|
||||
// Generate a side by side diff
|
||||
require_once dirname(__FILE__).'/../lib/Diff/Renderer/Html/SideBySide.php';
|
||||
$renderer = new Diff_Renderer_Html_SideBySide;
|
||||
echo $diff->Render($renderer);
|
||||
|
||||
?>
|
||||
<h2>Inline Diff</h2>
|
||||
<?php
|
||||
|
||||
// Generate an inline diff
|
||||
require_once dirname(__FILE__).'/../lib/Diff/Renderer/Html/Inline.php';
|
||||
$renderer = new Diff_Renderer_Html_Inline;
|
||||
echo $diff->render($renderer);
|
||||
|
||||
?>
|
||||
<h2>Unified Diff</h2>
|
||||
<pre><?php
|
||||
|
||||
// Generate a unified diff
|
||||
require_once dirname(__FILE__).'/../lib/Diff/Renderer/Text/Unified.php';
|
||||
$renderer = new Diff_Renderer_Text_Unified;
|
||||
echo htmlspecialchars($diff->render($renderer));
|
||||
|
||||
?>
|
||||
</pre>
|
||||
<h2>Context Diff</h2>
|
||||
<pre><?php
|
||||
|
||||
// Generate a context diff
|
||||
require_once dirname(__FILE__).'/../lib/Diff/Renderer/Text/Context.php';
|
||||
$renderer = new Diff_Renderer_Text_Context;
|
||||
echo htmlspecialchars($diff->render($renderer));
|
||||
?>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
93
vendor/phpspec/php-diff/example/styles.css
vendored
93
vendor/phpspec/php-diff/example/styles.css
vendored
@@ -1,93 +0,0 @@
|
||||
body {
|
||||
background: #fff;
|
||||
font-family: Arial;
|
||||
font-size: 12px;
|
||||
}
|
||||
.Differences {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
empty-cells: show;
|
||||
}
|
||||
|
||||
.Differences thead th {
|
||||
text-align: left;
|
||||
border-bottom: 1px solid #000;
|
||||
background: #aaa;
|
||||
color: #000;
|
||||
padding: 4px;
|
||||
}
|
||||
.Differences tbody th {
|
||||
text-align: right;
|
||||
background: #ccc;
|
||||
width: 4em;
|
||||
padding: 1px 2px;
|
||||
border-right: 1px solid #000;
|
||||
vertical-align: top;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.Differences td {
|
||||
padding: 1px 2px;
|
||||
font-family: Consolas, monospace;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.DifferencesSideBySide .ChangeInsert td.Left {
|
||||
background: #dfd;
|
||||
}
|
||||
|
||||
.DifferencesSideBySide .ChangeInsert td.Right {
|
||||
background: #cfc;
|
||||
}
|
||||
|
||||
.DifferencesSideBySide .ChangeDelete td.Left {
|
||||
background: #f88;
|
||||
}
|
||||
|
||||
.DifferencesSideBySide .ChangeDelete td.Right {
|
||||
background: #faa;
|
||||
}
|
||||
|
||||
.DifferencesSideBySide .ChangeReplace .Left {
|
||||
background: #fe9;
|
||||
}
|
||||
|
||||
.DifferencesSideBySide .ChangeReplace .Right {
|
||||
background: #fd8;
|
||||
}
|
||||
|
||||
.Differences ins, .Differences del {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.DifferencesSideBySide .ChangeReplace ins, .DifferencesSideBySide .ChangeReplace del {
|
||||
background: #fc0;
|
||||
}
|
||||
|
||||
.Differences .Skipped {
|
||||
background: #f7f7f7;
|
||||
}
|
||||
|
||||
.DifferencesInline .ChangeReplace .Left,
|
||||
.DifferencesInline .ChangeDelete .Left {
|
||||
background: #fdd;
|
||||
}
|
||||
|
||||
.DifferencesInline .ChangeReplace .Right,
|
||||
.DifferencesInline .ChangeInsert .Right {
|
||||
background: #dfd;
|
||||
}
|
||||
|
||||
.DifferencesInline .ChangeReplace ins {
|
||||
background: #9e9;
|
||||
}
|
||||
|
||||
.DifferencesInline .ChangeReplace del {
|
||||
background: #e99;
|
||||
}
|
||||
|
||||
pre {
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
}
|
Reference in New Issue
Block a user