mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-21 14:22:41 +01:00
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
This commit is contained in:
parent
05f4d5071f
commit
a741f5d65c
8 changed files with 16 additions and 11 deletions
|
@ -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 {}
|
||||
|
|
Loading…
Reference in a new issue