Indefero

Indefero Commit Details


Date:2010-04-29 16:38:28 (14 years 7 months ago)
Author:Thomas Keller
Branch:develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, master, release-1.1, release-1.2, release-1.3
Commit:b7ced5fa69a838280a2bb49c2be8b821de982a84
Parents: 995f1a13c3b17aac73aa7f0dcdbe5ddb021b404f
Message:Do not shorten the changelog in the SCM model - thats a task for the view.

Changes:

File differences

src/IDF/Scm/Monotone.php
410410
411411
412412
413
413
414414
415415
416416
......
552552
553553
554554
555
555
556556
557557
558558
......
629629
630630
631631
632
632
633633
634634
635635
foreach ($certs['date'] as $date)
$dates[] = gmdate('Y-m-d H:i:s', strtotime($date));
$file['date'] = implode(', ', $dates);
$file['log'] = substr(implode("; ", $certs['changelog']), 0, 80);
$file['log'] = implode("\n---\n", $certs['changelog']);
}
$files[] = (object) $file;
foreach ($certs['date'] as $date)
$dates[] = gmdate('Y-m-d H:i:s', strtotime($date));
$file['date'] = implode(', ', $dates);
$file['log'] = substr(implode("; ", $certs['changelog']), 0, 80);
$file['log'] = implode("\n---\n", $certs['changelog']);
}
return (object) $file;
$dates[] = gmdate('Y-m-d H:i:s', strtotime($date));
$res['date'] = implode(', ', $dates);
$res['title'] = implode("\n---\n, ", $certs['changelog']);
$res['title'] = implode("\n---\n", $certs['changelog']);
$res['commit'] = $revs[0];

Archive Download the corresponding diff file

Page rendered in 0.08221s using 13 queries.