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

Link Timeline image to profile

Summary: Ref T9336. Links the timeline photo to user profile. Presume this always exists?

Test Plan: Review a few timelines, click on heads.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T9336

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

+6 -4
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'a11c3643', 10 + 'core.pkg.css' => 'c65b251d', 11 11 'core.pkg.js' => '47dc9ebb', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '2de124c9', ··· 147 147 'rsrc/css/phui/phui-status.css' => '888cedb8', 148 148 'rsrc/css/phui/phui-tag-view.css' => '402691cc', 149 149 'rsrc/css/phui/phui-text.css' => 'cf019f54', 150 - 'rsrc/css/phui/phui-timeline-view.css' => 'f1bccf73', 150 + 'rsrc/css/phui/phui-timeline-view.css' => '2efceff8', 151 151 'rsrc/css/phui/phui-two-column-view.css' => '39ecafb1', 152 152 'rsrc/css/phui/phui-workboard-view.css' => '6704d68d', 153 153 'rsrc/css/phui/phui-workpanel-view.css' => 'adec7699', ··· 797 797 'phui-tag-view-css' => '402691cc', 798 798 'phui-text-css' => 'cf019f54', 799 799 'phui-theme-css' => '6b451f24', 800 - 'phui-timeline-view-css' => 'f1bccf73', 800 + 'phui-timeline-view-css' => '2efceff8', 801 801 'phui-two-column-view-css' => '39ecafb1', 802 802 'phui-workboard-view-css' => '6704d68d', 803 803 'phui-workpanel-view-css' => 'adec7699',
+2 -1
src/view/phui/PHUITimelineEventView.php
··· 374 374 $badges = null; 375 375 if ($image_uri) { 376 376 $image = phutil_tag( 377 - 'div', 377 + ($this->userHandle->getURI()) ? 'a' : 'div', 378 378 array( 379 379 'style' => 'background-image: url('.$image_uri.')', 380 380 'class' => 'phui-timeline-image', 381 + 'href' => $this->userHandle->getURI(), 381 382 ), 382 383 ''); 383 384 if ($this->badges) {
+1
webroot/rsrc/css/phui/phui-timeline-view.css
··· 102 102 border-radius: 3px; 103 103 box-shadow: {$borderinset}; 104 104 background-size: 100%; 105 + display: block; 105 106 } 106 107 107 108 .device-desktop .phui-timeline-major-event .phui-timeline-image {