summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2016-03-01 17:25:15 +0100
committerLukas Reschke <lukas@owncloud.com>2016-03-01 17:25:15 +0100
commit933f60e3147ad872acf3211dc826ebf528434681 (patch)
tree3317c0a60a335c084957a0b74589fcfae4cc76ef /apps/files
parent900dcf6594d51f603b1a863020363987ed7ab003 (diff)
downloadnextcloud-server-933f60e3147ad872acf3211dc826ebf528434681.tar.gz
nextcloud-server-933f60e3147ad872acf3211dc826ebf528434681.zip
Update author information
Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/appinfo/install.php2
-rw-r--r--apps/files/appinfo/register_command.php2
-rw-r--r--apps/files/appinfo/update.php2
-rw-r--r--apps/files/command/deleteorphanedfiles.php1
-rw-r--r--apps/files/command/scan.php2
-rw-r--r--apps/files/command/transferownership.php2
-rw-r--r--apps/files/lib/backgroundjob/deleteorphaneditems.php2
-rw-r--r--apps/files/tests/backgroundjob/DeleteOrphanedItemsJobTest.php1
-rw-r--r--apps/files/tests/controller/ViewControllerTest.php2
9 files changed, 13 insertions, 3 deletions
diff --git a/apps/files/appinfo/install.php b/apps/files/appinfo/install.php
index ae08e21a22e..4d1e59d214c 100644
--- a/apps/files/appinfo/install.php
+++ b/apps/files/appinfo/install.php
@@ -1,6 +1,8 @@
<?php
/**
+ * @author Arthur Schiwon <blizzz@owncloud.com>
* @author Lukas Reschke <lukas@owncloud.com>
+ * @author Vincent Petry <pvince81@owncloud.com>
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
diff --git a/apps/files/appinfo/register_command.php b/apps/files/appinfo/register_command.php
index 0ec2fe1a584..e77087a229a 100644
--- a/apps/files/appinfo/register_command.php
+++ b/apps/files/appinfo/register_command.php
@@ -2,7 +2,7 @@
/**
* @author Bart Visscher <bartv@thisnet.nl>
* @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <rullzer@owncloud.com>
+ * @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
diff --git a/apps/files/appinfo/update.php b/apps/files/appinfo/update.php
index cb682cbc426..e4f8f8f29d7 100644
--- a/apps/files/appinfo/update.php
+++ b/apps/files/appinfo/update.php
@@ -1,9 +1,11 @@
<?php
/**
+ * @author Arthur Schiwon <blizzz@owncloud.com>
* @author Björn Schießle <schiessle@owncloud.com>
* @author Joas Schilling <nickvergessen@owncloud.com>
* @author Lukas Reschke <lukas@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
+ * @author Vincent Petry <pvince81@owncloud.com>
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
diff --git a/apps/files/command/deleteorphanedfiles.php b/apps/files/command/deleteorphanedfiles.php
index f897c68fd8d..91043471ce5 100644
--- a/apps/files/command/deleteorphanedfiles.php
+++ b/apps/files/command/deleteorphanedfiles.php
@@ -1,5 +1,6 @@
<?php
/**
+ * @author Joas Schilling <nickvergessen@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
diff --git a/apps/files/command/scan.php b/apps/files/command/scan.php
index 3251682445c..f607b3e1af1 100644
--- a/apps/files/command/scan.php
+++ b/apps/files/command/scan.php
@@ -5,7 +5,7 @@
* @author martin.mattel@diemattels.at <martin.mattel@diemattels.at>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
- * @author Vincent Petry <pvince81@owncloud.com>
+ * @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
diff --git a/apps/files/command/transferownership.php b/apps/files/command/transferownership.php
index 4cc2f34c3a3..c248620d5c5 100644
--- a/apps/files/command/transferownership.php
+++ b/apps/files/command/transferownership.php
@@ -2,7 +2,7 @@
/**
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/apps/files/lib/backgroundjob/deleteorphaneditems.php b/apps/files/lib/backgroundjob/deleteorphaneditems.php
index 773bb997e56..1eef9c24e0c 100644
--- a/apps/files/lib/backgroundjob/deleteorphaneditems.php
+++ b/apps/files/lib/backgroundjob/deleteorphaneditems.php
@@ -1,5 +1,7 @@
<?php
/**
+ * @author Arthur Schiwon <blizzz@owncloud.com>
+ * @author Joas Schilling <nickvergessen@owncloud.com>
* @author Vincent Petry <pvince81@owncloud.com>
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
diff --git a/apps/files/tests/backgroundjob/DeleteOrphanedItemsJobTest.php b/apps/files/tests/backgroundjob/DeleteOrphanedItemsJobTest.php
index 8d8e5d3be52..e802a248a9b 100644
--- a/apps/files/tests/backgroundjob/DeleteOrphanedItemsJobTest.php
+++ b/apps/files/tests/backgroundjob/DeleteOrphanedItemsJobTest.php
@@ -1,5 +1,6 @@
<?php
/**
+ * @author Arthur Schiwon <blizzz@owncloud.com>
* @author Vincent Petry <pvince81@owncloud.com>
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
diff --git a/apps/files/tests/controller/ViewControllerTest.php b/apps/files/tests/controller/ViewControllerTest.php
index e91d40a0e6b..657ab6cb338 100644
--- a/apps/files/tests/controller/ViewControllerTest.php
+++ b/apps/files/tests/controller/ViewControllerTest.php
@@ -1,6 +1,8 @@
<?php
/**
+ * @author Joas Schilling <nickvergessen@owncloud.com>
* @author Lukas Reschke <lukas@owncloud.com>
+ * @author Vincent Petry <pvince81@owncloud.com>
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0