summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-06-25 11:43:55 +0200
committerMorris Jobke <hey@morrisjobke.de>2015-06-25 14:13:49 +0200
commitf63915d0c8b28ed507f0db6e11ef50e9a0bd39f4 (patch)
tree411739523aed92226927f7aa5d90e69656af693e /core
parentcdb0e62e9b7a537f79f8674bc641fb88ec30c2be (diff)
downloadnextcloud-server-f63915d0c8b28ed507f0db6e11ef50e9a0bd39f4.tar.gz
nextcloud-server-f63915d0c8b28ed507f0db6e11ef50e9a0bd39f4.zip
update license headers and authors
Diffstat (limited to 'core')
-rw-r--r--core/ajax/preview.php1
-rw-r--r--core/ajax/share.php3
-rw-r--r--core/ajax/update.php1
-rw-r--r--core/application.php1
-rw-r--r--core/avatar/avatarcontroller.php2
-rw-r--r--core/command/app/checkcode.php1
-rw-r--r--core/command/check.php22
-rw-r--r--core/command/maintenance/install.php2
-rw-r--r--core/command/status.php1
-rw-r--r--core/command/upgrade.php1
-rw-r--r--core/command/user/add.php2
-rw-r--r--core/command/user/delete.php2
-rw-r--r--core/command/user/lastseen.php1
-rw-r--r--core/command/user/report.php1
-rw-r--r--core/command/user/resetpassword.php3
-rw-r--r--core/register_command.php1
-rw-r--r--core/routes.php1
-rw-r--r--core/strings.php1
18 files changed, 42 insertions, 5 deletions
diff --git a/core/ajax/preview.php b/core/ajax/preview.php
index 2c25d6f9219..c5714396409 100644
--- a/core/ajax/preview.php
+++ b/core/ajax/preview.php
@@ -3,7 +3,6 @@
* @author Georg Ehrke <georg@owncloud.com>
* @author Joas Schilling <nickvergessen@owncloud.com>
* @author Lukas Reschke <lukas@owncloud.com>
- * @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
diff --git a/core/ajax/share.php b/core/ajax/share.php
index e78d274815d..eff012f19d9 100644
--- a/core/ajax/share.php
+++ b/core/ajax/share.php
@@ -3,8 +3,8 @@
* @author Arthur Schiwon <blizzz@owncloud.com>
* @author Bart Visscher <bartv@thisnet.nl>
* @author Björn Schießle <schiessle@owncloud.com>
+ * @author Craig Morrissey <craig@owncloud.com>
* @author dampfklon <me@dampfklon.de>
- * @author Jan-Christoph Borchardt <hey@jancborchardt.net>
* @author Joas Schilling <nickvergessen@owncloud.com>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Lukas Reschke <lukas@owncloud.com>
@@ -12,6 +12,7 @@
* @author Morris Jobke <hey@morrisjobke.de>
* @author Ramiro Aparicio <rapariciog@gmail.com>
* @author Robin Appelman <icewind@owncloud.com>
+ * @author Roeland Jago Douma <roeland@famdouma.nl>
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Thomas Tanghus <thomas@tanghus.net>
* @author Vincent Petry <pvince81@owncloud.com>
diff --git a/core/ajax/update.php b/core/ajax/update.php
index 6a29b5b1c33..2f34708faea 100644
--- a/core/ajax/update.php
+++ b/core/ajax/update.php
@@ -3,6 +3,7 @@
* @author Bart Visscher <bartv@thisnet.nl>
* @author Lukas Reschke <lukas@owncloud.com>
* @author Michael Gapczynski <GapczynskiM@gmail.com>
+ * @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
diff --git a/core/application.php b/core/application.php
index cca2c600118..0fbb8dacdb7 100644
--- a/core/application.php
+++ b/core/application.php
@@ -4,6 +4,7 @@
* @author Lukas Reschke <lukas@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Roeland Jago Douma <roeland@famdouma.nl>
+ * @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
diff --git a/core/avatar/avatarcontroller.php b/core/avatar/avatarcontroller.php
index 19ea1f7a4d8..95baf23f4fa 100644
--- a/core/avatar/avatarcontroller.php
+++ b/core/avatar/avatarcontroller.php
@@ -1,6 +1,8 @@
<?php
/**
* @author Joas Schilling <nickvergessen@owncloud.com>
+ * @author Lukas Reschke <lukas@owncloud.com>
+ * @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
* @author Roeland Jago Douma <roeland@famdouma.nl>
*
diff --git a/core/command/app/checkcode.php b/core/command/app/checkcode.php
index 9e5514429ff..ecec51e5768 100644
--- a/core/command/app/checkcode.php
+++ b/core/command/app/checkcode.php
@@ -1,5 +1,6 @@
<?php
/**
+ * @author Joas Schilling <nickvergessen@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
diff --git a/core/command/check.php b/core/command/check.php
index ddfe9b73bba..cd7f8ee8e4c 100644
--- a/core/command/check.php
+++ b/core/command/check.php
@@ -1,5 +1,25 @@
<?php
-
+/**
+ * @author Joas Schilling <nickvergessen@owncloud.com>
+ * @author Morris Jobke <hey@morrisjobke.de>
+ * @author Thomas Müller <thomas.mueller@tmit.eu>
+ *
+ * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
namespace OC\Core\Command;
use OCP\IConfig;
diff --git a/core/command/maintenance/install.php b/core/command/maintenance/install.php
index dbc5ed77509..2fea5add438 100644
--- a/core/command/maintenance/install.php
+++ b/core/command/maintenance/install.php
@@ -1,6 +1,8 @@
<?php
/**
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
* @author Christian Kampka <christian@kampka.net>
+ * @author Morris Jobke <hey@morrisjobke.de>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
diff --git a/core/command/status.php b/core/command/status.php
index 737113d4f85..a65e985a9ec 100644
--- a/core/command/status.php
+++ b/core/command/status.php
@@ -1,6 +1,7 @@
<?php
/**
* @author Bart Visscher <bartv@thisnet.nl>
+ * @author Joas Schilling <nickvergessen@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
diff --git a/core/command/upgrade.php b/core/command/upgrade.php
index cf376148a00..ac0d72a8940 100644
--- a/core/command/upgrade.php
+++ b/core/command/upgrade.php
@@ -3,6 +3,7 @@
* @author Andreas Fischer <bantu@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Owen Winkler <a_github@midnightcircus.com>
+ * @author Steffen Lindner <mail@steffen-lindner.de>
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Vincent Petry <pvince81@owncloud.com>
*
diff --git a/core/command/user/add.php b/core/command/user/add.php
index c52ec4d0090..07060bb172f 100644
--- a/core/command/user/add.php
+++ b/core/command/user/add.php
@@ -1,6 +1,8 @@
<?php
/**
* @author Joas Schilling <nickvergessen@owncloud.com>
+ * @author Laurens Post <lkpost@scept.re>
+ * @author Morris Jobke <hey@morrisjobke.de>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
diff --git a/core/command/user/delete.php b/core/command/user/delete.php
index 63b81134873..e80c63bc732 100644
--- a/core/command/user/delete.php
+++ b/core/command/user/delete.php
@@ -1,6 +1,8 @@
<?php
/**
* @author Arthur Schiwon <blizzz@owncloud.com>
+ * @author Jens-Christian Fischer <jens-christian.fischer@switch.ch>
+ * @author Joas Schilling <nickvergessen@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
diff --git a/core/command/user/lastseen.php b/core/command/user/lastseen.php
index 92fcb1d449b..931165ef9f6 100644
--- a/core/command/user/lastseen.php
+++ b/core/command/user/lastseen.php
@@ -1,6 +1,7 @@
<?php
/**
* @author Arthur Schiwon <blizzz@owncloud.com>
+ * @author Joas Schilling <nickvergessen@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
diff --git a/core/command/user/report.php b/core/command/user/report.php
index 5d89c0ae549..7a830f64c07 100644
--- a/core/command/user/report.php
+++ b/core/command/user/report.php
@@ -1,6 +1,7 @@
<?php
/**
* @author Arthur Schiwon <blizzz@owncloud.com>
+ * @author Joas Schilling <nickvergessen@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
diff --git a/core/command/user/resetpassword.php b/core/command/user/resetpassword.php
index 3e4b41c0a43..6c5846bcef3 100644
--- a/core/command/user/resetpassword.php
+++ b/core/command/user/resetpassword.php
@@ -2,6 +2,9 @@
/**
* @author Andreas Fischer <bantu@owncloud.com>
* @author Christopher Schäpers <kondou@ts.unde.re>
+ * @author Clark Tomlinson <fallen013@gmail.com>
+ * @author Joas Schilling <nickvergessen@owncloud.com>
+ * @author Laurens Post <lkpost@scept.re>
* @author Morris Jobke <hey@morrisjobke.de>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
diff --git a/core/register_command.php b/core/register_command.php
index 801148aa55e..03775fd7870 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -4,6 +4,7 @@
* @author Christian Kampka <christian@kampka.net>
* @author Joas Schilling <nickvergessen@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
+ * @author Robin McCorkell <rmccorkell@karoshi.org.uk>
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Vincent Petry <pvince81@owncloud.com>
*
diff --git a/core/routes.php b/core/routes.php
index 15554397cc1..57fa606f5fb 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -4,7 +4,6 @@
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @author Christopher Schäpers <kondou@ts.unde.re>
* @author Georg Ehrke <georg@owncloud.com>
- * @author Georg Ehrke <georg@ownCloud.com>
* @author Lukas Reschke <lukas@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Roeland Jago Douma <roeland@famdouma.nl>
diff --git a/core/strings.php b/core/strings.php
index fdd3116b12f..e89228844d8 100644
--- a/core/strings.php
+++ b/core/strings.php
@@ -1,7 +1,6 @@
<?php
/**
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
- * @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.