summaryrefslogtreecommitdiffstats
path: root/public/help/eu
Commit message (Expand)AuthorAgeFilesLines
* Extract wiki_syntax internal style sheets into an external one (#24800).Jean-Philippe Lang2017-01-152-26/+2
* Extract wiki_syntax_detailed internal style sheets into an external one (#248...Jean-Philippe Lang2017-01-152-54/+2
* [#20288] Update the CodeRay Ruby syntax highlight example.Toshi MARUYAMA2015-08-142-50/+40
* [#20288] Make clear that syntax highlighting cannot only be used in wiki pages.Toshi MARUYAMA2015-08-142-2/+2
* [#20288] Add a note about case-insensitivity of CodeRay language names/aliases.Toshi MARUYAMA2015-08-142-2/+2
* [#20288] Update the i18n'ed core doc to match CodeRay 1.1.0 capabilities.Toshi MARUYAMA2015-08-142-2/+2
* Removes textile references in markdown help (#16373).Jean-Philippe Lang2015-07-241-3/+3
* Replace tabs with spaces and remove trailing tabs in several files (#20140).Jean-Philippe Lang2015-06-211-3/+3
* fix indent of wiki_syntax_detailed_markdown.htmlToshi MARUYAMA2015-04-201-1/+1
* copy English markdown wiki syntax help to other languages (#16373)Toshi MARUYAMA2015-04-202-0/+411
* rename textile wiki syntax help files (#16373)Toshi MARUYAMA2015-04-202-1/+1
* Typo in wiki_syntax_detailed.html (#19444).Jean-Philippe Lang2015-04-111-1/+1
* Wrong syntax for wiki macros in wiki_syntax_detailed.html (#19381).Jean-Philippe Lang2015-03-151-4/+4
* Adds table reference to textile help (#12734).Toshi MARUYAMA2015-01-031-0/+19
* revert r13762 because character encodings are broken (#12734)Toshi MARUYAMA2015-01-031-6/+0
* Adds News and Forum link documentation (#13497).Jean-Philippe Lang2014-12-241-2/+20
* Adds table reference to textile help (#12734).Jean-Philippe Lang2014-12-141-0/+6
* Wiki formatting documentation for nested lists (#4518).Jean-Philippe Lang2014-12-131-2/+2
* Include new standard macros in wiki syntax detailed help pages (#17847).Jean-Baptiste Barth2014-09-111-4/+32
* use escaping html in wiki_syntax_detailed.htmlToshi MARUYAMA2013-11-251-4/+4
* fix wiki syntax "bold italic" (#15391, #15401)Toshi MARUYAMA2013-11-191-1/+1
* Removed deprecated align and width html attributes (#15307).Jean-Philippe Lang2013-11-111-1/+1
* use escaping html in wiki_syntax.htmlToshi MARUYAMA2013-08-131-1/+1
* fix icon image paths of wiki syntax help (#14630)Toshi MARUYAMA2013-08-091-13/+13
* copy English wiki syntax helps to other languages (#14630)Toshi MARUYAMA2013-08-082-0/+353
* revert r12094 (#14630)Toshi MARUYAMA2013-08-082-353/+0
* copy English wiki syntax helps to other languages (#14630)Toshi MARUYAMA2013-08-082-0/+353
46931/stable28'>backport/46931/stable28 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/console.php
blob: 25b8b312539309e2c4ff8b4dcdb29d98602e7470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
 * Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

use Symfony\Component\Console\Application;

$RUNTIME_NOAPPS = true;
require_once 'lib/base.php';

// Don't do anything if ownCloud has not been installed yet
if (!OC_Config::getValue('installed', false)) {
	echo "Console can only be used once ownCloud has been installed" . PHP_EOL;
	exit(0);
}

if (!OC::$CLI) {
	echo "This script can be run from the command line only" . PHP_EOL;
	exit(0);
}

$defaults = new OC_Defaults;
$application = new Application($defaults->getName(), \OC_Util::getVersionString());
require_once 'core/register_command.php';
foreach(OC_App::getAllApps() as $app) {
	$file = OC_App::getAppPath($app).'/appinfo/register_command.php';
	if(file_exists($file)) {
		require $file;
	}
}
$application->run();