Indefero

Indefero Commit Details


Date:2010-06-23 19:27:38 (14 years 5 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:f3268b3d37695273dae781676b8f87c3395993a9
Parents: 4fdf248cb6e39db5e9f45992a092dcc710dfea97
Message:uh, we should really share one mtn instance per project and request...

Changes:

File differences

src/IDF/Scm/Monotone.php
391391
392392
393393
394
395
394396
395397
396398
......
873875
874876
875877
876
878
879
880
881
882
883
877884
878885
879886
private $stdio;
private static $instances = array();
/**
* @see IDF_Scm::__construct()
*/
*/
public static function factory($project)
{
return new IDF_Scm_Monotone($project);
if (!array_key_exists($project->shortname, self::$instances))
{
self::$instances[$project->shortname] =
new IDF_Scm_Monotone($project);
}
return self::$instances[$project->shortname];
}
/**

Archive Download the corresponding diff file

Page rendered in 0.08410s using 13 queries.