@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 "M<digit>" and "P<digit>" to the default Remarkup ignore list

Summary: Ref T13575. Particularly with the new Apple silicon, I think there are enough domain collisions for `M1`, `M2`, `P1`, etc., to justify adding them to the default ignore list.

Test Plan: Created a mock, then wrote a comment referencing an object on the list (`M1`) and an object not on the list (`T1`). Got text and a link respectively.

Maniphest Tasks: T13575

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

+15 -1
+15 -1
src/applications/config/option/PhabricatorCoreConfigOptions.php
··· 169 169 'Maniphest. If you\'d prefer more traditional UI strings like '. 170 170 '"Add Comment", you can set this flag to disable most of the '. 171 171 'extra flavor.')), 172 - $this->newOption('remarkup.ignored-object-names', 'string', '/^(Q|V)\d$/') 172 + $this->newOption( 173 + 'remarkup.ignored-object-names', 174 + 'string', 175 + 176 + // Q1, Q2, etc., are common abbreviations for "Quarter". 177 + // V1, V2, etc., are common abbreviations for "Version". 178 + // P1, P2, etc., are common abbreviations for "Priority". 179 + 180 + // M1 is a computer chip manufactured by Apple. 181 + // M2 (commonly spelled "M.2") is an expansion slot on motherboards. 182 + // M4 is a carbine. 183 + // M8 is a phonetic spelling of "mate", used in culturally significant 184 + // copypasta about navy seals. 185 + 186 + '/^(Q|V|M|P)\d$/') 173 187 ->setSummary( 174 188 pht('Text values that match this regex and are also object names '. 175 189 'will not be linked.'))