Indefero

Indefero Commit Details


Date:2011-06-01 18:21:32 (13 years 6 months ago)
Author:Thomas Keller
Branch:develop, feature.content-md5, feature.diff-whitespace, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, release-1.2, release-1.3
Commit:592c2ff9ffc379b2fe7c1bd1e72335fb35fd58f0
Parents: 30efd0a2dbad48acb3e256d65abbcda47d190b20
Message:Several f'ups in hg's parseLog() method

Changes:

File differences

src/IDF/Scm/Mercurial.php
531531
532532
533533
534
534
535
535536
536537
537538
......
547548
548549
549550
550
551
551552
552
553
554553
555554
556555
if ($line == "\0") {
$headers_processed = false;
if (count($c) > 0) {
$c['full_message'] = trim($c['full_message']);
if (array_key_exists('full_message', $c))
$c['full_message'] = trim($c['full_message']);
$res[] = (object) $c;
}
continue;
$c['commit'] = $match[2];
$c['tree'] = $c['commit'];
$c['full_message'] = '';
} elseif ($match[1] == 'user') {
} elseif ($match[1] == 'author') {
$c['author'] = $match[2];
} elseif ($match[1] == 'summary') {
$c['title'] = $match[2];
} elseif ($match[1] == 'branch') {
$c['branch'] = empty($match[2]) ? 'default' : $match[2];
} elseif ($match[1] == 'parents') {

Archive Download the corresponding diff file

Page rendered in 0.07608s using 13 queries.