@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 links to "Adding New Classes" in docs

Summary: Fixes T9483. This bookname is `phabcontrib`, not `contributor`.

Test Plan: `grep` / clicked these links.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9483

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

+14 -11
+6 -3
src/docs/contributor/internationalization.diviner
··· 22 22 Once you've created a locale, applications can add translations for that 23 23 locale. 24 24 25 - For instructions on adding new classes, see @{article:Adding New Classes}. 25 + For instructions on adding new classes, see 26 + @{article@phabcontrib:Adding New Classes}. 26 27 27 28 28 29 Adding Translations to Locale ··· 36 37 provide translations into different locales without needing to define those 37 38 locales themselves. 38 39 39 - For instructions on adding new classes, see @{article:Adding New Classes}. 40 + For instructions on adding new classes, see 41 + @{article@phabcontrib:Adding New Classes}. 40 42 41 43 42 44 Writing Translatable Code ··· 375 377 376 378 Continue by: 377 379 378 - - adding a new locale or translation file with @{article:Adding New Classes}. 380 + - adding a new locale or translation file with 381 + @{article@phabcontrib:Adding New Classes}.
+1 -1
src/docs/user/configuration/custom_fields.diviner
··· 213 213 Continue by: 214 214 215 215 - learning more about extending Phabricator with custom code in 216 - @{article@contributor:Adding New Classes}; 216 + @{article@phabcontrib:Adding New Classes}; 217 217 - or returning to the @{article: Configuration Guide}.
+2 -2
src/docs/user/configuration/managing_daemons.diviner
··· 109 109 just those started with `phd start`. If you're writing a restart script, 110 110 have it launch any custom daemons explicitly after `phd restart`. 111 111 - You can write your own daemons and manage them with `phd` by extending 112 - @{class:PhabricatorDaemon}. See @{article@contributor:Adding New Classes}. 112 + @{class:PhabricatorDaemon}. See @{article@phabcontrib:Adding New Classes}. 113 113 - See @{article:Diffusion User Guide} for details about tuning the repository 114 114 daemon. 115 115 ··· 137 137 138 138 - learning about the repository daemon with @{article:Diffusion User Guide}; 139 139 or 140 - - writing your own daemons with @{article@contributor:Adding New Classes}. 140 + - writing your own daemons with @{article@phabcontrib:Adding New Classes}.
+1 -1
src/docs/user/userguide/arcanist_lint_unit.diviner
··· 38 38 39 39 If you haven't created a library for the class to live in yet, you need to do 40 40 that first. Follow the instructions in 41 - @{article@contributor:Adding New Classes}, then make the library loadable by 41 + @{article@phabcontrib:Adding New Classes}, then make the library loadable by 42 42 adding it to your `.arcconfig` like this: 43 43 44 44 {
+1 -1
src/docs/user/userguide/arcanist_new_project.diviner
··· 47 47 48 48 - **load**: list of additional Phutil libraries to load at startup. 49 49 See below for details about path resolution, or see 50 - @{article@contributor:Adding New Classes} for a general introduction to 50 + @{article@phabcontrib:Adding New Classes} for a general introduction to 51 51 libphutil libraries. 52 52 - **https.cabundle**: specifies the path to an alternate certificate bundle 53 53 for use when making HTTPS connections.
+1 -1
src/docs/user/userguide/diffusion_symbols.diviner
··· 88 88 89 89 == External Symbols == 90 90 91 - By @{article:Adding New Classes}, you can teach Phabricator 91 + By @{article@phabcontrib:Adding New Classes}, you can teach Phabricator 92 92 about symbols from the outside world. 93 93 Extend @{class:DiffusionExternalSymbolsSource}; Once loaded, your new 94 94 implementation will be used any time a symbol is queried.
+2 -2
src/docs/user/userguide/events.diviner
··· 21 21 22 22 - Write a listener class which extends @{class@libphutil:PhutilEventListener}. 23 23 - Add it to a libphutil library, or create a new library (for instructions, 24 - see @{article@contributor:Adding New Classes}. 24 + see @{article@phabcontrib:Adding New Classes}. 25 25 - Configure Phabricator to load the library by adding it to `load-libraries` 26 26 in the Phabricator config. 27 27 - Configure Phabricator to install the event listener by adding the class ··· 38 38 39 39 - Write a listener class which extends @{class@libphutil:PhutilEventListener}. 40 40 - Add it to a libphutil library, or create a new library (for instructions, 41 - see @{article@contributor:Adding New Classes}. 41 + see @{article@phabcontrib:Adding New Classes}. 42 42 - Configure Phabricator to load the library by adding it to `load` 43 43 in the Arcanist config (e.g., `.arcconfig`, or user/global config). 44 44 - Configure Arcanist to install the event listener by adding the class