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

Rebrand some CLI scripts

Summary: Refs T15006

Test Plan: invoke said scripts, see they still are.

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/D26348

Aviv Eyal fb346519 893ce653

+11 -11
+1 -1
scripts/cache/manage_cache.php
··· 8 8 $args->setTagline(pht('manage cache')); 9 9 $args->setSynopsis(<<<EOSYNOPSIS 10 10 **cache** __command__ [__options__] 11 - Manage Phabricator caches. 11 + Manage caches. 12 12 13 13 EOSYNOPSIS 14 14 );
+1 -1
scripts/daemon/manage_daemons.php
··· 10 10 $args->setTagline(pht('manage daemons')); 11 11 $args->setSynopsis(<<<EOSYNOPSIS 12 12 **phd** __command__ [__options__] 13 - Manage Phabricator daemons. 13 + Manage daemons. 14 14 15 15 EOSYNOPSIS 16 16 );
+1 -1
scripts/fact/manage_facts.php
··· 8 8 $args->setTagline(pht('manage fact configuration')); 9 9 $args->setSynopsis(<<<EOSYNOPSIS 10 10 **fact** __command__ [__options__] 11 - Manage and debug Phabricator data extraction, storage and 11 + Manage and debug data extraction, storage and 12 12 configuration used to compute statistics. 13 13 14 14 EOSYNOPSIS
+1 -1
scripts/files/manage_files.php
··· 8 8 $args->setTagline(pht('manage files')); 9 9 $args->setSynopsis(<<<EOSYNOPSIS 10 10 **files** __command__ [__options__] 11 - Manage Phabricator file storage. 11 + Manage file storage. 12 12 13 13 EOSYNOPSIS 14 14 );
+1 -1
scripts/mail/manage_mail.php
··· 8 8 $args->setTagline(pht('manage mail')); 9 9 $args->setSynopsis(<<<EOSYNOPSIS 10 10 **mail** __command__ [__options__] 11 - Manage Phabricator mail stuff. 11 + Manage mail stuff. 12 12 13 13 EOSYNOPSIS 14 14 );
+1 -1
scripts/repository/manage_repositories.php
··· 8 8 $args->setTagline(pht('manage repositories')); 9 9 $args->setSynopsis(<<<EOSYNOPSIS 10 10 **repository** __command__ [__options__] 11 - Manage and debug Phabricator repository configuration, tracking, 11 + Manage and debug Diffusion repository configuration, tracking, 12 12 discovery and import. 13 13 14 14 EOSYNOPSIS
+1 -1
scripts/search/manage_search.php
··· 8 8 $args->setTagline(pht('manage search')); 9 9 $args->setSynopsis(<<<EOSYNOPSIS 10 10 **search** __command__ [__options__] 11 - Manage Phabricator search index. 11 + Manage search index. 12 12 13 13 EOSYNOPSIS 14 14 );
+1 -1
scripts/setup/manage_audit.php
··· 8 8 $args->setTagline(pht('manage audits')); 9 9 $args->setSynopsis(<<<EOSYNOPSIS 10 10 **audit** __command__ [__options__] 11 - Manage Phabricator audits. 11 + Manage Diffusion audits. 12 12 13 13 EOSYNOPSIS 14 14 );
+1 -1
scripts/setup/manage_auth.php
··· 8 8 $args->setTagline(pht('manage authentication')); 9 9 $args->setSynopsis(<<<EOSYNOPSIS 10 10 **auth** __command__ [__options__] 11 - Manage Phabricator authentication configuration. 11 + Manage authentication configuration. 12 12 13 13 EOSYNOPSIS 14 14 );
+2 -2
scripts/setup/manage_config.php
··· 5 5 require_once $root.'/scripts/init/init-setup.php'; 6 6 7 7 $args = new PhutilArgumentParser($argv); 8 - $args->setTagline(pht('manage configuration')); 8 + $args->setTagline(pht('manage configurations')); 9 9 $args->setSynopsis(<<<EOSYNOPSIS 10 10 **config** __command__ [__options__] 11 - Manage Phabricator configuration. 11 + Manage configurations. 12 12 13 13 EOSYNOPSIS 14 14 );