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

Don't link object monograms in object graphs

Summary: Ref T4788.

Test Plan: {F1708372}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T4788

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

+25 -16
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'd04e6f67', 10 + 'core.pkg.css' => '55d9bb83', 11 11 'core.pkg.js' => 'f2139810', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '3e81ae60', ··· 25 25 'rsrc/css/aphront/notification.css' => '3f6c89c9', 26 26 'rsrc/css/aphront/panel-view.css' => '8427b78d', 27 27 'rsrc/css/aphront/phabricator-nav-view.css' => 'ac79a758', 28 - 'rsrc/css/aphront/table-view.css' => 'aeb66852', 28 + 'rsrc/css/aphront/table-view.css' => '8df59783', 29 29 'rsrc/css/aphront/tokenizer.css' => '056da01b', 30 30 'rsrc/css/aphront/tooltip.css' => '1a07aea8', 31 31 'rsrc/css/aphront/typeahead-browse.css' => '8904346a', ··· 536 536 'aphront-list-filter-view-css' => '5d6f0526', 537 537 'aphront-multi-column-view-css' => 'fd18389d', 538 538 'aphront-panel-view-css' => '8427b78d', 539 - 'aphront-table-view-css' => 'aeb66852', 539 + 'aphront-table-view-css' => '8df59783', 540 540 'aphront-tokenizer-control-css' => '056da01b', 541 541 'aphront-tooltip-css' => '1a07aea8', 542 542 'aphront-typeahead-control-css' => 'd4f16145',
+8 -6
src/infrastructure/graph/DifferentialRevisionGraph.php
··· 41 41 array( 42 42 'href' => $object->getURI(), 43 43 ), 44 - array( 45 - $object->getMonogram(), 46 - ' ', 47 - $object->getTitle(), 48 - )); 44 + $object->getTitle()); 45 + 46 + $link = array( 47 + $object->getMonogram(), 48 + ' ', 49 + $link, 50 + ); 49 51 } else { 50 52 $status = null; 51 53 $author = null; ··· 74 76 'threads', 75 77 'graph-status', 76 78 null, 77 - 'wide object-link', 79 + 'wide pri object-link', 78 80 )); 79 81 } 80 82
+8 -6
src/infrastructure/graph/ManiphestTaskGraph.php
··· 54 54 array( 55 55 'href' => $object->getURI(), 56 56 ), 57 - array( 58 - $object->getMonogram(), 59 - ' ', 60 - $object->getTitle(), 61 - )); 57 + $object->getTitle()); 58 + 59 + $link = array( 60 + $object->getMonogram(), 61 + ' ', 62 + $link, 63 + ); 62 64 } else { 63 65 $status = null; 64 66 $assigned = null; ··· 87 89 'threads', 88 90 'graph-status', 89 91 null, 90 - 'wide object-link', 92 + 'wide pri object-link', 91 93 )); 92 94 } 93 95
+6 -1
webroot/rsrc/css/aphront/table-view.css
··· 228 228 position: static; 229 229 } 230 230 231 + .aphront-table-view tr.closed td.object-link, 232 + .aphront-table-view tr.alt-closed td.object-link { 233 + text-decoration: line-through; 234 + color: rgba({$alphablack}, 0.5); 235 + } 236 + 231 237 .aphront-table-view tr.closed td.object-link a, 232 238 .aphront-table-view tr.alt-closed td.object-link a { 233 - text-decoration: line-through; 234 239 color: rgba({$alphablack}, 0.5); 235 240 } 236 241