Change some instances of "phabricator" to "phorge"

Summary:
Just a small set of replacements in locations that seem innocuous (user-facing messages, documentation, etc.)

Ref T15006

Test Plan:
Nothing should change in terms of behavior. The places where these changes were made should now say "phorge".

Example tests:

- Manage a single User and click on Delete User and see the popup
- Run a test email and check the output
  ./bin/mail send-test --to username
- Visit /maniphest/, shift+click on at least 1 Task, click on Bulk Edit Selected,
  Continue, see the popup
- See the mentioned documentation with your big eyes. Eyes do not explode \o/

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15006

Differential Revision: https://we.phorge.it/D25473
这个提交包含在:
Waldir Pimenta 2023-11-18 22:13:49 +00:00
父节点 05f4d5071f
当前提交 a741f5d65c
共有 8 个文件被更改,包括 16 次插入11 次删除

查看文件

@ -8,7 +8,7 @@ be read by default.
To specify a path when starting Aphlict, use the `--config` flag:
phabricator/ $ ./bin/aphlict start --config path/to/config.json
phorge/ $ ./bin/aphlict start --config path/to/config.json
Specifying a configuration file explicitly overrides default configuration.

查看文件

@ -13,7 +13,7 @@ function init_phabricator_script(array $options) {
if (!$ok) {
echo
'FATAL ERROR: Unable to load the "Arcanist" library. '.
'Put "arcanist/" next to "phabricator/" on disk.';
'Put "arcanist/" next to "phorge/" on disk.';
echo "\n";
exit(1);

查看文件

@ -77,7 +77,7 @@ final class PhabricatorConfigOption
'This configuration is locked and can not be edited from the web '.
'interface. Use %s in %s to edit it.',
phutil_tag('tt', array(), './bin/config'),
phutil_tag('tt', array(), 'phabricator/'));
phutil_tag('tt', array(), PlatformSymbols::getPlatformServerPath()));
}
public function addExample($value, $description) {

查看文件

@ -181,8 +181,9 @@ final class PhabricatorMailManagementReceiveTestWorkflow
$received->processReceivedMail();
$console->writeErr(
"%s\n\n phabricator/ $ ./bin/mail show-inbound --id %d\n\n",
"%s\n\n %s $ ./bin/mail show-inbound --id %d\n\n",
pht('Mail received! You can view details by running this command:'),
PlatformSymbols::getPlatformServerPath(),
$received->getID());
}

查看文件

@ -225,8 +225,9 @@ final class PhabricatorMailManagementSendTestWorkflow
$mail->save();
$console->writeErr(
"%s\n\n phabricator/ $ ./bin/mail show-outbound --id %d\n\n",
"%s\n\n %s $ ./bin/mail show-outbound --id %d\n\n",
pht('Mail sent! You can view details by running this command:'),
PlatformSymbols::getPlatformServerPath(),
$mail->getID());
}

查看文件

@ -27,9 +27,12 @@ final class PhabricatorPeopleDeleteController
'To permanently destroy this user, run this command from the '.
'command line:'))
->appendCommand(
csprintf(
'phabricator/ $ ./bin/remove destroy %R',
$user->getMonogram()))
hsprintf(
'<tt>%s $</tt> %s',
PlatformSymbols::getPlatformServerPath(),
csprintf(
'./bin/remove destroy %R',
$user->getMonogram())))
->appendParagraph(
pht(
'Unless you have a very good reason to delete this user, consider '.

查看文件

@ -31,9 +31,9 @@ final class PhabricatorEditEngineBulkJobType
$parts[] = pht('To silence this edit, run this command:');
$command = csprintf(
'phabricator/ $ ./bin/bulk make-silent --id %R',
'%s $ ./bin/bulk make-silent --id %R',
PlatformSymbols::getPlatformServerPath(),
$job->getID());
$command = (string)$command;
$parts[] = phutil_tag('tt', array(), $command);

查看文件

@ -10,6 +10,6 @@
*
* All concrete subclasses of this class are automatically registered at
* startup. This allows it to be used with custom one-offs that can be dropped
* into `phabricator/src/extensions/`.
* into `phorge/src/extensions/`.
*/
abstract class PhabricatorAutoEventListener extends PhabricatorEventListener {}