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

Make loading large changesets slightly easier

Summary: Fixes T3942, turns the load links into buttons.

Test Plan: Set my limit to 1, test page.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T3942

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

+5 -3
+3 -2
src/applications/differential/controller/DifferentialRevisionViewController.php
··· 145 145 $warning->appendChild(hsprintf( 146 146 '%s <strong>%s</strong>', 147 147 pht( 148 - 'This diff is very large and affects %s files. Load each file '. 149 - 'individually.', 148 + 'This diff is very large and affects %s files. '. 149 + 'You may load each file individually or ', 150 150 new PhutilNumber($count)), 151 151 phutil_tag( 152 152 'a', 153 153 array( 154 + 'class' => 'button grey', 154 155 'href' => $request_uri 155 156 ->alter('large', 'true') 156 157 ->setFragment('toc'),
+2 -1
src/applications/differential/view/DifferentialChangesetListView.php
··· 175 175 $load = javelin_tag( 176 176 'a', 177 177 array( 178 + 'class' => 'button grey', 178 179 'href' => '#'.$uniq_id, 179 180 'sigil' => 'differential-load', 180 181 'meta' => array( ··· 183 184 ), 184 185 'mustcapture' => true, 185 186 ), 186 - pht('Load')); 187 + pht('Load File')); 187 188 } 188 189 $detail->appendChild( 189 190 phutil_tag(