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

Provide an AphrontController implementation of willSendResponse()

Summary: This is required by Aphront now but not given a default implementation in the base class.

Test Plan: CORGI sites now work.

Reviewers: chad

Reviewed By: chad

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

+10 -6
+5 -5
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '7d2aec87', 10 + 'core.pkg.css' => 'e9f745e2', 11 11 'core.pkg.js' => '47dc9ebb', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '2de124c9', ··· 20 20 'rsrc/css/aphront/dark-console.css' => '6378ef3d', 21 21 'rsrc/css/aphront/dialog-view.css' => 'fe58b18d', 22 22 'rsrc/css/aphront/lightbox-attachment.css' => '7acac05d', 23 - 'rsrc/css/aphront/list-filter-view.css' => 'aa5ffcb9', 23 + 'rsrc/css/aphront/list-filter-view.css' => '5d6f0526', 24 24 'rsrc/css/aphront/multi-column.css' => 'fd18389d', 25 25 'rsrc/css/aphront/notification.css' => '9c279160', 26 26 'rsrc/css/aphront/panel-view.css' => '8427b78d', ··· 104 104 'rsrc/css/application/tokens/tokens.css' => '3d0f239e', 105 105 'rsrc/css/application/uiexample/example.css' => '528b19de', 106 106 'rsrc/css/core/core.css' => 'a76cefc9', 107 - 'rsrc/css/core/remarkup.css' => '1c4ac273', 107 + 'rsrc/css/core/remarkup.css' => 'ef286a6e', 108 108 'rsrc/css/core/syntax.css' => '9fd11da8', 109 109 'rsrc/css/core/z-index.css' => '57ddcaa2', 110 110 'rsrc/css/diviner/diviner-shared.css' => '5a337049', ··· 493 493 'aphront-bars' => '231ac33c', 494 494 'aphront-dark-console-css' => '6378ef3d', 495 495 'aphront-dialog-view-css' => 'fe58b18d', 496 - 'aphront-list-filter-view-css' => 'aa5ffcb9', 496 + 'aphront-list-filter-view-css' => '5d6f0526', 497 497 'aphront-multi-column-view-css' => 'fd18389d', 498 498 'aphront-panel-view-css' => '8427b78d', 499 499 'aphront-table-view-css' => 'e3632cc9', ··· 737 737 'phabricator-object-selector-css' => '85ee8ce6', 738 738 'phabricator-phtize' => 'd254d646', 739 739 'phabricator-prefab' => '6920d200', 740 - 'phabricator-remarkup-css' => '1c4ac273', 740 + 'phabricator-remarkup-css' => 'ef286a6e', 741 741 'phabricator-search-results-css' => '7dea472c', 742 742 'phabricator-shaped-request' => '7cbe244b', 743 743 'phabricator-side-menu-view-css' => 'bec2458e',
+4
src/aphront/AphrontController.php
··· 37 37 'processRequest()')); 38 38 } 39 39 40 + public function willSendResponse(AphrontResponse $response) { 41 + return $response; 42 + } 43 + 40 44 final public function setRequest(AphrontRequest $request) { 41 45 $this->request = $request; 42 46 return $this;
+1 -1
webroot/rsrc/css/aphront/list-filter-view.css
··· 39 39 padding: 0 0 4px 4px; 40 40 } 41 41 42 - /* When a list filter view contains two consecuitive forms, lay them out 42 + /* When a list filter view contains two consecutive forms, lay them out 43 43 without much white space in between them so they look more contiugous. At 44 44 the time of writing, this is used only in the Diffusion repository search 45 45 UI. */