MediaWiki
1.23.5
|
Base class for diff formatters. More...
Public Member Functions | |
format ( $diff) | |
Format a diff. More... | |
Protected Member Functions | |
added ( $lines) | |
block ( $xbeg, $xlen, $ybeg, $ylen, &$edits) | |
blockHeader ( $xbeg, $xlen, $ybeg, $ylen) | |
changed ( $orig, $closing) | |
Writes the two sets of lines to the output buffer, separated by "---" and a newline. More... | |
context ( $lines) | |
deleted ( $lines) | |
endBlock () | |
Called at the end of a block of connected edits. More... | |
endDiff () | |
lines ( $lines, $prefix=' ') | |
Writes all (optionally prefixed) lines to the output buffer, separated by newlines. More... | |
startBlock ( $header) | |
Called at the start of a block of connected edits. More... | |
startDiff () | |
Protected Attributes | |
int | $leadingContextLines = 0 |
Number of leading context "lines" to preserve. More... | |
int | $trailingContextLines = 0 |
Number of trailing context "lines" to preserve. More... | |
Base class for diff formatters.
This class formats the diff in classic diff format. It is intended that this class be customized via inheritance, to obtain fancier outputs.
Definition at line 36 of file DiffFormatter.php.
|
protected |
string[] | $lines |
Reimplemented in TableDiffFormatter, and UnifiedDiffFormatter.
Definition at line 222 of file DiffFormatter.php.
|
protected |
int | $xbeg | |
int | $xlen | |
int | $ybeg | |
int | $ylen | |
$edits |
MWException | If the edit type is not known. |
Definition at line 130 of file DiffFormatter.php.
References added(), as, blockHeader(), changed(), context(), deleted(), endBlock(), startBlock(), wfProfileIn(), and wfProfileOut().
Referenced by format().
|
protected |
int | $xbeg | |
int | $xlen | |
int | $ybeg | |
int | $ylen |
Reimplemented in UnifiedDiffFormatter, and TableDiffFormatter.
Definition at line 172 of file DiffFormatter.php.
Referenced by block().
|
protected |
Writes the two sets of lines to the output buffer, separated by "---" and a newline.
string[] | $orig | |
string[] | $closing |
Reimplemented in TableDiffFormatter, and UnifiedDiffFormatter.
Definition at line 239 of file DiffFormatter.php.
References added(), and deleted().
Referenced by block().
|
protected |
string[] | $lines |
Reimplemented in TableDiffFormatter.
Definition at line 215 of file DiffFormatter.php.
References $lines, and lines().
Referenced by block().
|
protected |
string[] | $lines |
Reimplemented in TableDiffFormatter, and UnifiedDiffFormatter.
Definition at line 229 of file DiffFormatter.php.
|
protected |
Called at the end of a block of connected edits.
This default implementation does nothing.
Reimplemented in TableDiffFormatter.
Definition at line 197 of file DiffFormatter.php.
Referenced by block().
|
protected |
DiffFormatter::format | ( | $diff | ) |
Format a diff.
Reimplemented in ArrayDiffFormatter.
Definition at line 57 of file DiffFormatter.php.
References $leadingContextLines, $trailingContextLines, array(), as, block(), endDiff(), startDiff(), wfProfileIn(), and wfProfileOut().
|
protected |
Writes all (optionally prefixed) lines to the output buffer, separated by newlines.
string[] | $lines | |
string | $prefix |
Definition at line 206 of file DiffFormatter.php.
References $line, $lines, and as.
Referenced by UnifiedDiffFormatter\added(), added(), context(), UnifiedDiffFormatter\deleted(), and deleted().
|
protected |
Called at the start of a block of connected edits.
This default implementation writes the header and a newline to the output buffer.
string | $header |
Reimplemented in TableDiffFormatter.
Definition at line 189 of file DiffFormatter.php.
Referenced by block().
|
protected |
Definition at line 150 of file DiffFormatter.php.
Referenced by format().
|
protected |
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.
Definition at line 42 of file DiffFormatter.php.
Referenced by format().
|
protected |
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.
Definition at line 48 of file DiffFormatter.php.
Referenced by format().