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

Update daemon status icons to FontAwesome

Summary: Fixes T5400. Couple of these were missed.

Test Plan: Forced daemons into all statuses, viewed icons.

Reviewers: chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T5400

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

+4 -4
+4 -4
src/applications/daemon/view/PhabricatorDaemonLogListView.php
··· 41 41 pht( 42 42 'This daemon is lost or exited uncleanly, and is presumed '. 43 43 'dead.')); 44 - $item->addIcon('delete', pht('Dead')); 44 + $item->addIcon('fa-times grey', pht('Dead')); 45 45 break; 46 46 case PhabricatorDaemonLog::STATUS_EXITED: 47 47 $item->setDisabled(true); 48 48 $item->addAttribute(pht('This daemon exited cleanly.')); 49 - $item->addIcon('enable-grey', pht('Exited')); 49 + $item->addIcon('fa-check grey', pht('Exited')); 50 50 break; 51 51 case PhabricatorDaemonLog::STATUS_WAIT: 52 52 $item->setBarColor('blue'); ··· 54 54 pht( 55 55 'This daemon encountered an error recently and is waiting a '. 56 56 'moment to restart.')); 57 - $item->addIcon('perflab-grey', pht('Waiting')); 57 + $item->addIcon('fa-clock-o grey', pht('Waiting')); 58 58 break; 59 59 case PhabricatorDaemonLog::STATUS_UNKNOWN: 60 60 default: ··· 63 63 pht( 64 64 'This daemon has not reported its status recently. It may '. 65 65 'have exited uncleanly.')); 66 - $item->addIcon('warning', pht('Unknown')); 66 + $item->addIcon('fa-exclamation-circle', pht('Unknown')); 67 67 break; 68 68 } 69 69