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

+16 -11
+1 -1
conf/aphlict/README
··· 8 8 9 9 To specify a path when starting Aphlict, use the `--config` flag: 10 10 11 - phabricator/ $ ./bin/aphlict start --config path/to/config.json 11 + phorge/ $ ./bin/aphlict start --config path/to/config.json 12 12 13 13 Specifying a configuration file explicitly overrides default configuration. 14 14
+1 -1
scripts/init/lib.php
··· 13 13 if (!$ok) { 14 14 echo 15 15 'FATAL ERROR: Unable to load the "Arcanist" library. '. 16 - 'Put "arcanist/" next to "phabricator/" on disk.'; 16 + 'Put "arcanist/" next to "phorge/" on disk.'; 17 17 echo "\n"; 18 18 19 19 exit(1);
+1 -1
src/applications/config/option/PhabricatorConfigOption.php
··· 77 77 'This configuration is locked and can not be edited from the web '. 78 78 'interface. Use %s in %s to edit it.', 79 79 phutil_tag('tt', array(), './bin/config'), 80 - phutil_tag('tt', array(), 'phabricator/')); 80 + phutil_tag('tt', array(), PlatformSymbols::getPlatformServerPath())); 81 81 } 82 82 83 83 public function addExample($value, $description) {
+2 -1
src/applications/metamta/management/PhabricatorMailManagementReceiveTestWorkflow.php
··· 181 181 $received->processReceivedMail(); 182 182 183 183 $console->writeErr( 184 - "%s\n\n phabricator/ $ ./bin/mail show-inbound --id %d\n\n", 184 + "%s\n\n %s $ ./bin/mail show-inbound --id %d\n\n", 185 185 pht('Mail received! You can view details by running this command:'), 186 + PlatformSymbols::getPlatformServerPath(), 186 187 $received->getID()); 187 188 } 188 189
+2 -1
src/applications/metamta/management/PhabricatorMailManagementSendTestWorkflow.php
··· 225 225 $mail->save(); 226 226 227 227 $console->writeErr( 228 - "%s\n\n phabricator/ $ ./bin/mail show-outbound --id %d\n\n", 228 + "%s\n\n %s $ ./bin/mail show-outbound --id %d\n\n", 229 229 pht('Mail sent! You can view details by running this command:'), 230 + PlatformSymbols::getPlatformServerPath(), 230 231 $mail->getID()); 231 232 } 232 233
+6 -3
src/applications/people/controller/PhabricatorPeopleDeleteController.php
··· 27 27 'To permanently destroy this user, run this command from the '. 28 28 'command line:')) 29 29 ->appendCommand( 30 - csprintf( 31 - 'phabricator/ $ ./bin/remove destroy %R', 32 - $user->getMonogram())) 30 + hsprintf( 31 + '<tt>%s $</tt> %s', 32 + PlatformSymbols::getPlatformServerPath(), 33 + csprintf( 34 + './bin/remove destroy %R', 35 + $user->getMonogram()))) 33 36 ->appendParagraph( 34 37 pht( 35 38 'Unless you have a very good reason to delete this user, consider '.
+2 -2
src/applications/transactions/bulk/PhabricatorEditEngineBulkJobType.php
··· 31 31 $parts[] = pht('To silence this edit, run this command:'); 32 32 33 33 $command = csprintf( 34 - 'phabricator/ $ ./bin/bulk make-silent --id %R', 34 + '%s $ ./bin/bulk make-silent --id %R', 35 + PlatformSymbols::getPlatformServerPath(), 35 36 $job->getID()); 36 - $command = (string)$command; 37 37 38 38 $parts[] = phutil_tag('tt', array(), $command); 39 39
+1 -1
src/infrastructure/events/PhabricatorAutoEventListener.php
··· 10 10 * 11 11 * All concrete subclasses of this class are automatically registered at 12 12 * startup. This allows it to be used with custom one-offs that can be dropped 13 - * into `phabricator/src/extensions/`. 13 + * into `phorge/src/extensions/`. 14 14 */ 15 15 abstract class PhabricatorAutoEventListener extends PhabricatorEventListener {}