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

Improve `phd` help

Summary: Fixes T3680. One description was wrong, and clean up some of the other stuff.

Test Plan: Ran `phd`.

Reviewers: btrahan, Korvin

Reviewed By: Korvin

CC: aran, jifriedman, Korvin

Maniphest Tasks: T3680

Differential Revision: https://secure.phabricator.com/D6683

+14 -3
+5 -1
src/applications/daemon/management/PhabricatorDaemonManagementDebugWorkflow.php
··· 10 10 public function didConstruct() { 11 11 $this 12 12 ->setName('debug') 13 - ->setSynopsis(pht('Show a list of available daemons.')) 13 + ->setExamples('**debug** __daemon__') 14 + ->setSynopsis( 15 + pht( 16 + 'Start __daemon__ in the foreground and print large volumes of '. 17 + 'diagnostic information to the console.')) 14 18 ->setArguments( 15 19 array( 16 20 array(
+4 -1
src/applications/daemon/management/PhabricatorDaemonManagementLaunchWorkflow.php
··· 10 10 public function didConstruct() { 11 11 $this 12 12 ->setName('launch') 13 - ->setSynopsis(pht('Show a list of available daemons.')) 13 + ->setExamples('**launch** [n] __daemon__ [options]') 14 + ->setSynopsis(pht( 15 + 'Start a specific __daemon__, or __n__ copies of a specific '. 16 + '__daemon__.')) 14 17 ->setArguments( 15 18 array( 16 19 array(
+5 -1
src/applications/daemon/management/PhabricatorDaemonManagementLogWorkflow.php
··· 6 6 public function didConstruct() { 7 7 $this 8 8 ->setName('log') 9 - ->setSynopsis(pht('Print the log for a daemon.')) 9 + ->setExamples('**log** __id__') 10 + ->setSynopsis( 11 + pht( 12 + 'Print the log for a daemon, identified by ID. You can get the '. 13 + 'ID for a daemon from the Daemon Console in the web interface.')) 10 14 ->setArguments( 11 15 array( 12 16 array(