@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 static resource package definitions

Summary: Ref T13516. Differential got some new UI elements and behaviors, so update static resource package definitions.

Test Plan:
- Saw JS requests drop from 17 to 4.
- Saw CSS requests drop from 9 to 3.

(These won't quite match production since some JS/CSS is for DarkConsole.)

Maniphest Tasks: T13516

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

+56 -7
+30 -6
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'conpherence.pkg.css' => '3c8a0668', 10 + 'conpherence.pkg.css' => '0e3cf785', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '61b7e380', 13 - 'core.pkg.js' => 'fc49f65b', 14 - 'differential.pkg.css' => '9b5ee013', 15 - 'differential.pkg.js' => '1043ee5a', 12 + 'core.pkg.css' => '589cd2fe', 13 + 'core.pkg.js' => '49814bac', 14 + 'dark-console.pkg.js' => '187792c2', 15 + 'differential.pkg.css' => 'b3469b93', 16 + 'differential.pkg.js' => 'c8f88d74', 16 17 'diffusion.pkg.css' => '42c75c37', 17 18 'diffusion.pkg.js' => 'a98c0bf7', 18 19 'maniphest.pkg.css' => '35995d6d', ··· 2216 2217 ), 2217 2218 'packages' => array( 2218 2219 'conpherence.pkg.css' => array( 2219 - 'conpherence-durable-column-view', 2220 2220 'conpherence-menu-css', 2221 2221 'conpherence-color-css', 2222 2222 'conpherence-message-pane-css', ··· 2294 2294 'phabricator-feed-css', 2295 2295 'phabricator-dashboard-css', 2296 2296 'aphront-multi-column-view-css', 2297 + 'phui-curtain-object-ref-view-css', 2298 + 'phui-comment-form-css', 2299 + 'phui-head-thing-view-css', 2300 + 'conpherence-durable-column-view', 2301 + 'phui-button-bar-css', 2297 2302 ), 2298 2303 'core.pkg.js' => array( 2299 2304 'javelin-util', ··· 2380 2385 'javelin-behavior-aphlict-status', 2381 2386 'javelin-behavior-user-menu', 2382 2387 'phabricator-favicon', 2388 + 'javelin-behavior-phui-tab-group', 2389 + 'javelin-behavior-phui-submenu', 2390 + 'phuix-button-view', 2391 + 'javelin-behavior-comment-actions', 2392 + 'phuix-form-control-view', 2393 + 'phuix-autocomplete', 2394 + ), 2395 + 'dark-console.pkg.js' => array( 2396 + 'javelin-behavior-dark-console', 2397 + 'phabricator-darklog', 2398 + 'phabricator-darkmessage', 2383 2399 ), 2384 2400 'differential.pkg.css' => array( 2385 2401 'differential-core-view-css', ··· 2393 2409 'phabricator-content-source-view-css', 2394 2410 'inline-comment-summary-css', 2395 2411 'phui-inline-comment-view-css', 2412 + 'diff-tree-view-css', 2413 + 'phui-formation-view-css', 2396 2414 ), 2397 2415 'differential.pkg.js' => array( 2398 2416 'phabricator-drag-and-drop-file-upload', ··· 2406 2424 'phabricator-diff-inline', 2407 2425 'phabricator-diff-changeset', 2408 2426 'phabricator-diff-changeset-list', 2427 + 'phabricator-diff-tree-view', 2428 + 'phabricator-diff-path-view', 2429 + 'phuix-formation-view', 2430 + 'phuix-formation-column-view', 2431 + 'phuix-formation-flank-view', 2432 + 'javelin-behavior-diff-preview-link', 2409 2433 ), 2410 2434 'diffusion.pkg.css' => array( 2411 2435 'diffusion-icons-css',
+26 -1
resources/celerity/packages.php
··· 86 86 'javelin-behavior-aphlict-status', 87 87 'javelin-behavior-user-menu', 88 88 'phabricator-favicon', 89 + 'javelin-behavior-phui-tab-group', 90 + 'javelin-behavior-phui-submenu', 91 + 'phuix-button-view', 92 + 'javelin-behavior-comment-actions', 93 + 'phuix-form-control-view', 94 + 'phuix-autocomplete', 89 95 ), 90 96 'core.pkg.css' => array( 91 97 'phabricator-core-css', ··· 156 162 'phabricator-feed-css', 157 163 'phabricator-dashboard-css', 158 164 'aphront-multi-column-view-css', 165 + 'phui-curtain-object-ref-view-css', 166 + 'phui-comment-form-css', 167 + 'phui-head-thing-view-css', 168 + 169 + 'conpherence-durable-column-view', 170 + 'phui-button-bar-css', 159 171 ), 160 172 'conpherence.pkg.css' => array( 161 - 'conpherence-durable-column-view', 162 173 'conpherence-menu-css', 163 174 'conpherence-color-css', 164 175 'conpherence-message-pane-css', ··· 185 196 'phabricator-content-source-view-css', 186 197 'inline-comment-summary-css', 187 198 'phui-inline-comment-view-css', 199 + 'diff-tree-view-css', 200 + 'phui-formation-view-css', 188 201 ), 189 202 'differential.pkg.js' => array( 190 203 'phabricator-drag-and-drop-file-upload', ··· 201 214 'phabricator-diff-inline', 202 215 'phabricator-diff-changeset', 203 216 'phabricator-diff-changeset-list', 217 + 'phabricator-diff-tree-view', 218 + 'phabricator-diff-path-view', 219 + 220 + 'phuix-formation-view', 221 + 'phuix-formation-column-view', 222 + 'phuix-formation-flank-view', 223 + 'javelin-behavior-diff-preview-link', 204 224 ), 205 225 'diffusion.pkg.css' => array( 206 226 'diffusion-icons-css', ··· 216 236 'maniphest.pkg.js' => array( 217 237 'javelin-behavior-maniphest-batch-selector', 218 238 'javelin-behavior-maniphest-list-editor', 239 + ), 240 + 'dark-console.pkg.js' => array( 241 + 'javelin-behavior-dark-console', 242 + 'phabricator-darklog', 243 + 'phabricator-darkmessage', 219 244 ), 220 245 );