Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14039021
D10550.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D10550.diff
View Options
diff --git a/src/applications/releeph/application/PhabricatorReleephApplication.php b/src/applications/releeph/application/PhabricatorReleephApplication.php
--- a/src/applications/releeph/application/PhabricatorReleephApplication.php
+++ b/src/applications/releeph/application/PhabricatorReleephApplication.php
@@ -18,11 +18,8 @@
return 'releeph';
}
- public function isInstalled() {
- if (PhabricatorEnv::getEnvConfig('releeph.installed')) {
- return parent::isInstalled();
- }
- return false;
+ public function isPrototype() {
+ return true;
}
public function getRoutes() {
diff --git a/src/applications/releeph/config/PhabricatorReleephApplicationConfigOptions.php b/src/applications/releeph/config/PhabricatorReleephApplicationConfigOptions.php
--- a/src/applications/releeph/config/PhabricatorReleephApplicationConfigOptions.php
+++ b/src/applications/releeph/config/PhabricatorReleephApplicationConfigOptions.php
@@ -42,19 +42,6 @@
$custom_field_type = 'custom:PhabricatorCustomFieldConfigOptionType';
return array(
- $this->newOption('releeph.installed', 'bool', false)
- ->setSummary(pht('Enable the Releeph application.'))
- ->setDescription(
- pht(
- 'Releeph, a tool for managing release branches, will eventually '.
- 'fit in to the Phabricator suite as a general purpose tool. '.
- 'However Releeph is currently unstable in multiple ways that may '.
- 'not migrate properly for you: the code is still in alpha stage '.
- 'of design, the storage format is likely to change in unexpected '.
- 'ways, and the workflows presented are very specific to a core '.
- 'set of alpha testers at Facebook. For the time being you are '.
- 'strongly discouraged from relying on Releeph being at all '.
- 'stable.')),
$this->newOption('releeph.fields', $custom_field_type, $default)
->setCustomData('ReleephFieldSpecification'),
$this->newOption(
diff --git a/src/infrastructure/testing/PhabricatorTestCase.php b/src/infrastructure/testing/PhabricatorTestCase.php
--- a/src/infrastructure/testing/PhabricatorTestCase.php
+++ b/src/infrastructure/testing/PhabricatorTestCase.php
@@ -116,9 +116,6 @@
'notification.enabled',
false);
- // TODO: Remove this when we remove "releeph.installed".
- $this->env->overrideEnvConfig('releeph.installed', true);
-
$this->env->overrideEnvConfig(
'phabricator.base-uri',
'http://phabricator.example.com');
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Nov 12, 3:18 AM (1 w, 6 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6736604
Default Alt Text
D10550.diff (2 KB)
Attached To
Mode
D10550: Make Releeph a normal prototype application
Attached
Detach File
Event Timeline
Log In to Comment