Indefero

Indefero Commit Details


Date:2011-01-17 04:57:39 (14 years 3 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:caac97926355becf2ad0d596489b475e48b922d1
Parents: bbc9bd6ef4bad7914847e439c3ab88546c64a992
Message:Don't throw an exception in case we do not find a branch cert tacked on a revision from which we want to start our log from, but simply ignore that and go over to the next revision. Note that this is also a bit fragile and should probably be converted to plain mtn au log usage.

Changes:

File differences

src/IDF/Scm/Monotone.php
749749
750750
751751
752
753
754
755
752
753
754
756755
757756
758757
            // read in the initial branches we should follow
            if (count($initialBranches) == 0) {
                if (!isset($certs['branch'])) {
                    throw new IDF_Scm_Exception(sprintf(
                        __("revision %s has no branch cert - cannot start ".
                           "logging from this revision"), $rev
                    ));
                    // this revision has no branch cert, we cannot start logging
                    // from this revision
                    continue;
                }
                $initialBranches = $certs['branch'];
            }

Archive Download the corresponding diff file

Page rendered in 0.12944s using 13 queries.