From f2a7888c5cdcdbfc49ea33a4f1e0535f2afa2695 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 26 Oct 2015 13:51:22 +0100 Subject: [PATCH 1/4] Generate AUTHORS file from commits --- build/license.php | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/build/license.php b/build/license.php index 26b02bc71c..6f8388ee06 100644 --- a/build/license.php +++ b/build/license.php @@ -21,6 +21,7 @@ class Licenses { protected $paths = array(); + public $authors = []; public function __construct() { $this->licenseText = <<handleFile($file); } + } + function writeAuthorsFile() { + ksort($this->authors); + $template = "ownCloud is written by: +@AUTHORS@ + +With help from many libraries and frameworks including: + Open Collaboration Services + SabreDAV + jQuery + … +"; + $authors = implode(PHP_EOL, array_map(function($author){ + return " - ".$author; + }, $this->authors)); + $template = str_replace('@AUTHORS@', $authors, $template); + file_put_contents(__DIR__.'/../AUTHORS', $template); } function handleFile($path) { @@ -156,6 +174,7 @@ EOD; 'Jenkins for ownCloud ']); }); $authors = array_map(function($author){ + $this->authors[$author] = $author; return " * @author $author"; }, $authors); return implode(PHP_EOL, $authors); @@ -187,5 +206,5 @@ if (isset($argv[1])) { '../status.php', '../version.php', ]); + $licenses->writeAuthorsFile(); } - From 52ba14ed055ef2a89d3babb1c5543327d05acfe0 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 26 Oct 2015 13:56:50 +0100 Subject: [PATCH 2/4] Update .mailmap --- .mailmap | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 95841a3635..ec69fc5318 100644 --- a/.mailmap +++ b/.mailmap @@ -129,6 +129,7 @@ Frank Karlitschek Frank Karlitschek Frank Karlitschek Frank Karlitschek Frank Karlitschek Frank Karlitschek François Kubler +Frédéric Fortier Frédéric Fortier Frederik Gladhorn Gadzy ganomi @@ -306,7 +307,7 @@ Robin Appelman Robin Appelman Robin Appelman Robin Appelman Robin McCorkell Robin McCorkell Rodrigo Hjort -Roeland Jago Douma +Roeland Jago Douma Roeland Jago Douma rok Roland Hager Roland van Laar From 8f09d5b67c3689eb90690d0c8b58bcfec68e60dd Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 26 Oct 2015 13:54:55 +0100 Subject: [PATCH 3/4] Update license headers --- apps/encryption/lib/crypto/crypt.php | 1 + apps/encryption/tests/lib/MigrationTest.php | 1 + apps/files/appinfo/application.php | 2 +- apps/files/appinfo/routes.php | 2 +- apps/files/controller/apicontroller.php | 2 +- apps/files/lib/capabilities.php | 2 +- apps/files/tests/ajax_rename.php | 1 - apps/files/tests/command/deleteorphanedfilestest.php | 1 + apps/files/tests/controller/apicontrollertest.php | 3 +-- apps/files_external/appinfo/app.php | 2 +- apps/files_external/appinfo/application.php | 2 +- apps/files_external/appinfo/routes.php | 2 +- .../tests/service/userglobalstoragesservicetest.php | 1 + apps/files_sharing/ajax/external.php | 2 +- apps/files_sharing/ajax/list.php | 2 +- apps/files_sharing/ajax/publicpreview.php | 2 +- apps/files_sharing/api/local.php | 2 +- apps/files_sharing/api/remote.php | 2 +- apps/files_sharing/api/server2server.php | 1 + apps/files_sharing/api/sharees.php | 2 +- apps/files_sharing/appinfo/application.php | 3 ++- apps/files_sharing/appinfo/install.php | 1 + apps/files_sharing/appinfo/routes.php | 2 +- apps/files_sharing/appinfo/update.php | 1 + apps/files_sharing/lib/cache.php | 2 +- apps/files_sharing/lib/capabilities.php | 2 +- .../lib/controllers/externalsharescontroller.php | 2 +- apps/files_sharing/lib/controllers/sharecontroller.php | 1 + apps/files_sharing/lib/exceptions/s2sexception.php | 2 +- apps/files_sharing/lib/external/manager.php | 3 +-- apps/files_sharing/lib/helper.php | 2 +- .../lib/middleware/sharingcheckmiddleware.php | 2 +- apps/files_sharing/lib/propagation/propagationmanager.php | 1 + .../files_sharing/lib/propagation/recipientpropagator.php | 1 + apps/files_sharing/lib/share/file.php | 3 ++- apps/files_sharing/lib/share/folder.php | 2 +- apps/files_sharing/lib/sharedmount.php | 2 +- apps/files_sharing/lib/sharedstorage.php | 2 +- apps/files_sharing/lib/updater.php | 2 +- apps/files_sharing/tests/api.php | 2 +- apps/files_sharing/tests/api/shareestest.php | 2 +- apps/files_sharing/tests/capabilities.php | 2 +- .../tests/controller/externalsharecontroller.php | 2 +- apps/files_sharing/tests/etagpropagation.php | 2 ++ apps/files_sharing/tests/expiresharesjobtest.php | 2 +- apps/files_sharing/tests/external/managertest.php | 1 + apps/files_sharing/tests/grouppropagationmanager.php | 2 -- .../tests/middleware/sharingcheckmiddleware.php | 2 +- apps/files_sharing/tests/sharedmount.php | 2 +- apps/files_sharing/tests/sizepropagation.php | 1 + apps/files_trashbin/ajax/delete.php | 2 +- apps/files_trashbin/ajax/preview.php | 2 +- apps/files_trashbin/ajax/undelete.php | 2 +- apps/files_trashbin/appinfo/application.php | 2 +- apps/files_trashbin/appinfo/routes.php | 2 +- apps/files_trashbin/lib/capabilities.php | 2 +- apps/files_trashbin/lib/helper.php | 2 +- apps/files_trashbin/lib/trashbin.php | 2 +- apps/files_versions/ajax/preview.php | 2 +- apps/files_versions/appinfo/application.php | 2 +- apps/files_versions/appinfo/routes.php | 2 +- apps/files_versions/lib/capabilities.php | 2 +- apps/files_versions/tests/command/expiretest.php | 1 + apps/provisioning_api/appinfo/routes.php | 3 ++- apps/provisioning_api/lib/apps.php | 2 +- apps/provisioning_api/lib/groups.php | 2 +- apps/provisioning_api/lib/users.php | 3 ++- apps/provisioning_api/tests/appstest.php | 2 +- apps/provisioning_api/tests/groupstest.php | 2 +- apps/provisioning_api/tests/testcase.php | 2 +- apps/provisioning_api/tests/userstest.php | 2 +- apps/user_ldap/group_ldap.php | 1 + apps/user_ldap/lib/configuration.php | 1 + apps/user_ldap/lib/filesystemhelper.php | 1 + apps/user_ldap/lib/user/deletedusersindex.php | 1 + apps/user_ldap/lib/user/manager.php | 1 + apps/user_ldap/lib/user/offlineuser.php | 1 + apps/user_ldap/lib/user/user.php | 1 + apps/user_ldap/tests/group_ldap.php | 1 + core/ajax/share.php | 2 +- core/ajax/update.php | 1 + core/application.php | 2 +- core/avatar/avatarcontroller.php | 3 ++- core/command/maintenance/mimetype/updatejs.php | 2 +- core/js/config.php | 2 +- core/routes.php | 2 +- lib/autoloader.php | 1 + .../appframework/dependencyinjection/dicontainer.php | 2 +- lib/private/appframework/http.php | 2 +- lib/private/appframework/http/output.php | 1 + lib/private/avatar.php | 2 +- lib/private/avatarmanager.php | 2 +- lib/private/capabilitiesmanager.php | 2 +- lib/private/console/application.php | 1 + lib/private/files.php | 1 - lib/private/files/cache/scanner.php | 1 + lib/private/files/cache/updater.php | 1 + lib/private/files/storage/wrapper/encryption.php | 1 + lib/private/files/type/detection.php | 2 +- lib/private/files/view.php | 1 + lib/private/group/manager.php | 2 +- lib/private/helper.php | 4 ++-- lib/private/hook.php | 1 + lib/private/image.php | 2 +- lib/private/legacy/subadmin.php | 8 +------- lib/private/lock/dblockingprovider.php | 2 ++ lib/private/log/syslog.php | 1 + lib/private/ocs/cloud.php | 4 +--- lib/private/ocs/corecapabilities.php | 2 +- lib/private/server.php | 2 +- lib/private/setup/oci.php | 1 + lib/private/share/share.php | 3 +-- lib/private/streamer.php | 1 + lib/private/subadmin.php | 2 +- lib/private/template.php | 1 + lib/private/updater.php | 1 + lib/private/user.php | 2 +- lib/private/util.php | 1 - lib/public/appframework/controller.php | 1 + lib/public/appframework/http/datadisplayresponse.php | 2 +- lib/public/appframework/http/ioutput.php | 1 + lib/public/appframework/iappcontainer.php | 2 +- lib/public/capabilities/icapability.php | 2 +- lib/public/files/imimetypedetector.php | 2 +- lib/public/files/storage.php | 1 + lib/public/iservercontainer.php | 2 +- lib/public/share.php | 2 +- lib/repair/repairmimetypes.php | 2 +- settings/ajax/enableapp.php | 1 + settings/controller/certificatecontroller.php | 2 +- settings/controller/checksetupcontroller.php | 2 +- settings/controller/userscontroller.php | 1 + settings/personal.php | 4 ++-- settings/users.php | 2 +- version.php | 4 ++-- 135 files changed, 141 insertions(+), 108 deletions(-) diff --git a/apps/encryption/lib/crypto/crypt.php b/apps/encryption/lib/crypto/crypt.php index 53a78c216a..c0dcc936bd 100644 --- a/apps/encryption/lib/crypto/crypt.php +++ b/apps/encryption/lib/crypto/crypt.php @@ -2,6 +2,7 @@ /** * @author Björn Schießle * @author Clark Tomlinson + * @author Joas Schilling * @author Lukas Reschke * @author Thomas Müller * diff --git a/apps/encryption/tests/lib/MigrationTest.php b/apps/encryption/tests/lib/MigrationTest.php index be37020660..65fefa262a 100644 --- a/apps/encryption/tests/lib/MigrationTest.php +++ b/apps/encryption/tests/lib/MigrationTest.php @@ -2,6 +2,7 @@ /** * @author Björn Schießle * @author Joas Schilling + * @author Robin Appelman * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files/appinfo/application.php b/apps/files/appinfo/application.php index 6ba77e0955..6aff517e17 100644 --- a/apps/files/appinfo/application.php +++ b/apps/files/appinfo/application.php @@ -1,6 +1,6 @@ + * @author Roeland Jago Douma * @author Tobias Kaminsky * @author Vincent Petry * diff --git a/apps/files/appinfo/routes.php b/apps/files/appinfo/routes.php index 41aeec6a15..d52dfaab21 100644 --- a/apps/files/appinfo/routes.php +++ b/apps/files/appinfo/routes.php @@ -2,7 +2,7 @@ /** * @author Bart Visscher * @author Lukas Reschke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Tobias Kaminsky * @author Tom Needham * @author Vincent Petry diff --git a/apps/files/controller/apicontroller.php b/apps/files/controller/apicontroller.php index ea5ee81a9f..1ecd5294c6 100644 --- a/apps/files/controller/apicontroller.php +++ b/apps/files/controller/apicontroller.php @@ -3,7 +3,7 @@ * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Tobias Kaminsky * @author Vincent Petry diff --git a/apps/files/lib/capabilities.php b/apps/files/lib/capabilities.php index 2e19283e4d..14fb07a9d8 100644 --- a/apps/files/lib/capabilities.php +++ b/apps/files/lib/capabilities.php @@ -1,7 +1,7 @@ - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Tom Needham * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index 00a62fa002..859c7042b8 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -5,7 +5,6 @@ * @author Joas Schilling * @author Morris Jobke * @author Robin Appelman - * @author tbartenstein * @author Thomas Müller * @author Vincent Petry * diff --git a/apps/files/tests/command/deleteorphanedfilestest.php b/apps/files/tests/command/deleteorphanedfilestest.php index 3a1a541d8f..a667dba99f 100644 --- a/apps/files/tests/command/deleteorphanedfilestest.php +++ b/apps/files/tests/command/deleteorphanedfilestest.php @@ -1,6 +1,7 @@ + * @author Robin Appelman * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files/tests/controller/apicontrollertest.php b/apps/files/tests/controller/apicontrollertest.php index 7f34c0a564..fb728d5eff 100644 --- a/apps/files/tests/controller/apicontrollertest.php +++ b/apps/files/tests/controller/apicontrollertest.php @@ -1,9 +1,8 @@ * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index aa39d79a85..a7d8f4f668 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -1,8 +1,8 @@ - * @author Jan-Christoph Borchardt * @author j-ed + * @author Jan-Christoph Borchardt * @author Michael Gapczynski * @author Robin Appelman * @author Robin McCorkell diff --git a/apps/files_external/appinfo/application.php b/apps/files_external/appinfo/application.php index c7deaaf270..1d6e0d0340 100644 --- a/apps/files_external/appinfo/application.php +++ b/apps/files_external/appinfo/application.php @@ -2,7 +2,7 @@ /** * @author Morris Jobke * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Ross Nicoll * @author Vincent Petry * diff --git a/apps/files_external/appinfo/routes.php b/apps/files_external/appinfo/routes.php index a98a63c711..39ded1dc2e 100644 --- a/apps/files_external/appinfo/routes.php +++ b/apps/files_external/appinfo/routes.php @@ -4,7 +4,7 @@ * @author Jörn Friedrich Dreyer * @author Morris Jobke * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Ross Nicoll * @author Vincent Petry * diff --git a/apps/files_external/tests/service/userglobalstoragesservicetest.php b/apps/files_external/tests/service/userglobalstoragesservicetest.php index 1b902b6eee..e88764d0f7 100644 --- a/apps/files_external/tests/service/userglobalstoragesservicetest.php +++ b/apps/files_external/tests/service/userglobalstoragesservicetest.php @@ -1,6 +1,7 @@ + * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/ajax/external.php b/apps/files_sharing/ajax/external.php index c80f0e0b28..0f8a3d56cf 100644 --- a/apps/files_sharing/ajax/external.php +++ b/apps/files_sharing/ajax/external.php @@ -5,7 +5,7 @@ * @author Lukas Reschke * @author Morris Jobke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_sharing/ajax/list.php b/apps/files_sharing/ajax/list.php index 9819048b88..c7f0bde5d4 100644 --- a/apps/files_sharing/ajax/list.php +++ b/apps/files_sharing/ajax/list.php @@ -3,7 +3,7 @@ * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Vincent Petry * diff --git a/apps/files_sharing/ajax/publicpreview.php b/apps/files_sharing/ajax/publicpreview.php index 62157e0ac0..2902969b21 100644 --- a/apps/files_sharing/ajax/publicpreview.php +++ b/apps/files_sharing/ajax/publicpreview.php @@ -4,7 +4,7 @@ * @author Georg Ehrke * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_sharing/api/local.php b/apps/files_sharing/api/local.php index 42e77570f9..bb5136a0c9 100644 --- a/apps/files_sharing/api/local.php +++ b/apps/files_sharing/api/local.php @@ -4,7 +4,7 @@ * @author Joas Schilling * @author Morris Jobke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Vincent Petry * diff --git a/apps/files_sharing/api/remote.php b/apps/files_sharing/api/remote.php index d67920c352..41ebb6e2ea 100644 --- a/apps/files_sharing/api/remote.php +++ b/apps/files_sharing/api/remote.php @@ -1,7 +1,7 @@ - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/api/server2server.php b/apps/files_sharing/api/server2server.php index 832193f2b9..93998ad774 100644 --- a/apps/files_sharing/api/server2server.php +++ b/apps/files_sharing/api/server2server.php @@ -3,6 +3,7 @@ * @author Arthur Schiwon * @author Björn Schießle * @author Joas Schilling + * @author Lukas Reschke * @author Morris Jobke * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_sharing/api/sharees.php b/apps/files_sharing/api/sharees.php index b34aef7216..21f68d9b25 100644 --- a/apps/files_sharing/api/sharees.php +++ b/apps/files_sharing/api/sharees.php @@ -1,7 +1,7 @@ - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/appinfo/application.php b/apps/files_sharing/appinfo/application.php index 9dc0e0618b..545a942508 100644 --- a/apps/files_sharing/appinfo/application.php +++ b/apps/files_sharing/appinfo/application.php @@ -3,7 +3,8 @@ * @author Joas Schilling * @author Lukas Reschke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma + * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/appinfo/install.php b/apps/files_sharing/appinfo/install.php index 607e990346..5185ae883f 100644 --- a/apps/files_sharing/appinfo/install.php +++ b/apps/files_sharing/appinfo/install.php @@ -1,6 +1,7 @@ + * @author Morris Jobke * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index a466c4fc6c..db7aa126c4 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -5,7 +5,7 @@ * @author Joas Schilling * @author Lukas Reschke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index 03fb78a05a..8bff20cc44 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -2,6 +2,7 @@ /** * @author Björn Schießle * @author Joas Schilling + * @author Morris Jobke * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 9f3bf6508b..2e615e231f 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -8,7 +8,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Scrutinizer Auto-Fixer * @author Thomas Müller * @author Vincent Petry diff --git a/apps/files_sharing/lib/capabilities.php b/apps/files_sharing/lib/capabilities.php index c8ba127328..220878ec2a 100644 --- a/apps/files_sharing/lib/capabilities.php +++ b/apps/files_sharing/lib/capabilities.php @@ -1,6 +1,6 @@ + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/lib/controllers/externalsharescontroller.php b/apps/files_sharing/lib/controllers/externalsharescontroller.php index 71cc956ec9..edf065ab47 100644 --- a/apps/files_sharing/lib/controllers/externalsharescontroller.php +++ b/apps/files_sharing/lib/controllers/externalsharescontroller.php @@ -3,7 +3,7 @@ * @author Björn Schießle * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/lib/controllers/sharecontroller.php b/apps/files_sharing/lib/controllers/sharecontroller.php index 8a4e67eccf..4b446d79ad 100644 --- a/apps/files_sharing/lib/controllers/sharecontroller.php +++ b/apps/files_sharing/lib/controllers/sharecontroller.php @@ -7,6 +7,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell + * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/lib/exceptions/s2sexception.php b/apps/files_sharing/lib/exceptions/s2sexception.php index d914e9e06d..fe2659d36f 100644 --- a/apps/files_sharing/lib/exceptions/s2sexception.php +++ b/apps/files_sharing/lib/exceptions/s2sexception.php @@ -2,7 +2,7 @@ /** * @author Björn Schießle * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/lib/external/manager.php b/apps/files_sharing/lib/external/manager.php index 86b8904cc9..93e2cdb540 100644 --- a/apps/files_sharing/lib/external/manager.php +++ b/apps/files_sharing/lib/external/manager.php @@ -5,8 +5,7 @@ * @author Jörn Friedrich Dreyer * @author Morris Jobke * @author Robin Appelman - * @author Roeland Jago Douma - * @author Vincent Petry + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index beb8c69c41..a804737c49 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -7,7 +7,7 @@ * @author Lukas Reschke * @author Morris Jobke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_sharing/lib/middleware/sharingcheckmiddleware.php b/apps/files_sharing/lib/middleware/sharingcheckmiddleware.php index 9170c08b59..22b9d32a27 100644 --- a/apps/files_sharing/lib/middleware/sharingcheckmiddleware.php +++ b/apps/files_sharing/lib/middleware/sharingcheckmiddleware.php @@ -2,7 +2,7 @@ /** * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_sharing/lib/propagation/propagationmanager.php b/apps/files_sharing/lib/propagation/propagationmanager.php index 6ed70e93f8..aac9428240 100644 --- a/apps/files_sharing/lib/propagation/propagationmanager.php +++ b/apps/files_sharing/lib/propagation/propagationmanager.php @@ -1,6 +1,7 @@ + * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/lib/propagation/recipientpropagator.php b/apps/files_sharing/lib/propagation/recipientpropagator.php index f0941ce6cb..5eacf4c0f6 100644 --- a/apps/files_sharing/lib/propagation/recipientpropagator.php +++ b/apps/files_sharing/lib/propagation/recipientpropagator.php @@ -1,5 +1,6 @@ * @author Morris Jobke * @author Robin Appelman * diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index 67ef3937e6..ffc417db2f 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -3,10 +3,11 @@ * @author Andreas Fischer * @author Bart Visscher * @author Björn Schießle + * @author Lukas Reschke * @author Michael Gapczynski * @author Morris Jobke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Vincent Petry * diff --git a/apps/files_sharing/lib/share/folder.php b/apps/files_sharing/lib/share/folder.php index daa5b5e9eb..5e7cd8099d 100644 --- a/apps/files_sharing/lib/share/folder.php +++ b/apps/files_sharing/lib/share/folder.php @@ -5,7 +5,7 @@ * @author Michael Gapczynski * @author Morris Jobke * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/lib/sharedmount.php b/apps/files_sharing/lib/sharedmount.php index 85eb264ce0..a138795786 100644 --- a/apps/files_sharing/lib/sharedmount.php +++ b/apps/files_sharing/lib/sharedmount.php @@ -4,7 +4,7 @@ * @author Joas Schilling * @author Morris Jobke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index b0e56f5f05..18e0284417 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -7,7 +7,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author scambra * @author Vincent Petry * diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index d70ed23b94..26044cc1c8 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -5,7 +5,7 @@ * @author Michael Gapczynski * @author Morris Jobke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 3809b81205..760bc0591e 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -5,7 +5,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Vincent Petry * diff --git a/apps/files_sharing/tests/api/shareestest.php b/apps/files_sharing/tests/api/shareestest.php index 923881d456..8a35350aeb 100644 --- a/apps/files_sharing/tests/api/shareestest.php +++ b/apps/files_sharing/tests/api/shareestest.php @@ -1,7 +1,7 @@ - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/tests/capabilities.php b/apps/files_sharing/tests/capabilities.php index b151f47a46..8bebde9f2d 100644 --- a/apps/files_sharing/tests/capabilities.php +++ b/apps/files_sharing/tests/capabilities.php @@ -1,7 +1,7 @@ - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/tests/controller/externalsharecontroller.php b/apps/files_sharing/tests/controller/externalsharecontroller.php index 7bc11f7fb9..4913c7308b 100644 --- a/apps/files_sharing/tests/controller/externalsharecontroller.php +++ b/apps/files_sharing/tests/controller/externalsharecontroller.php @@ -1,7 +1,7 @@ - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/tests/etagpropagation.php b/apps/files_sharing/tests/etagpropagation.php index 9f9b65ed52..1abf04df84 100644 --- a/apps/files_sharing/tests/etagpropagation.php +++ b/apps/files_sharing/tests/etagpropagation.php @@ -1,5 +1,7 @@ + * @author Lukas Reschke * @author Robin Appelman * @author Vincent Petry * diff --git a/apps/files_sharing/tests/expiresharesjobtest.php b/apps/files_sharing/tests/expiresharesjobtest.php index 90da4011d8..63a2c46f64 100644 --- a/apps/files_sharing/tests/expiresharesjobtest.php +++ b/apps/files_sharing/tests/expiresharesjobtest.php @@ -1,6 +1,6 @@ + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/tests/external/managertest.php b/apps/files_sharing/tests/external/managertest.php index 7242779d45..5b93b7494e 100644 --- a/apps/files_sharing/tests/external/managertest.php +++ b/apps/files_sharing/tests/external/managertest.php @@ -1,6 +1,7 @@ + * @author Robin Appelman * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_sharing/tests/grouppropagationmanager.php b/apps/files_sharing/tests/grouppropagationmanager.php index 6fc6ef7a53..ea32ca4f7e 100644 --- a/apps/files_sharing/tests/grouppropagationmanager.php +++ b/apps/files_sharing/tests/grouppropagationmanager.php @@ -1,7 +1,5 @@ - * @author Robin Appelman * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_sharing/tests/middleware/sharingcheckmiddleware.php b/apps/files_sharing/tests/middleware/sharingcheckmiddleware.php index 0269f77d0d..031f8c1b97 100644 --- a/apps/files_sharing/tests/middleware/sharingcheckmiddleware.php +++ b/apps/files_sharing/tests/middleware/sharingcheckmiddleware.php @@ -2,7 +2,7 @@ /** * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_sharing/tests/sharedmount.php b/apps/files_sharing/tests/sharedmount.php index 6f487892b8..94c0ad448b 100644 --- a/apps/files_sharing/tests/sharedmount.php +++ b/apps/files_sharing/tests/sharedmount.php @@ -4,7 +4,7 @@ * @author Joas Schilling * @author Morris Jobke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Vincent Petry * diff --git a/apps/files_sharing/tests/sizepropagation.php b/apps/files_sharing/tests/sizepropagation.php index c596003de7..1d09f69449 100644 --- a/apps/files_sharing/tests/sizepropagation.php +++ b/apps/files_sharing/tests/sizepropagation.php @@ -1,5 +1,6 @@ * @author Robin Appelman * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index 7ce8d632e4..40d1811717 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -4,7 +4,7 @@ * @author Björn Schießle * @author Lukas Reschke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_trashbin/ajax/preview.php b/apps/files_trashbin/ajax/preview.php index 90add53f77..49d6d93f57 100644 --- a/apps/files_trashbin/ajax/preview.php +++ b/apps/files_trashbin/ajax/preview.php @@ -3,7 +3,7 @@ * @author Björn Schießle * @author Georg Ehrke * @author Lukas Reschke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index 01dc91f9ba..f0e5ce6d88 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -4,7 +4,7 @@ * @author Björn Schießle * @author Lukas Reschke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Vincent Petry * diff --git a/apps/files_trashbin/appinfo/application.php b/apps/files_trashbin/appinfo/application.php index 08ab7cd5c1..59553abfb1 100644 --- a/apps/files_trashbin/appinfo/application.php +++ b/apps/files_trashbin/appinfo/application.php @@ -1,6 +1,6 @@ + * @author Roeland Jago Douma * @author Victor Dubiniuk * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_trashbin/appinfo/routes.php b/apps/files_trashbin/appinfo/routes.php index caa9f0864a..f3b97d8687 100644 --- a/apps/files_trashbin/appinfo/routes.php +++ b/apps/files_trashbin/appinfo/routes.php @@ -1,7 +1,7 @@ - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_trashbin/lib/capabilities.php b/apps/files_trashbin/lib/capabilities.php index c991cc8be6..d903066e67 100644 --- a/apps/files_trashbin/lib/capabilities.php +++ b/apps/files_trashbin/lib/capabilities.php @@ -2,7 +2,7 @@ /** * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/files_trashbin/lib/helper.php b/apps/files_trashbin/lib/helper.php index 3d6a02c777..d14e97285c 100644 --- a/apps/files_trashbin/lib/helper.php +++ b/apps/files_trashbin/lib/helper.php @@ -5,7 +5,7 @@ * @author Jörn Friedrich Dreyer * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index 9eada31f5d..8f0fe745a4 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -12,7 +12,7 @@ * @author Qingping Hou * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Sjors van der Pluijm * @author Thomas Müller * @author Victor Dubiniuk diff --git a/apps/files_versions/ajax/preview.php b/apps/files_versions/ajax/preview.php index d7bc44f17a..0da518f3ea 100644 --- a/apps/files_versions/ajax/preview.php +++ b/apps/files_versions/ajax/preview.php @@ -1,7 +1,7 @@ - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Vincent Petry * diff --git a/apps/files_versions/appinfo/application.php b/apps/files_versions/appinfo/application.php index 00723e621a..ba0a2ae74c 100644 --- a/apps/files_versions/appinfo/application.php +++ b/apps/files_versions/appinfo/application.php @@ -1,6 +1,6 @@ + * @author Roeland Jago Douma * @author Victor Dubiniuk * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_versions/appinfo/routes.php b/apps/files_versions/appinfo/routes.php index 9bab86d922..b2ed477de6 100644 --- a/apps/files_versions/appinfo/routes.php +++ b/apps/files_versions/appinfo/routes.php @@ -4,7 +4,7 @@ * @author Jörn Friedrich Dreyer * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Tom Needham * diff --git a/apps/files_versions/lib/capabilities.php b/apps/files_versions/lib/capabilities.php index 11b98038f4..ba4de906c7 100644 --- a/apps/files_versions/lib/capabilities.php +++ b/apps/files_versions/lib/capabilities.php @@ -2,7 +2,7 @@ /** * @author Christopher Schäpers * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Tom Needham * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/files_versions/tests/command/expiretest.php b/apps/files_versions/tests/command/expiretest.php index eb622689c3..eccc1f4c2a 100644 --- a/apps/files_versions/tests/command/expiretest.php +++ b/apps/files_versions/tests/command/expiretest.php @@ -1,6 +1,7 @@ + * @author Jörn Friedrich Dreyer * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/provisioning_api/appinfo/routes.php b/apps/provisioning_api/appinfo/routes.php index 17cfea2657..2a4b50dc27 100644 --- a/apps/provisioning_api/appinfo/routes.php +++ b/apps/provisioning_api/appinfo/routes.php @@ -1,8 +1,9 @@ + * @author michag86 * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Tom Needham * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/provisioning_api/lib/apps.php b/apps/provisioning_api/lib/apps.php index ba920c7a9c..e0fa63cca3 100644 --- a/apps/provisioning_api/lib/apps.php +++ b/apps/provisioning_api/lib/apps.php @@ -3,7 +3,7 @@ * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Tom Needham * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/provisioning_api/lib/groups.php b/apps/provisioning_api/lib/groups.php index 7e7515bc70..5b61356232 100644 --- a/apps/provisioning_api/lib/groups.php +++ b/apps/provisioning_api/lib/groups.php @@ -3,7 +3,7 @@ * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Tom Needham * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/provisioning_api/lib/users.php b/apps/provisioning_api/lib/users.php index 0b529bcea2..527b107ad5 100644 --- a/apps/provisioning_api/lib/users.php +++ b/apps/provisioning_api/lib/users.php @@ -2,8 +2,9 @@ /** * @author Joas Schilling * @author Lukas Reschke + * @author michag86 * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Tom Needham * diff --git a/apps/provisioning_api/tests/appstest.php b/apps/provisioning_api/tests/appstest.php index 2baea5bbc8..2e1a86025c 100644 --- a/apps/provisioning_api/tests/appstest.php +++ b/apps/provisioning_api/tests/appstest.php @@ -2,7 +2,7 @@ /** * @author Joas Schilling * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Tom Needham * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/provisioning_api/tests/groupstest.php b/apps/provisioning_api/tests/groupstest.php index 4afd246abc..c75ba76bd3 100644 --- a/apps/provisioning_api/tests/groupstest.php +++ b/apps/provisioning_api/tests/groupstest.php @@ -2,7 +2,7 @@ /** * @author Joas Schilling * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Tom Needham * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/provisioning_api/tests/testcase.php b/apps/provisioning_api/tests/testcase.php index 6135a6d2f9..113bc51224 100644 --- a/apps/provisioning_api/tests/testcase.php +++ b/apps/provisioning_api/tests/testcase.php @@ -2,7 +2,7 @@ /** * @author Joas Schilling * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/apps/provisioning_api/tests/userstest.php b/apps/provisioning_api/tests/userstest.php index b43041bbbf..607e6f118a 100644 --- a/apps/provisioning_api/tests/userstest.php +++ b/apps/provisioning_api/tests/userstest.php @@ -2,7 +2,7 @@ /** * @author Joas Schilling * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Tom Needham * @author Vincent Petry diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 4fd029c74d..d7ca786a43 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -6,6 +6,7 @@ * @author Bart Visscher * @author Christopher Schäpers * @author Frédéric Fortier + * @author Lukas Reschke * @author Morris Jobke * @author Nicolas Grekas * @author Robin McCorkell diff --git a/apps/user_ldap/lib/configuration.php b/apps/user_ldap/lib/configuration.php index 4a6263de9a..e1ca624af9 100644 --- a/apps/user_ldap/lib/configuration.php +++ b/apps/user_ldap/lib/configuration.php @@ -3,6 +3,7 @@ * @author Alexander Bergolth * @author Arthur Schiwon * @author Jörn Friedrich Dreyer + * @author Lennart Rosam * @author Lukas Reschke * @author Morris Jobke * @author Robin McCorkell diff --git a/apps/user_ldap/lib/filesystemhelper.php b/apps/user_ldap/lib/filesystemhelper.php index 6d431f6cb4..ee8c26d2f5 100644 --- a/apps/user_ldap/lib/filesystemhelper.php +++ b/apps/user_ldap/lib/filesystemhelper.php @@ -1,6 +1,7 @@ + * @author Joas Schilling * @author Morris Jobke * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/user_ldap/lib/user/deletedusersindex.php b/apps/user_ldap/lib/user/deletedusersindex.php index f8c1406d77..6b58595cce 100644 --- a/apps/user_ldap/lib/user/deletedusersindex.php +++ b/apps/user_ldap/lib/user/deletedusersindex.php @@ -1,6 +1,7 @@ + * @author Joas Schilling * @author Morris Jobke * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/user_ldap/lib/user/manager.php b/apps/user_ldap/lib/user/manager.php index 89bbc84988..4a687c0832 100644 --- a/apps/user_ldap/lib/user/manager.php +++ b/apps/user_ldap/lib/user/manager.php @@ -1,6 +1,7 @@ + * @author Joas Schilling * @author Jörn Friedrich Dreyer * @author Morris Jobke * diff --git a/apps/user_ldap/lib/user/offlineuser.php b/apps/user_ldap/lib/user/offlineuser.php index 8177e84346..72c0242792 100644 --- a/apps/user_ldap/lib/user/offlineuser.php +++ b/apps/user_ldap/lib/user/offlineuser.php @@ -1,6 +1,7 @@ + * @author Joas Schilling * @author Morris Jobke * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/user_ldap/lib/user/user.php b/apps/user_ldap/lib/user/user.php index 756b923e7e..c77f7254c9 100644 --- a/apps/user_ldap/lib/user/user.php +++ b/apps/user_ldap/lib/user/user.php @@ -1,6 +1,7 @@ + * @author Joas Schilling * @author Morris Jobke * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/apps/user_ldap/tests/group_ldap.php b/apps/user_ldap/tests/group_ldap.php index 49af5e3fe3..6a6d5bc7ca 100644 --- a/apps/user_ldap/tests/group_ldap.php +++ b/apps/user_ldap/tests/group_ldap.php @@ -3,6 +3,7 @@ * @author Arthur Schiwon * @author Frédéric Fortier * @author Joas Schilling + * @author Lukas Reschke * @author Morris Jobke * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/core/ajax/share.php b/core/ajax/share.php index a1c573900c..68afd7b4e8 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -13,7 +13,7 @@ * @author Morris Jobke * @author Ramiro Aparicio * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Thomas Tanghus * @author Vincent Petry diff --git a/core/ajax/update.php b/core/ajax/update.php index 42f7f14bbd..d6dfa07109 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -1,6 +1,7 @@ + * @author Joas Schilling * @author Lukas Reschke * @author Michael Gapczynski * @author Morris Jobke diff --git a/core/application.php b/core/application.php index eab2c686dc..dfc4fc38c7 100644 --- a/core/application.php +++ b/core/application.php @@ -3,7 +3,7 @@ * @author Bernhard Posselt * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Victor Dubiniuk * diff --git a/core/avatar/avatarcontroller.php b/core/avatar/avatarcontroller.php index e15b47e9a8..6c0321e6b5 100644 --- a/core/avatar/avatarcontroller.php +++ b/core/avatar/avatarcontroller.php @@ -4,8 +4,9 @@ * @author Lukas Reschke * @author Morris Jobke * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller + * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/core/command/maintenance/mimetype/updatejs.php b/core/command/maintenance/mimetype/updatejs.php index 5329475c0a..b2c57556cb 100644 --- a/core/command/maintenance/mimetype/updatejs.php +++ b/core/command/maintenance/mimetype/updatejs.php @@ -1,7 +1,7 @@ - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/core/js/config.php b/core/js/config.php index e2d7ae3784..953bd2ede4 100644 --- a/core/js/config.php +++ b/core/js/config.php @@ -11,7 +11,7 @@ * @author Morris Jobke * @author Owen Winkler * @author Robin Appelman - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Vincent Petry * diff --git a/core/routes.php b/core/routes.php index 57fa606f5f..0eb013aae8 100644 --- a/core/routes.php +++ b/core/routes.php @@ -6,7 +6,7 @@ * @author Georg Ehrke * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Thomas Tanghus * @author Victor Dubiniuk diff --git a/lib/autoloader.php b/lib/autoloader.php index b94ac6c5ee..b91681946a 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -2,6 +2,7 @@ /** * @author Andreas Fischer * @author Georg Ehrke + * @author Lukas Reschke * @author Markus Goetz * @author Morris Jobke * @author Robin Appelman diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index de8672bc4c..b71ca71391 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -5,7 +5,7 @@ * @author Lukas Reschke * @author Morris Jobke * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Thomas Tanghus * diff --git a/lib/private/appframework/http.php b/lib/private/appframework/http.php index f892ee7e5e..89f6f70f4e 100644 --- a/lib/private/appframework/http.php +++ b/lib/private/appframework/http.php @@ -3,7 +3,7 @@ * @author Jörn Friedrich Dreyer * @author Morris Jobke * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Thomas Tanghus * diff --git a/lib/private/appframework/http/output.php b/lib/private/appframework/http/output.php index 01636d397b..f4773ab106 100644 --- a/lib/private/appframework/http/output.php +++ b/lib/private/appframework/http/output.php @@ -1,6 +1,7 @@ + * @author Lukas Reschke * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/lib/private/avatar.php b/lib/private/avatar.php index 55c328b677..baaccaa86e 100644 --- a/lib/private/avatar.php +++ b/lib/private/avatar.php @@ -7,7 +7,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/lib/private/avatarmanager.php b/lib/private/avatarmanager.php index 6b33e8d8e8..143874b6be 100644 --- a/lib/private/avatarmanager.php +++ b/lib/private/avatarmanager.php @@ -5,7 +5,7 @@ * @author Lukas Reschke * @author Morris Jobke * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/lib/private/capabilitiesmanager.php b/lib/private/capabilitiesmanager.php index 74154f2c63..c36a96af68 100644 --- a/lib/private/capabilitiesmanager.php +++ b/lib/private/capabilitiesmanager.php @@ -1,6 +1,6 @@ + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/lib/private/console/application.php b/lib/private/console/application.php index 92d787f3d8..55c817d497 100644 --- a/lib/private/console/application.php +++ b/lib/private/console/application.php @@ -1,5 +1,6 @@ * @author Morris Jobke * @author Robin McCorkell * @author Thomas Müller diff --git a/lib/private/files.php b/lib/private/files.php index 919ca4ba71..9be5fc9a12 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -7,7 +7,6 @@ * @author Jakob Sack * @author Joas Schilling * @author Jörn Friedrich Dreyer - * @author Lukas Reschke * @author Michael Gapczynski * @author Nicolai Ehemann * @author Robin Appelman diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php index b0890dcdc0..35043029dc 100644 --- a/lib/private/files/cache/scanner.php +++ b/lib/private/files/cache/scanner.php @@ -1,6 +1,7 @@ + * @author Björn Schießle * @author Jörn Friedrich Dreyer * @author Lukas Reschke * @author Martin Mattel diff --git a/lib/private/files/cache/updater.php b/lib/private/files/cache/updater.php index 2de0c8fe06..4cc5f51156 100644 --- a/lib/private/files/cache/updater.php +++ b/lib/private/files/cache/updater.php @@ -1,6 +1,7 @@ + * @author Jörn Friedrich Dreyer * @author Michael Gapczynski * @author Morris Jobke * @author Robin Appelman diff --git a/lib/private/files/storage/wrapper/encryption.php b/lib/private/files/storage/wrapper/encryption.php index 2f0c1e35b0..24b0ca4aca 100644 --- a/lib/private/files/storage/wrapper/encryption.php +++ b/lib/private/files/storage/wrapper/encryption.php @@ -3,6 +3,7 @@ * @author Björn Schießle * @author Joas Schilling * @author Lukas Reschke + * @author Robin Appelman * @author Thomas Müller * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/lib/private/files/type/detection.php b/lib/private/files/type/detection.php index fd27d88eae..c102e739e0 100644 --- a/lib/private/files/type/detection.php +++ b/lib/private/files/type/detection.php @@ -6,7 +6,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Tanghus * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/lib/private/files/view.php b/lib/private/files/view.php index e7328500ff..a11df53705 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -16,6 +16,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell + * @author Roeland Jago Douma * @author Roman Geber * @author Sam Tuke * @author Thomas Müller diff --git a/lib/private/group/manager.php b/lib/private/group/manager.php index 6905dd8f5f..0f6ba7f24e 100644 --- a/lib/private/group/manager.php +++ b/lib/private/group/manager.php @@ -9,7 +9,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author voxsim * diff --git a/lib/private/helper.php b/lib/private/helper.php index ac91164dfb..ee2f520fe2 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -6,8 +6,8 @@ * @author Christopher Schäpers * @author Fabian Henze * @author Felix Moeller - * @author François Kubler * @author Frank Karlitschek + * @author François Kubler * @author Georg Ehrke * @author Jakob Sack * @author Jan-Christoph Borchardt @@ -22,7 +22,7 @@ * @author Pellaeon Lin * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Simon Könnecke * @author Thomas Müller * @author Thomas Tanghus diff --git a/lib/private/hook.php b/lib/private/hook.php index 68621580b1..2ff045c8a6 100644 --- a/lib/private/hook.php +++ b/lib/private/hook.php @@ -2,6 +2,7 @@ /** * @author Bart Visscher * @author Jakob Sack + * @author Lukas Reschke * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell diff --git a/lib/private/image.php b/lib/private/image.php index fad0b53cb4..4ca9b81110 100644 --- a/lib/private/image.php +++ b/lib/private/image.php @@ -1,8 +1,8 @@ - * @author Bartek Przybylski * @author Bart Visscher + * @author Bartek Przybylski * @author Björn Schießle * @author Byron Marohn * @author Christopher Schäpers diff --git a/lib/private/legacy/subadmin.php b/lib/private/legacy/subadmin.php index d10b6e90bb..aa8e035ed3 100644 --- a/lib/private/legacy/subadmin.php +++ b/lib/private/legacy/subadmin.php @@ -1,12 +1,6 @@ - * @author Georg Ehrke - * @author Jörn Friedrich Dreyer - * @author Lukas Reschke - * @author Morris Jobke - * @author Robin McCorkell - * @author Thomas Müller + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/lib/private/lock/dblockingprovider.php b/lib/private/lock/dblockingprovider.php index a167687e0a..90657e6725 100644 --- a/lib/private/lock/dblockingprovider.php +++ b/lib/private/lock/dblockingprovider.php @@ -1,6 +1,8 @@ * @author Individual IT Services + * @author Joas Schilling * @author Robin Appelman * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/lib/private/log/syslog.php b/lib/private/log/syslog.php index 71debaffd3..cc4c5a29c3 100644 --- a/lib/private/log/syslog.php +++ b/lib/private/log/syslog.php @@ -3,6 +3,7 @@ * @author Bart Visscher * @author Morris Jobke * @author Thomas Müller + * @author Volker Fröhlich * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/lib/private/ocs/cloud.php b/lib/private/ocs/cloud.php index 441e53400a..0d93819b9e 100644 --- a/lib/private/ocs/cloud.php +++ b/lib/private/ocs/cloud.php @@ -1,9 +1,7 @@ * @author Morris Jobke - * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Tom Needham * diff --git a/lib/private/ocs/corecapabilities.php b/lib/private/ocs/corecapabilities.php index 6b620ab0a8..0fba7bfd7d 100644 --- a/lib/private/ocs/corecapabilities.php +++ b/lib/private/ocs/corecapabilities.php @@ -1,6 +1,6 @@ + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/lib/private/server.php b/lib/private/server.php index 15ee3454d8..ea5937dfea 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -13,7 +13,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Sander * @author Thomas Müller * @author Thomas Tanghus diff --git a/lib/private/setup/oci.php b/lib/private/setup/oci.php index c3f0356716..e5634572d9 100644 --- a/lib/private/setup/oci.php +++ b/lib/private/setup/oci.php @@ -4,6 +4,7 @@ * @author Bart Visscher * @author Joas Schilling * @author Jörn Friedrich Dreyer + * @author Morris Jobke * @author Thomas Müller * @author Victor Dubiniuk * diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 097c5a14b9..e79b2204a6 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -8,12 +8,11 @@ * @author Daniel Hansson * @author Joas Schilling * @author Jörn Friedrich Dreyer - * @author Lukas Reschke * @author Michael Kuhn * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Sebastian Döll * @author Thomas Müller * @author Vincent Petry diff --git a/lib/private/streamer.php b/lib/private/streamer.php index a08c8444f0..aa819c560a 100644 --- a/lib/private/streamer.php +++ b/lib/private/streamer.php @@ -1,5 +1,6 @@ * @author Thomas Müller * @author Victor Dubiniuk * diff --git a/lib/private/subadmin.php b/lib/private/subadmin.php index 0e130a7700..e1a7644f0f 100644 --- a/lib/private/subadmin.php +++ b/lib/private/subadmin.php @@ -4,7 +4,7 @@ * @author Georg Ehrke * @author Lukas Reschke * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/lib/private/template.php b/lib/private/template.php index 0deb26d8f1..5a08e15d95 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -8,6 +8,7 @@ * @author Frank Karlitschek * @author Individual IT Services * @author Jakob Sack + * @author Joas Schilling * @author Jörn Friedrich Dreyer * @author Lukas Reschke * @author Morris Jobke diff --git a/lib/private/updater.php b/lib/private/updater.php index 1e4421c39d..1ff8086373 100644 --- a/lib/private/updater.php +++ b/lib/private/updater.php @@ -4,6 +4,7 @@ * @author Bart Visscher * @author Björn Schießle * @author Frank Karlitschek + * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke * @author Robin Appelman diff --git a/lib/private/user.php b/lib/private/user.php index 86b1385f15..74441d9175 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -3,8 +3,8 @@ * @author Aldo "xoen" Giambelluca * @author Andreas Fischer * @author Arthur Schiwon - * @author Bartek Przybylski * @author Bart Visscher + * @author Bartek Przybylski * @author Björn Schießle * @author Dominik Schmidt * @author Florian Preinstorfer diff --git a/lib/private/util.php b/lib/private/util.php index e51edaf0ee..0b6cfb099d 100644 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -29,7 +29,6 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma * @author Scrutinizer Auto-Fixer * @author Stefan Rado * @author Thomas Müller diff --git a/lib/public/appframework/controller.php b/lib/public/appframework/controller.php index 5c7292cd13..6e2ceff93e 100644 --- a/lib/public/appframework/controller.php +++ b/lib/public/appframework/controller.php @@ -6,6 +6,7 @@ * @author Scrutinizer Auto-Fixer * @author Thomas Müller * @author Thomas Tanghus + * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/lib/public/appframework/http/datadisplayresponse.php b/lib/public/appframework/http/datadisplayresponse.php index 31b4c83ff3..2691091347 100644 --- a/lib/public/appframework/http/datadisplayresponse.php +++ b/lib/public/appframework/http/datadisplayresponse.php @@ -1,7 +1,7 @@ - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/lib/public/appframework/http/ioutput.php b/lib/public/appframework/http/ioutput.php index 185bc589f2..9a4047fe30 100644 --- a/lib/public/appframework/http/ioutput.php +++ b/lib/public/appframework/http/ioutput.php @@ -1,6 +1,7 @@ + * @author Lukas Reschke * @author Morris Jobke * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/lib/public/appframework/iappcontainer.php b/lib/public/appframework/iappcontainer.php index c92146124e..1cc0daf68a 100644 --- a/lib/public/appframework/iappcontainer.php +++ b/lib/public/appframework/iappcontainer.php @@ -3,7 +3,7 @@ * @author Bernhard Posselt * @author Jörn Friedrich Dreyer * @author Morris Jobke - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/lib/public/capabilities/icapability.php b/lib/public/capabilities/icapability.php index 71a56128d2..b43387aad7 100644 --- a/lib/public/capabilities/icapability.php +++ b/lib/public/capabilities/icapability.php @@ -1,6 +1,6 @@ + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/lib/public/files/imimetypedetector.php b/lib/public/files/imimetypedetector.php index 79ed8a4fac..b2b80d4570 100644 --- a/lib/public/files/imimetypedetector.php +++ b/lib/public/files/imimetypedetector.php @@ -1,6 +1,6 @@ + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/lib/public/files/storage.php b/lib/public/files/storage.php index 7931a683ae..1c52002677 100644 --- a/lib/public/files/storage.php +++ b/lib/public/files/storage.php @@ -1,5 +1,6 @@ * @author Michael Roth * @author Morris Jobke * @author Robin Appelman diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 56afae95a4..d85f812b2e 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -10,7 +10,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller * @author Thomas Tanghus * diff --git a/lib/public/share.php b/lib/public/share.php index 4fcc7d81d1..68f278005e 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -9,7 +9,7 @@ * @author Michael Kuhn * @author Morris Jobke * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Sam Tuke * @author Thomas Müller * diff --git a/lib/repair/repairmimetypes.php b/lib/repair/repairmimetypes.php index 3ea9e45816..e687dbde68 100644 --- a/lib/repair/repairmimetypes.php +++ b/lib/repair/repairmimetypes.php @@ -4,7 +4,7 @@ * @author Morris Jobke * @author Normal Ra * @author Olivier Paroz - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Victor Dubiniuk * @author Vincent Petry * diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php index 04b92283f3..581a205d6f 100644 --- a/settings/ajax/enableapp.php +++ b/settings/ajax/enableapp.php @@ -2,6 +2,7 @@ /** * @author Bart Visscher * @author Christopher Schäpers + * @author Joas Schilling * @author Kamil Domanski * @author Lukas Reschke * @author Robin Appelman diff --git a/settings/controller/certificatecontroller.php b/settings/controller/certificatecontroller.php index 750144e7a2..e360a1053c 100644 --- a/settings/controller/certificatecontroller.php +++ b/settings/controller/certificatecontroller.php @@ -2,7 +2,7 @@ /** * @author Björn Schießle * @author Lukas Reschke - * @author Robin McCorkell + * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/settings/controller/checksetupcontroller.php b/settings/controller/checksetupcontroller.php index bd0737aacc..491821b44c 100644 --- a/settings/controller/checksetupcontroller.php +++ b/settings/controller/checksetupcontroller.php @@ -4,7 +4,7 @@ * @author Lukas Reschke * @author Morris Jobke * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 diff --git a/settings/controller/userscontroller.php b/settings/controller/userscontroller.php index ddabd308a5..1a77172db9 100644 --- a/settings/controller/userscontroller.php +++ b/settings/controller/userscontroller.php @@ -4,6 +4,7 @@ * @author Lukas Reschke * @author Morris Jobke * @author Robin Appelman + * @author Roeland Jago Douma * @author Thomas Müller * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/settings/personal.php b/settings/personal.php index 8cbcf923a5..d6d016c654 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -12,9 +12,9 @@ * @author Marvin Thomas Rabe * @author Morris Jobke * @author Robin Appelman - * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Thomas Müller + * @author Vincent Petry * @author Volkan Gezer * * @copyright Copyright (c) 2015, ownCloud, Inc. diff --git a/settings/users.php b/settings/users.php index f16cbca2ae..59cc94f502 100644 --- a/settings/users.php +++ b/settings/users.php @@ -12,7 +12,7 @@ * @author Morris Jobke * @author Robin Appelman * @author Robin McCorkell - * @author Roeland Jago Douma + * @author Roeland Jago Douma * @author Stephan Peijnik * @author Thomas Müller * diff --git a/version.php b/version.php index 008bb7dafc..dd499a8d1d 100644 --- a/version.php +++ b/version.php @@ -1,9 +1,9 @@ * @author Frank Karlitschek + * @author Joas Schilling * @author Lukas Reschke - * @author Roeland Jago Douma + * @author Morris Jobke * @author Vincent Petry * * @copyright Copyright (c) 2015, ownCloud, Inc. From 76b8371a471d0c2178cdeec45f8cee049774b44e Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 26 Oct 2015 13:55:02 +0100 Subject: [PATCH 4/4] Update AUTHOR file --- AUTHORS | 199 +++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 177 insertions(+), 22 deletions(-) diff --git a/AUTHORS b/AUTHORS index ea5bab2748..efcc7efd12 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,26 +1,181 @@ ownCloud is written by: - Frank Karlitschek - Robin Appelman - Jakob Sack - Jan-Christoph Borchardt - Michael Gapczynski - Arthur Schiwon - Bart Visscher - Georg Ehrke - Brice Maron - Tom Needham - Marvin Thomas Rabe - Florian Pritz - Bartek Przybylski - Thomas Müller - Klaas Freitag - Sam Tuke - Simon Birnbach - Lukas Reschke - Christian Reiner - Daniel Molkentin - Vincent Petry - … + - AW-UC + - Adam Williamson + - Administrator + - Aldo "xoen" Giambelluca + - Alexander Bergolth + - Andreas Ergenzinger + - Andreas Fischer + - Andrew Brown + - André Gaul + - Arthur Schiwon + - Bart Visscher + - Bartek Przybylski + - Bastien Ho + - Benjamin Diele + - Benjamin Liles + - Bernhard Posselt + - Bernhard Reiter + - Birk Borkason + - Björn Schießle + - Borjan Tchakaloff + - Brice Maron + - Byron Marohn + - Carlos Cerrillo + - Christian Berendt + - Christian Kampka + - Christian Reiner + - Christopher Schäpers + - Christopher T. Johnson + - Clark Tomlinson + - Craig Morrissey + - Dan Bartram + - Daniel Hansson + - Daniel Molkentin + - David Prévot + - David Reagan + - Dominik Schmidt + - Donald Buczek + - Fabian Henze + - Felix Böhm + - Felix Moeller + - Florian Preinstorfer + - Florian Pritz + - Florian Scholz + - Florin Peter + - Frank Karlitschek + - François Kubler + - Frédéric Fortier + - Gadzy + - Georg Ehrke + - Guillaume AMAT + - Hasso Tepper + - Hugo Gonzalez Labrador + - Individual IT Services + - Jakob Sack + - Jan-Christoph Borchardt + - Jean-Louis Dupond + - Jens-Christian Fischer + - Jesus Macias + - Joas Schilling + - Johan Björk + - Johannes Willnecker + - Jonny007-MKD <1-23-4-5@web.de> + - Jost Baron + - Jörn Friedrich Dreyer + - Kamil Domanski + - Klaas Freitag + - Laurens Post + - Laurens Post + - Lennart Rosam + - Lennart Rosam + - Lorenzo M. Catucci + - Lukas Reschke + - Luke Policinski + - Lyonel Vincent + - Markus Goetz + - Martin Konrad + - Martin Konrad + - Martin Mattel + - Marvin Thomas Rabe + - Masaki Kawabata Neto + - Matthias Rieber + - Michael Gapczynski + - Michael Göhler + - Michael Kuhn + - Michael Roitzsch + - Michael Roth + - Michael Telatynski <7t3chguy@gmail.com> + - Miguel Prokop + - Morris Jobke + - Nicolai Ehemann + - Nicolas Grekas + - Nmz + - Normal Ra + - Oliver Gasser + - Oliver Kohl D.Sc. + - Olivier Paroz + - Otto Sabart + - Owen Winkler + - Pascal de Bruijn + - Patrick Paysant + - Pellaeon Lin + - Phil Davis + - Philipp Kapfer + - Philippe Jung + - Philippe Le Brouster + - Qingping Hou + - Raghu Nayyar + - Ramiro Aparicio + - Randolph Carter + - RealRancor + - Remco Brenninkmeijer + - Robin Appelman + - Robin McCorkell + - Roeland Jago Douma + - Roman Geber + - Ross Nicoll + - SA + - Sam Tuke + - Sander + - Sascha Schmidt + - Scrutinizer Auto-Fixer + - Sean Comeau + - Sebastian Döll + - Serge Martin + - Simon Könnecke + - Sjors van der Pluijm + - Stefan Herbrechtsmeier + - Stefan Rado + - Steffen Lindner + - Stephan Peijnik + - TheSFReader + - Thibaut GRIDEL + - Thomas Müller + - Thomas Schmidt + - Thomas Tanghus + - Tigran Mkrtchyan + - Tobia De Koninck + - Tobias Kaminsky + - Tom Needham + - Valerio Ponte + - Victor Dubiniuk + - Viktor Szépe + - Vincent Cloutier + - Vincent Petry + - Volkan Gezer + - Volker Fröhlich + - adrien + - brumsel + - cetra3 + - cmeh + - dampfklon + - davidgumberg + - derkostka + - drarko + - eduardo + - fabian + - goodkiller + - helix84 + - hkjolhede + - ideaship + - itheiss + - j-ed + - jknockaert + - macjohnny + - marc0s + - martin-rueegg + - michag86 + - nishiki + - root + - scambra + - scolebrook + - shkdee + - sualko + - tbartenstein + - tbelau666 + - unclejamal3000 + - voxsim With help from many libraries and frameworks including: Open Collaboration Services