Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/check/PhabricatorSetupCheckExtraConfig.php
| Show First 20 Lines • Show All 144 Lines • ▼ Show 20 Lines | $markup_reason = pht( | ||||
| 'Custom remarkup rules are now added by subclassing '. | 'Custom remarkup rules are now added by subclassing '. | ||||
| 'PhabricatorRemarkupCustomInlineRule or '. | 'PhabricatorRemarkupCustomInlineRule or '. | ||||
| 'PhabricatorRemarkupCustomBlockRule.'); | 'PhabricatorRemarkupCustomBlockRule.'); | ||||
| $session_reason = pht( | $session_reason = pht( | ||||
| 'Sessions now expire and are garbage collected rather than having an '. | 'Sessions now expire and are garbage collected rather than having an '. | ||||
| 'arbitrary concurrency limit.'); | 'arbitrary concurrency limit.'); | ||||
| $differential_field_reason = pht( | |||||
| 'All Differential fields are now managed through the configuration '. | |||||
| 'option "%s". Use that option to configure which fields are shown.', | |||||
| 'differential.fields'); | |||||
| $ancient_config += array( | $ancient_config += array( | ||||
| 'phid.external-loaders' => | 'phid.external-loaders' => | ||||
| pht( | pht( | ||||
| 'External loaders have been replaced. Extend `PhabricatorPHIDType` '. | 'External loaders have been replaced. Extend `PhabricatorPHIDType` '. | ||||
| 'to implement new PHID and handle types.'), | 'to implement new PHID and handle types.'), | ||||
| 'maniphest.custom-task-extensions-class' => | 'maniphest.custom-task-extensions-class' => | ||||
| pht( | pht( | ||||
| 'Maniphest fields are now loaded automatically. You can configure '. | 'Maniphest fields are now loaded automatically. You can configure '. | ||||
| Show All 16 Lines | $ancient_config += array( | ||||
| 'metamta.send-immediately' => pht( | 'metamta.send-immediately' => pht( | ||||
| 'Mail is now always delivered by the daemons.'), | 'Mail is now always delivered by the daemons.'), | ||||
| 'auth.sessions.conduit' => $session_reason, | 'auth.sessions.conduit' => $session_reason, | ||||
| 'auth.sessions.web' => $session_reason, | 'auth.sessions.web' => $session_reason, | ||||
| 'tokenizer.ondemand' => pht( | 'tokenizer.ondemand' => pht( | ||||
| 'Phabricator now manages typeahead strategies automatically.'), | 'Phabricator now manages typeahead strategies automatically.'), | ||||
| 'differential.revision-custom-detail-renderer' => pht( | 'differential.revision-custom-detail-renderer' => pht( | ||||
| 'Obsolete; use standard rendering events instead.'), | 'Obsolete; use standard rendering events instead.'), | ||||
| 'differential.show-host-field' => $differential_field_reason, | |||||
| 'differential.show-test-plan-field' => $differential_field_reason, | |||||
| ); | ); | ||||
| return $ancient_config; | return $ancient_config; | ||||
| } | } | ||||
| } | } | ||||