2011-01-24 15:52:35 -08:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* This file is automatically generated. Lint this module to rebuild it.
|
|
|
|
|
* @generated
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Show coverage information in Differential
Summary:
Render coverage information in the right gutter, if available.
We could render some kind of summary report deal too but this seems like a good
start.
Test Plan:
- Looked at diffs with coverage.
- Looked at diffs without coverage.
- Used inline comments, diff-of-diff, "show more", "show entire file", "show
generated file", "undo". Nothing seemed disrupted by the addition of a 5th
column.
Reviewers: btrahan, tuomaspelkonen, jungejason
Reviewed By: btrahan
CC: zeeg, aran, epriestley
Maniphest Tasks: T140
Differential Revision: https://secure.phabricator.com/D1527
2012-01-31 12:07:47 -08:00
|
|
|
phutil_require_module('arcanist', 'unit/result');
|
|
|
|
|
|
2011-05-06 12:58:53 -07:00
|
|
|
phutil_require_module('phabricator', 'aphront/response/400');
|
2011-01-24 15:52:35 -08:00
|
|
|
phutil_require_module('phabricator', 'aphront/response/404');
|
2011-01-25 11:57:47 -08:00
|
|
|
phutil_require_module('phabricator', 'aphront/response/ajax');
|
2011-05-06 12:58:53 -07:00
|
|
|
phutil_require_module('phabricator', 'aphront/response/file');
|
2012-01-31 16:32:49 -08:00
|
|
|
phutil_require_module('phabricator', 'aphront/response/redirect');
|
2011-01-24 15:52:35 -08:00
|
|
|
phutil_require_module('phabricator', 'applications/differential/controller/base');
|
|
|
|
|
phutil_require_module('phabricator', 'applications/differential/parser/changeset');
|
|
|
|
|
phutil_require_module('phabricator', 'applications/differential/storage/changeset');
|
2012-01-04 09:10:37 -08:00
|
|
|
phutil_require_module('phabricator', 'applications/differential/storage/diffproperty');
|
2011-02-02 13:48:52 -08:00
|
|
|
phutil_require_module('phabricator', 'applications/differential/storage/inlinecomment');
|
2011-01-25 11:57:47 -08:00
|
|
|
phutil_require_module('phabricator', 'applications/differential/view/changesetdetailview');
|
2011-06-08 12:39:03 -07:00
|
|
|
phutil_require_module('phabricator', 'applications/differential/view/primarypane');
|
Generalize the markup engine factory
Summary:
This thing services every app but it lives inside Differential right now. Pull
it out, and separate the factory interfaces per-application.
This will let us accommodate changes we need to make for Phriction to support
wiki linking.
Test Plan: Tested remarkup in differential, diffusion, maniphest, people,
slowvote.
Reviewed By: hsb
Reviewers: hsb, codeblock, jungejason, tuomaspelkonen, aran
CC: aran, hsb
Differential Revision: 646
2011-07-11 15:58:32 -07:00
|
|
|
phutil_require_module('phabricator', 'applications/markup/engine');
|
2011-02-02 13:48:52 -08:00
|
|
|
phutil_require_module('phabricator', 'applications/phid/handle/data');
|
2011-07-17 11:06:02 -07:00
|
|
|
phutil_require_module('phabricator', 'infrastructure/diff/engine');
|
2011-01-31 20:38:13 -08:00
|
|
|
phutil_require_module('phabricator', 'infrastructure/javelin/api');
|
2011-01-24 15:52:35 -08:00
|
|
|
|
|
|
|
|
phutil_require_module('phutil', 'utils');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
phutil_require_source('DifferentialChangesetViewController.php');
|