Index: trunk/extensions/CodeReview/bulkStatusUpdate.php |
— | — | @@ -11,10 +11,10 @@ |
12 | 12 | public function __construct() { |
13 | 13 | parent::__construct(); |
14 | 14 | $this->mDescription = "Updates a range of revisions to a specific status"; |
15 | | - $this->addArg( 'repo', 'The name of the repo. Cannot be all. Repos:' |
16 | | - . implode( ", ", CodeRepository::getRepoList() ) ); |
| 15 | + $this->addArg( 'repo', 'The name of the repo. Cannot be all.' ); |
17 | 16 | $this->addArg( 'revisions', "The revisions to set status for. Format: start:end" ); |
18 | | - $this->addArg( 'status', "Code Status: " . implode( ", ", CodeRevision::getPossibleStates() ) ); |
| 17 | + $this->addArg( 'status', "Code States: 'new', 'fixme', 'reverted', " |
| 18 | + . "'resolved', 'ok', 'verified', 'deferred', 'old'" ); |
19 | 19 | $this->addArg( 'user', "Username for whom to accredit the state changes to." . |
20 | 20 | "The User needs to have the 'codereview-set-status' right" ); |
21 | 21 | } |