From 6bbcbb22e999991ee2715bd39ba8c5d8264bdb36 Mon Sep 17 00:00:00 2001 From: blizzz Date: Thu, 4 Aug 2016 19:17:13 +0200 Subject: [PATCH 1/2] Correct name in Console Application.php see changes :) --- lib/private/Console/Application.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/private/Console/Application.php b/lib/private/Console/Application.php index b3e7003c82cba..cad16a070c8dc 100644 --- a/lib/private/Console/Application.php +++ b/lib/private/Console/Application.php @@ -88,10 +88,10 @@ public function loadCommands(InputInterface $input, OutputInterface $output) { require_once __DIR__ . '/../../../core/register_command.php'; if ($this->config->getSystemValue('installed', false)) { if (\OCP\Util::needUpgrade()) { - $output->writeln("ownCloud or one of the apps require upgrade - only a limited number of commands are available"); + $output->writeln("Nextcloud or one of the apps require upgrade - only a limited number of commands are available"); $output->writeln("You may use your browser or the occ upgrade command to do the upgrade"); } elseif ($this->config->getSystemValue('maintenance', false)) { - $output->writeln("ownCloud is in maintenance mode - no app have been loaded"); + $output->writeln("Nextcloud is in maintenance mode - no app have been loaded"); } else { OC_App::loadApps(); foreach (\OC::$server->getAppManager()->getInstalledApps() as $app) { @@ -107,7 +107,7 @@ public function loadCommands(InputInterface $input, OutputInterface $output) { } } } else { - $output->writeln("ownCloud is not installed - only a limited number of commands are available"); + $output->writeln("Nextcloud is not installed - only a limited number of commands are available"); } $input = new ArgvInput(); if ($input->getFirstArgument() !== 'check') { From 61b3796ea506d8aee54add6f0f72fa8e33996c52 Mon Sep 17 00:00:00 2001 From: Daniel Hansson Date: Thu, 28 Jul 2016 20:55:26 +0200 Subject: [PATCH 2/2] ownCloud -> Nextcloud --- core/Command/Maintenance/Install.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/Command/Maintenance/Install.php b/core/Command/Maintenance/Install.php index c8a7e8891213e..4e84becf770b2 100644 --- a/core/Command/Maintenance/Install.php +++ b/core/Command/Maintenance/Install.php @@ -50,7 +50,7 @@ public function __construct(IConfig $config) { protected function configure() { $this ->setName('maintenance:install') - ->setDescription('install ownCloud') + ->setDescription('install Nextcloud') ->addOption('database', null, InputOption::VALUE_REQUIRED, 'Supported database type', 'sqlite') ->addOption('database-name', null, InputOption::VALUE_REQUIRED, 'Name of the database') ->addOption('database-host', null, InputOption::VALUE_REQUIRED, 'Hostname of the database', 'localhost') @@ -77,7 +77,7 @@ protected function execute(InputInterface $input, OutputInterface $output) { // ignore the OS X setup warning if(count($errors) !== 1 || - (string)($errors[0]['error']) !== 'Mac OS X is not supported and ownCloud will not work properly on this platform. Use it at your own risk! ') { + (string)($errors[0]['error']) !== 'Mac OS X is not supported and Nextcloud will not work properly on this platform. Use it at your own risk! ') { return 1; } } @@ -91,7 +91,7 @@ protected function execute(InputInterface $input, OutputInterface $output) { $this->printErrors($output, $errors); return 1; } - $output->writeln("ownCloud was successfully installed"); + $output->writeln("Nextcloud was successfully installed"); return 0; }