Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15400103
D8690.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D8690.diff
View Options
diff --git a/src/workflow/ArcanistWhichWorkflow.php b/src/workflow/ArcanistWhichWorkflow.php
--- a/src/workflow/ArcanistWhichWorkflow.php
+++ b/src/workflow/ArcanistWhichWorkflow.php
@@ -43,9 +43,6 @@
public function getArguments() {
return array(
- 'any-author' => array(
- 'help' => "Show revisions by any author, not just you.",
- ),
'any-status' => array(
'help' => "Show committed and abandoned revisions.",
),
@@ -138,13 +135,9 @@
echo $commits."\n\n\n";
}
- $any_author = $this->getArgument('any-author');
$any_status = $this->getArgument('any-status');
$query = array(
- 'authors' => $any_author
- ? null
- : array($this->getUserPHID()),
'status' => $any_status
? 'status-any'
: 'status-open',
@@ -169,8 +162,34 @@
"working copy, a new revision will be **created** if you run ".
"'arc diff{$arg}'.\n\n"));
} else {
+ $other_author_phids = array();
foreach ($revisions as $revision) {
- echo ' D'.$revision['id'].' '.$revision['title']."\n";
+ if ($revision['authorPHID'] != $this->getUserPHID()) {
+ $other_author_phids[] = $revision['authorPHID'];
+ }
+ }
+
+ $other_authors = array();
+ if ($other_author_phids) {
+ $other_authors = $this->getConduit()->callMethodSynchronous(
+ 'user.query',
+ array(
+ 'phids' => $other_author_phids,
+ ));
+ $other_authors = ipull($other_authors, 'userName', 'phid');
+ }
+
+ foreach ($revisions as $revision) {
+ $title = $revision['title'];
+ $monogram = 'D'.$revision['id'];
+
+ if ($revision['authorPHID'] != $this->getUserPHID()) {
+ $author = $other_authors[$revision['authorPHID']];
+ echo pht(" %s (%s) %s\n", $monogram, $author, $title);
+ } else {
+ echo pht(" %s %s\n", $monogram, $title);
+ }
+
echo ' Reason: '.$revision['why']."\n";
echo "\n";
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 18, 9:44 AM (4 d, 4 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7229640
Default Alt Text
D8690.diff (2 KB)
Attached To
Mode
D8690: T4670 Remove the any-author flag from the which command, make any-author the default, and annotate the username of the owner of the revision.
Attached
Detach File
Event Timeline
Log In to Comment