From e93726cb3b33109b8db675c1ea11b3d905ef2c5f Mon Sep 17 00:00:00 2001 From: epriestley Date: Tue, 4 Jun 2013 15:29:39 -0700 Subject: [PATCH] Fix some Arcanist lint warnings Summary: Lint. See https://github.com/facebook/phabricator/pull/332 Test Plan: Lint. Reviewers: chad Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D6126 --- .../spelling/ArcanistSpellingDefaultData.php | 4 +++ src/workflow/ArcanistCommitWorkflow.php | 2 +- src/workflow/ArcanistFeatureWorkflow.php | 2 +- src/workflow/ArcanistTasksWorkflow.php | 25 +++++++++++-------- 4 files changed, 21 insertions(+), 12 deletions(-) diff --git a/src/lint/linter/spelling/ArcanistSpellingDefaultData.php b/src/lint/linter/spelling/ArcanistSpellingDefaultData.php index 6bd9091d..5c69a9f7 100644 --- a/src/lint/linter/spelling/ArcanistSpellingDefaultData.php +++ b/src/lint/linter/spelling/ArcanistSpellingDefaultData.php @@ -363,6 +363,7 @@ class ArcanistSpellingDefaultData { "ploting" => "plotting", "posible" => "possible", "powerfull" => "powerful", + "preceed" => "precede", "preceeded" => "preceded", "preceeding" => "preceding", "precendence" => "precedence", @@ -463,7 +464,10 @@ class ArcanistSpellingDefaultData { "suppoted" => "supported", "suppported" => "supported", "suppport" => "support", + "supress" => "suppress", + "surpress" => "suppress", "surpresses" => "suppresses", + "surpesses" => "suppresses", "suspicously" => "suspiciously", "synax" => "syntax", "synchonized" => "synchronized", diff --git a/src/workflow/ArcanistCommitWorkflow.php b/src/workflow/ArcanistCommitWorkflow.php index 9570c94d..45243ac9 100644 --- a/src/workflow/ArcanistCommitWorkflow.php +++ b/src/workflow/ArcanistCommitWorkflow.php @@ -149,7 +149,7 @@ EOTEXT $files, $tmp_file); - // make sure to specify LANG on non-windows systems to surpress any fancy + // make sure to specify LANG on non-windows systems to suppress any fancy // warnings; see @{method:getSVNLangEnvVar}. if (!phutil_is_windows()) { $command = csprintf('LANG=%C %C', $this->getSVNLangEnvVar(), $command); diff --git a/src/workflow/ArcanistFeatureWorkflow.php b/src/workflow/ArcanistFeatureWorkflow.php index e1601d08..bc216ca3 100644 --- a/src/workflow/ArcanistFeatureWorkflow.php +++ b/src/workflow/ArcanistFeatureWorkflow.php @@ -181,7 +181,7 @@ EOTEXT $futures[$branch['name']] = $repository_api->execFutureLocal( "log -l 1 --template '%C' -r %s", "{node}\1{date|hgdate}\1{p1node}\1{desc|firstline}\1{desc}", - hgsprintf($branch['name'])); + hgsprintf('%s', $branch['name'])); } else { // NOTE: "-s" is an option deep in git's diff argument parser that diff --git a/src/workflow/ArcanistTasksWorkflow.php b/src/workflow/ArcanistTasksWorkflow.php index 1e08a0d6..5aadd2cf 100644 --- a/src/workflow/ArcanistTasksWorkflow.php +++ b/src/workflow/ArcanistTasksWorkflow.php @@ -53,7 +53,7 @@ EOTEXT "Only show tasks assigned to the given username, ". "also accepts @all to show all, default is you.", 'conflict' => array( - "unassigned" => "--owner supresses unassigned", + "unassigned" => "--owner suppresses unassigned", ), ), 'order' => array( @@ -83,16 +83,16 @@ EOTEXT $unassigned = $this->getArgument('unassigned'); if ($owner) { - $ownerPHID = $this->findOwnerPhid($owner); + $owner_phid = $this->findOwnerPhid($owner); } elseif ($unassigned) { - $ownerPHID = null; + $owner_phid = null; } else { - $ownerPHID = $this->getUserPHID(); + $owner_phid = $this->getUserPHID(); } $this->tasks = $this->loadManiphestTasks( ($status == 'all' ? 'any' : $status), - $ownerPHID, + $owner_phid, $order, $limit); @@ -225,32 +225,37 @@ EOTEXT echo $table; } - private function findOwnerPhid($owner) { + private function findOwnerPHID($owner) { $conduit = $this->getConduit(); + $owner_phid = $conduit->callMethodSynchronous( 'user.find', array( 'aliases' => array($owner), )); - return (isset($owner_phid[$owner])?$owner_phid[$owner]:false); + + return idx($owner_phid, $owner); } private function loadManiphestTasks($status, $owner_phid, $order, $limit) { $conduit = $this->getConduit(); $find_params = array(); - if ($owner_phid !== false) { + if ($owner_phid !== null) { $find_params['ownerPHIDs'] = array($owner_phid); } + if ($limit !== false) { $find_params['limit'] = $limit; } - $find_params['order'] = ($order?"order-".$order:"order-priority"); - $find_params['status'] = ($status?"status-".$status:"status-open"); + + $find_params['order'] = ($order ? "order-".$order : "order-priority"); + $find_params['status'] = ($status ? "status-".$status : "status-open"); $tasks = $conduit->callMethodSynchronous( 'maniphest.find', $find_params); + return $tasks; }