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

Replace all phurl.io short URIs with target URIs

Summary:
As of February 2024, phurl.io (which is not run by Phorge.it) shows HTTP 503 errors instead of redirecting to the target URIs.

Thus replace any URIs pointing to phurl.io with the corresponding target URIs, based on the mapping listed on https://secure.phabricator.com/phurl/.

Closes T15746

Test Plan: Carefully read the diff.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15746

Differential Revision: https://we.phorge.it/D25543

+13 -13
+4 -4
src/applications/config/check/PhabricatorManualActivitySetupCheck.php
··· 59 59 phutil_tag( 60 60 'a', 61 61 array( 62 - 'href' => 'https://phurl.io/u/reindex', 62 + 'href' => 'https://secure.phabricator.com/T11932', 63 63 'target' => '_blank', 64 64 ), 65 - 'https://phurl.io/u/reindex')); 65 + 'https://secure.phabricator.com/T11932')); 66 66 67 67 $message[] = pht( 68 68 'After rebuilding the index, run this command to clear this setup '. ··· 128 128 phutil_tag( 129 129 'a', 130 130 array( 131 - 'href' => 'https://phurl.io/u/repoIdentities', 131 + 'href' => 'https://secure.phabricator.com/T12164', 132 132 'target' => '_blank', 133 133 ), 134 - 'https://phurl.io/u/repoIdentities')); 134 + 'https://secure.phabricator.com/T12164')); 135 135 136 136 $message[] = pht( 137 137 'After rebuilding repository identities, run this command to clear '.
+2 -2
src/applications/config/check/PhabricatorPHPPreflightSetupCheck.php
··· 18 18 'You are running PHP version %s. PHP versions between 7.0 and 7.1 '. 19 19 'are not supported'. 20 20 "\n\n". 21 - 'PHP removed reqiured signal handling features in '. 21 + 'PHP removed required signal handling features in '. 22 22 'PHP 7.0, and did not restore an equivalent mechanism until PHP 7.1.'. 23 23 "\n\n". 24 24 'Upgrade to PHP 7.1 or newer (recommended) or downgrade to an older '. ··· 30 30 ->setName(pht('PHP 7.0-7.1 Not Supported')) 31 31 ->setMessage($message) 32 32 ->addLink( 33 - 'https://phurl.io/u/php7', 33 + 'https://secure.phabricator.com/T12101', 34 34 pht('PHP 7 Compatibility Information')); 35 35 36 36 return;
+1 -1
src/applications/search/controller/PhabricatorApplicationSearchController.php
··· 854 854 $overheated_link = phutil_tag( 855 855 'a', 856 856 array( 857 - 'href' => 'https://phurl.io/u/overheated', 857 + 'href' => 'https://secure.phabricator.com/T13274', 858 858 'target' => '_blank', 859 859 ), 860 860 pht('Learn More'));
+2 -2
src/docs/user/configuration/configuring_inbound_email.diviner
··· 184 184 - Configure a mailer in `cluster.mailers` with your Mailgun API key. 185 185 186 186 Use of Mailgun is discouraged because of concerns that they may not be a 187 - trustworthy custodian of sensitive data. See <https://phurl.io/u/mailgun> for 188 - discussion and context. 187 + trustworthy custodian of sensitive data. 188 + See <https://secure.phabricator.com/T13669> for discussion and context. 189 189 190 190 Postmark Setup 191 191 ==============
+2 -2
src/docs/user/configuration/configuring_outbound_email.diviner
··· 222 222 |---------| 223 223 224 224 Use of Mailgun is discouraged because of concerns that they may not be a 225 - trustworthy custodian of sensitive data. See <https://phurl.io/u/mailgun> for 226 - discussion and context. 225 + trustworthy custodian of sensitive data. 226 + See <https://secure.phabricator.com/T13669> for discussion and context. 227 227 228 228 Mailgun is a third-party email delivery service. You can learn more at 229 229 <https://www.mailgun.com>. Mailgun is easy to configure and works well.
+1 -1
src/docs/user/userguide/multi_factor_auth.diviner
··· 106 106 an authorization code to enter into the prompt. 107 107 108 108 (WARNING) SMS is a very weak factor and can be compromised or intercepted. For 109 - details, see: <https://phurl.io/u/sms>. 109 + details, see: <https://secure.phabricator.com/T13241>. 110 110 111 111 112 112 Factor: Duo
+1 -1
support/startup/PhabricatorStartup.php
··· 577 577 self::didFatal( 578 578 'This HTTP request included a "Proxy:" header, poisoning the '. 579 579 'environment (CVE-2016-5385 / httpoxy). Declining to process this '. 580 - 'request. For details, see: https://phurl.io/u/httpoxy'); 580 + 'request. For details, see: https://secure.phabricator.com/T11359'); 581 581 } 582 582 } 583 583