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

Fix some header formatting in `bin/storage probe`

Summary: Ref T9514. I missed these when I swapped out the console stuff recently.

Test Plan: Ran `bin/storage probe`, saw bold instead of escape sequences.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9514

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

+6 -6
+6 -6
src/infrastructure/storage/management/workflow/PhabricatorStorageManagementProbeWorkflow.php
··· 60 60 $overall); 61 61 62 62 $table->addRow(array( 63 - 'name' => phutil_console_format('**%s**', $db), 64 - 'size' => phutil_console_format('**%s**', $database_size), 65 - 'percentage' => phutil_console_format('**%s**', $database_percentage), 63 + 'name' => tsprintf('**%s**', $db), 64 + 'size' => tsprintf('**%s**', $database_size), 65 + 'percentage' => tsprintf('**%s**', $database_percentage), 66 66 )); 67 67 $data[$db] = isort($data[$db], '_totalSize'); 68 68 foreach ($data[$db] as $table_name => $info) { ··· 82 82 $overall, 83 83 $overall); 84 84 $table->addRow(array( 85 - 'name' => phutil_console_format('**%s**', pht('TOTAL')), 86 - 'size' => phutil_console_format('**%s**', $overall_size), 87 - 'percentage' => phutil_console_format('**%s**', $overall_percentage), 85 + 'name' => tsprintf('**%s**', pht('TOTAL')), 86 + 'size' => tsprintf('**%s**', $overall_size), 87 + 'percentage' => tsprintf('**%s**', $overall_percentage), 88 88 )); 89 89 90 90 $table->draw();