Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15446470
D19430.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D19430.id.diff
View Options
diff --git a/src/applications/differential/controller/DifferentialRevisionViewController.php b/src/applications/differential/controller/DifferentialRevisionViewController.php
--- a/src/applications/differential/controller/DifferentialRevisionViewController.php
+++ b/src/applications/differential/controller/DifferentialRevisionViewController.php
@@ -182,25 +182,31 @@
if ($large_warning) {
$count = $this->getChangesetCount();
- $warning = new PHUIInfoView();
- $warning->setTitle(pht('Large Diff'));
- $warning->setSeverity(PHUIInfoView::SEVERITY_WARNING);
- $warning->appendChild(hsprintf(
- '%s <strong>%s</strong>',
+ $expand_uri = $request_uri
+ ->alter('large', 'true')
+ ->setFragment('toc');
+
+ $message = array(
pht(
- 'This diff is large and affects %s files. '.
- 'You may load each file individually or ',
+ 'This large diff affects %s files. Files without inline '.
+ 'comments have been collapsed.',
new PhutilNumber($count)),
+ ' ',
phutil_tag(
- 'a',
- array(
- 'class' => 'button button-grey',
- 'href' => $request_uri
- ->alter('large', 'true')
- ->setFragment('toc'),
- ),
- pht('Show All Files Inline'))));
- $warning = $warning->render();
+ 'strong',
+ array(),
+ phutil_tag(
+ 'a',
+ array(
+ 'href' => $expand_uri,
+ ),
+ pht('Expand All Files'))),
+ );
+
+ $warning = id(new PHUIInfoView())
+ ->setTitle(pht('Large Diff'))
+ ->setSeverity(PHUIInfoView::SEVERITY_WARNING)
+ ->appendChild($message);
$old = array_select_keys($changesets, $old_ids);
$new = array_select_keys($changesets, $new_ids);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 28, 7:12 PM (1 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7225773
Default Alt Text
D19430.id.diff (1 KB)
Attached To
Mode
D19430: Mention the "inline comments" rule in the callout for "Large" diffs
Attached
Detach File
Event Timeline
Log In to Comment