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

Change two instances of "Phabricator" to "Phorge"

Summary:
Make docs a bit more consistent.

Refs T15006

Test Plan: Read.

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: mainframe98, avivey, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15006

Differential Revision: https://we.phorge.it/D26220

+7 -4
+4 -2
src/applications/oauthserver/application/PhabricatorOAuthServerApplication.php
··· 39 39 public function getHelpDocumentationArticles(PhabricatorUser $viewer) { 40 40 return array( 41 41 array( 42 - 'name' => pht('Using the Phabricator OAuth Server'), 42 + 'name' => pht( 43 + 'Using the %s OAuth Server', 44 + PlatformSymbols::getPlatformServerName()), 43 45 'href' => PhabricatorEnv::getDoclink( 44 - 'Using the Phabricator OAuth Server'), 46 + 'Using the Phorge OAuth Server'), 45 47 ), 46 48 ); 47 49 }
+3 -2
src/applications/repository/engine/PhabricatorRepositoryPullEngine.php
··· 226 226 private function installHookDirectory($path) { 227 227 $readme = pht( 228 228 "To add custom hook scripts to this repository, add them to this ". 229 - "directory.\n\nPhabricator will run any executables in this directory ". 229 + "directory.\n\n%s will run any executables in this directory ". 230 230 "after running its own checks, as though they were normal hook ". 231 - "scripts."); 231 + "scripts.", 232 + PlatformSymbols::getPlatformServerName()); 232 233 233 234 Filesystem::createDirectory($path, 0755); 234 235 Filesystem::writeFile($path.'/README', $readme);