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

Show host information on setup issue screen

Summary: Ref T3780. Facebook has some environmental / itermittent stuff which would be easier to debug with host information on the setup issue screen.

Test Plan:
Checked both in-chrome and out-of-chrome versions of this screen, both looked reasonable.

{F56694}

Reviewers: wez, btrahan

Reviewed By: btrahan

CC: chad, aran

Maniphest Tasks: T3780

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

+31 -3
+18 -1
src/applications/config/view/PhabricatorSetupIssueView.php
··· 116 116 ), 117 117 $issue->getName()); 118 118 119 - return phutil_tag( 119 + $issue = phutil_tag( 120 120 'div', 121 121 array( 122 122 'class' => 'setup-issue', ··· 125 125 $name, 126 126 $description, 127 127 $next, 128 + )); 129 + 130 + $debug_info = phutil_tag( 131 + 'div', 132 + array( 133 + 'class' => 'setup-issue-debug', 134 + ), 135 + pht('Host: %s', php_uname('n'))); 136 + 137 + return phutil_tag( 138 + 'div', 139 + array( 140 + 'class' => 'setup-issue-shell', 141 + ), 142 + array( 143 + $issue, 144 + $debug_info, 128 145 )); 129 146 } 130 147
+13 -2
webroot/rsrc/css/application/config/setup-issue.css
··· 8 8 padding: 1em 0; 9 9 } 10 10 11 + .setup-issue-shell { 12 + max-width: 760px; 13 + margin: 15px auto; 14 + } 15 + 16 + 11 17 .setup-issue { 12 18 border: 1px solid #35393d; 13 - margin: 15px auto; 14 - max-width: 760px; 15 19 background: #ffffff; 16 20 box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25); 17 21 } ··· 95 99 margin: 1em auto; 96 100 list-style: circle; 97 101 } 102 + 103 + .setup-issue-debug { 104 + margin-top: 8px; 105 + padding: 4px; 106 + text-align: right; 107 + color: #666666; 108 + }