Very rough cut of DarkConsole + XHProf

This commit is contained in:
epriestley
2011-02-02 13:48:52 -08:00
parent 246cba2bf0
commit 759eec3a77
52 changed files with 2728 additions and 60 deletions

View File

@@ -41,7 +41,7 @@ class DifferentialChangesetParser {
protected $subparser;
protected $oldChangesetID = null;
protected $noHighlight;
private $handles;
const CACHE_VERSION = 4;
@@ -92,12 +92,12 @@ class DifferentialChangesetParser {
$this->filetype = end(explode('.', $filename));
}
}
public function setHandles(array $handles) {
$this->handles = $handles;
return $this;
}
public function setMarkupEngine(PhutilMarkupEngine $engine) {
$this->markupEngine = $engine;
return $this;

View File

@@ -12,6 +12,7 @@ phutil_require_module('arcanist', 'parser/diff');
phutil_require_module('phabricator', 'applications/differential/constants/changetype');
phutil_require_module('phabricator', 'applications/differential/storage/changeset');
phutil_require_module('phabricator', 'applications/differential/storage/diff');
phutil_require_module('phabricator', 'applications/differential/view/inlinecomment');
phutil_require_module('phabricator', 'applications/files/uri');
phutil_require_module('phabricator', 'infrastructure/javelin/markup');
phutil_require_module('phabricator', 'storage/queryfx');