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

Linkify Registration Email

Summary: Missed this in previous pass. Send these as links in HTML emails.

Test Plan: Register a new user that nees approval.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

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

+16 -16
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '59173e43', 10 + 'core.pkg.css' => '5ae77fb9', 11 11 'core.pkg.js' => 'cbdbd552', 12 12 'darkconsole.pkg.js' => 'df001cab', 13 13 'differential.pkg.css' => '8af45893', ··· 126 126 'rsrc/css/phui/phui-document.css' => 'a5615198', 127 127 'rsrc/css/phui/phui-feed-story.css' => '55dc7732', 128 128 'rsrc/css/phui/phui-fontkit.css' => '9c3d2dce', 129 - 'rsrc/css/phui/phui-form-view.css' => 'a2d72756', 129 + 'rsrc/css/phui/phui-form-view.css' => 'a3efd18c', 130 130 'rsrc/css/phui/phui-form.css' => 'b78ec020', 131 131 'rsrc/css/phui/phui-header-view.css' => '39594ac0', 132 132 'rsrc/css/phui/phui-icon.css' => 'b4963a4f', ··· 770 770 'phui-font-icon-base-css' => '3dad2ae3', 771 771 'phui-fontkit-css' => '9c3d2dce', 772 772 'phui-form-css' => 'b78ec020', 773 - 'phui-form-view-css' => 'a2d72756', 773 + 'phui-form-view-css' => 'a3efd18c', 774 774 'phui-header-view-css' => '39594ac0', 775 775 'phui-icon-view-css' => 'b4963a4f', 776 776 'phui-image-mask-css' => '5a8b09c8',
+2 -2
src/__phutil_library_map__.php
··· 105 105 'AphrontFormDividerControl' => 'view/form/control/AphrontFormDividerControl.php', 106 106 'AphrontFormFileControl' => 'view/form/control/AphrontFormFileControl.php', 107 107 'AphrontFormImageControl' => 'view/form/control/AphrontFormImageControl.php', 108 - 'AphrontFormInsetView' => 'view/form/AphrontFormInsetView.php', 109 108 'AphrontFormMarkupControl' => 'view/form/control/AphrontFormMarkupControl.php', 110 109 'AphrontFormPasswordControl' => 'view/form/control/AphrontFormPasswordControl.php', 111 110 'AphrontFormPolicyControl' => 'view/form/control/AphrontFormPolicyControl.php', ··· 1107 1106 'PHUIFeedStoryView' => 'view/phui/PHUIFeedStoryView.php', 1108 1107 'PHUIFormDividerControl' => 'view/form/control/PHUIFormDividerControl.php', 1109 1108 'PHUIFormFreeformDateControl' => 'view/form/control/PHUIFormFreeformDateControl.php', 1109 + 'PHUIFormInsetView' => 'view/form/PHUIFormInsetView.php', 1110 1110 'PHUIFormLayoutView' => 'view/form/PHUIFormLayoutView.php', 1111 1111 'PHUIFormMultiSubmitControl' => 'view/form/control/PHUIFormMultiSubmitControl.php', 1112 1112 'PHUIFormPageView' => 'view/form/PHUIFormPageView.php', ··· 3099 3099 'AphrontFormDividerControl' => 'AphrontFormControl', 3100 3100 'AphrontFormFileControl' => 'AphrontFormControl', 3101 3101 'AphrontFormImageControl' => 'AphrontFormControl', 3102 - 'AphrontFormInsetView' => 'AphrontView', 3103 3102 'AphrontFormMarkupControl' => 'AphrontFormControl', 3104 3103 'AphrontFormPasswordControl' => 'AphrontFormControl', 3105 3104 'AphrontFormPolicyControl' => 'AphrontFormControl', ··· 4166 4165 'PHUIFeedStoryView' => 'AphrontView', 4167 4166 'PHUIFormDividerControl' => 'AphrontFormControl', 4168 4167 'PHUIFormFreeformDateControl' => 'AphrontFormControl', 4168 + 'PHUIFormInsetView' => 'AphrontView', 4169 4169 'PHUIFormLayoutView' => 'AphrontView', 4170 4170 'PHUIFormMultiSubmitControl' => 'AphrontFormControl', 4171 4171 'PHUIFormPageView' => 'AphrontView',
+2 -2
src/applications/auth/controller/PhabricatorAuthRegisterController.php
··· 558 558 'administrator.', 559 559 $user->getUsername())); 560 560 561 - $body->addTextSection( 561 + $body->addLinkSection( 562 562 pht('APPROVAL QUEUE'), 563 563 PhabricatorEnv::getProductionURI( 564 564 '/people/query/approval/')); 565 565 566 - $body->addTextSection( 566 + $body->addLinkSection( 567 567 pht('DISABLE APPROVAL QUEUE'), 568 568 PhabricatorEnv::getProductionURI( 569 569 '/config/edit/auth.require-approval/'));
+2 -2
src/applications/herald/controller/HeraldRuleController.php
··· 169 169 phutil_tag('strong', array(), $content_type_name)))) 170 170 ->appendChild($trigger_object_control) 171 171 ->appendChild( 172 - id(new AphrontFormInsetView()) 172 + id(new PHUIFormInsetView()) 173 173 ->setTitle(pht('Conditions')) 174 174 ->setRightButton(javelin_tag( 175 175 'a', ··· 190 190 ), 191 191 ''))) 192 192 ->appendChild( 193 - id(new AphrontFormInsetView()) 193 + id(new PHUIFormInsetView()) 194 194 ->setTitle(pht('Action')) 195 195 ->setRightButton(javelin_tag( 196 196 'a',
+1 -1
src/applications/maniphest/controller/ManiphestBatchEditController.php
··· 118 118 phutil_tag('p', array(), pht('These tasks will be edited:'))); 119 119 $form->appendChild($list); 120 120 $form->appendChild( 121 - id(new AphrontFormInsetView()) 121 + id(new PHUIFormInsetView()) 122 122 ->setTitle('Actions') 123 123 ->setRightButton(javelin_tag( 124 124 'a',
+1 -1
src/applications/owners/controller/PhabricatorOwnersEditController.php
··· 211 211 ? 'enabled' 212 212 : 'disabled')) 213 213 ->appendChild( 214 - id(new AphrontFormInsetView()) 214 + id(new PHUIFormInsetView()) 215 215 ->setTitle(pht('Paths')) 216 216 ->addDivAttributes(array('id' => 'path-editor')) 217 217 ->setRightButton(javelin_tag(
+1 -1
src/applications/policy/controller/PhabricatorPolicyEditController.php
··· 153 153 'sigil' => 'rules', 154 154 ))) 155 155 ->appendChild( 156 - id(new AphrontFormInsetView()) 156 + id(new PHUIFormInsetView()) 157 157 ->setTitle(pht('Rules')) 158 158 ->setRightButton( 159 159 javelin_tag(
+2 -2
src/view/form/AphrontFormInsetView.php src/view/form/PHUIFormInsetView.php
··· 1 1 <?php 2 2 3 - final class AphrontFormInsetView extends AphrontView { 3 + final class PHUIFormInsetView extends AphrontView { 4 4 5 5 private $title; 6 6 private $description; ··· 83 83 } 84 84 85 85 $div_attributes = $this->divAttributes; 86 - $classes = array('aphront-form-inset'); 86 + $classes = array('phui-form-inset'); 87 87 if (isset($div_attributes['class'])) { 88 88 $classes[] = $div_attributes['class']; 89 89 }
+2 -2
webroot/rsrc/css/phui/phui-form-view.css
··· 251 251 position: relative; 252 252 } 253 253 254 - .aphront-form-inset { 254 + .phui-form-inset { 255 255 margin: 0 0 8px; 256 256 padding: 8px; 257 257 background: #fff; 258 258 border: 1px solid #d4dae0; 259 259 } 260 260 261 - .aphront-form-inset h1 { 261 + .phui-form-inset h1 { 262 262 color: {$greytext}; 263 263 font-weight: normal; 264 264 padding-bottom: 8px;