Lines Matching +full:diff -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)
5 use Diff; alias
28 default => ['rev' => $this->getRev(), 'do' => 'diff'],
40 case 'diff':
41 $diff = $this->getDiff();
42 // note: diff output must be escaped, UnifiedDiffFormatter provides plain text
44 return "<pre>\n" . hsc($udf->format($diff)) . "\n</pre>";
47 $diff = $this->getDiff();
48 // note: no need to escape diff output, TableDiffFormatter provides 'safe' html
53 $content .= $tdf->format($diff);
191 * Get a diff between this and the previous revision
193 * @return Diff
200 return new Diff(
205 return new Diff([''], explode("\n", rawWiki($this->getId(), '')));