@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.

Add a context field to symbol objects

Summary:
See T1602.

This is just the minimal functional patch; the scripts will continue
working because of the `DEFAULT ''`.

Test Plan:
Can't fully test this until I get more code working, but
nothing broke horribly yet.

Reviewers: epriestley

Reviewed By: epriestley

CC: nh, aran, Korvin

Maniphest Tasks: T1602

Differential Revision: https://secure.phabricator.com/D3147

+8
+3
resources/sql/patches/symbolcontexts.sql
··· 1 + ALTER TABLE {$NAMESPACE}_repository.repository_symbol 2 + ADD symbolContext varchar(128) COLLATE utf8_general_ci NOT NULL DEFAULT '' 3 + AFTER arcanistProjectID;
+1
src/applications/repository/storage/PhabricatorRepositorySymbol.php
··· 27 27 final class PhabricatorRepositorySymbol extends PhabricatorRepositoryDAO { 28 28 29 29 protected $arcanistProjectID; 30 + protected $symbolContext; 30 31 protected $symbolName; 31 32 protected $symbolType; 32 33 protected $symbolLanguage;
+4
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 936 936 'type' => 'sql', 937 937 'name' => $this->getPatchPath('daemonstatus.sql'), 938 938 ), 939 + 'symbolcontexts.sql' => array( 940 + 'type' => 'sql', 941 + 'name' => $this->getPatchPath('symbolcontexts.sql'), 942 + ), 939 943 ); 940 944 } 941 945