@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix some daemon ish.

+6 -1
+4
scripts/__init_env__.php
··· 16 16 * limitations under the License. 17 17 */ 18 18 19 + $include_path = ini_get('include_path'); 20 + ini_set('include_path', $include_path.':'.dirname(__FILE__).'/../../'); 21 + 19 22 require_once dirname(dirname(__FILE__)).'/conf/__init_conf__.php'; 20 23 21 24 $env = getenv('PHABRICATOR_ENV'); ··· 29 32 30 33 phutil_require_module('phabricator', 'infrastructure/env'); 31 34 PhabricatorEnv::setEnvConfig($conf); 35 + 32 36 33 37 foreach (PhabricatorEnv::getEnvConfig('load-libraries') as $library) { 34 38 phutil_load_library($library);
+1 -1
src/applications/repository/worker/base/PhabricatorRepositoryCommitParserWorker.php
··· 50 50 } 51 51 52 52 final protected function shouldQueueFollowupTasks() { 53 - return !!idx($this->getTaskData(), 'only'); 53 + return !idx($this->getTaskData(), 'only'); 54 54 } 55 55 56 56 abstract protected function parseCommit(
+1
src/applications/repository/worker/commitmessageparser/git/__init__.php
··· 10 10 phutil_require_module('phabricator', 'infrastructure/daemon/workers/storage/task'); 11 11 12 12 phutil_require_module('phutil', 'future/exec'); 13 + phutil_require_module('phutil', 'utils'); 13 14 14 15 15 16 phutil_require_source('PhabricatorRepositoryGitCommitMessageParserWorker.php');