diff options
author | Jenkins for ownCloud <owncloud-bot@tmit.eu> | 2015-02-23 05:28:53 -0500 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-02-23 12:13:59 +0100 |
commit | 6a1a4880f0d556fb090f19a5019fec31916f5c36 (patch) | |
tree | 0506a0d12811368923096a41c51050059c5374db /lib/repair | |
parent | fd6d56290e3a7525cc523e6532df07381f9b9eee (diff) | |
download | nextcloud-server-6a1a4880f0d556fb090f19a5019fec31916f5c36.tar.gz nextcloud-server-6a1a4880f0d556fb090f19a5019fec31916f5c36.zip |
Updating license headers
Diffstat (limited to 'lib/repair')
-rw-r--r-- | lib/repair/assetcache.php | 23 | ||||
-rw-r--r-- | lib/repair/cleantags.php | 22 | ||||
-rw-r--r-- | lib/repair/collation.php | 22 | ||||
-rw-r--r-- | lib/repair/filletags.php | 22 | ||||
-rw-r--r-- | lib/repair/innodb.php | 24 | ||||
-rw-r--r-- | lib/repair/preview.php | 21 | ||||
-rw-r--r-- | lib/repair/repairconfig.php | 22 | ||||
-rw-r--r-- | lib/repair/repairmimetypes.php | 26 | ||||
-rw-r--r-- | lib/repair/searchlucenetables.php | 22 |
9 files changed, 158 insertions, 46 deletions
diff --git a/lib/repair/assetcache.php b/lib/repair/assetcache.php index 1bc2b91ad86..ba0e6290469 100644 --- a/lib/repair/assetcache.php +++ b/lib/repair/assetcache.php @@ -1,11 +1,24 @@ <?php /** - * Copyright (c) 2014 Thomas Müller <deepdiver@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * @author Adam Williamson <awilliam@redhat.com> + * @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\Repair; use Doctrine\DBAL\Platforms\MySqlPlatform; diff --git a/lib/repair/cleantags.php b/lib/repair/cleantags.php index fdc36c110ba..602ca24e3e6 100644 --- a/lib/repair/cleantags.php +++ b/lib/repair/cleantags.php @@ -1,11 +1,23 @@ <?php /** - * Copyright (c) 2015 Joas Schilling <nickvergessen@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * @author Joas Schilling <nickvergessen@gmx.de> + * + * @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\Repair; use OC\DB\Connection; diff --git a/lib/repair/collation.php b/lib/repair/collation.php index 2247cf82d0a..b3a87f53c7c 100644 --- a/lib/repair/collation.php +++ b/lib/repair/collation.php @@ -1,11 +1,23 @@ <?php /** - * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * @author Robin Appelman <icewind@owncloud.com> + * + * @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\Repair; use Doctrine\DBAL\Platforms\MySqlPlatform; diff --git a/lib/repair/filletags.php b/lib/repair/filletags.php index b94ae385f05..18727bdaf82 100644 --- a/lib/repair/filletags.php +++ b/lib/repair/filletags.php @@ -1,11 +1,23 @@ <?php /** - * Copyright (c) 2015 Thomas Müller <deepdiver@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * @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\Repair; use Doctrine\DBAL\Query\QueryBuilder; diff --git a/lib/repair/innodb.php b/lib/repair/innodb.php index 0e13c30be95..1afa07c263e 100644 --- a/lib/repair/innodb.php +++ b/lib/repair/innodb.php @@ -1,11 +1,25 @@ <?php /** - * Copyright (c) 2014 Thomas Müller <deepdiver@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * @author Jörn Friedrich Dreyer <jfd@butonic.de> + * @author Robin Appelman <icewind@owncloud.com> + * @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\Repair; use Doctrine\DBAL\Platforms\MySqlPlatform; diff --git a/lib/repair/preview.php b/lib/repair/preview.php index 1216b3fe68a..2284da93734 100644 --- a/lib/repair/preview.php +++ b/lib/repair/preview.php @@ -1,9 +1,22 @@ <?php /** - * Copyright (c) 2014 Georg Ehrke <georg@ownCloud.com> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * @author Georg Ehrke <georg@owncloud.com> + * + * @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\Repair; diff --git a/lib/repair/repairconfig.php b/lib/repair/repairconfig.php index e9b322da826..4af0c05d416 100644 --- a/lib/repair/repairconfig.php +++ b/lib/repair/repairconfig.php @@ -1,11 +1,23 @@ <?php /** - * Copyright (c) 2014 Lukas Reschke <lukas@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * @author Lukas Reschke <lukas@owncloud.com> + * + * @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\Repair; use OC\Hooks\BasicEmitter; diff --git a/lib/repair/repairmimetypes.php b/lib/repair/repairmimetypes.php index 06cd144bff4..551a21320f0 100644 --- a/lib/repair/repairmimetypes.php +++ b/lib/repair/repairmimetypes.php @@ -1,13 +1,25 @@ <?php /** - * Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com> - * Copyright (c) 2014 Jörn Dreyer jfd@owncloud.com - * Copyright (c) 2014 Olivier Paroz owncloud@oparoz.com - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * @author Normal Ra <normalraw@gmail.com> + * @author Olivier Paroz <github@oparoz.com> + * @author Vincent Petry <pvince81@owncloud.com> + * + * @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\Repair; use OC\Hooks\BasicEmitter; diff --git a/lib/repair/searchlucenetables.php b/lib/repair/searchlucenetables.php index 32231e9a1d3..ca97c04e14e 100644 --- a/lib/repair/searchlucenetables.php +++ b/lib/repair/searchlucenetables.php @@ -1,11 +1,23 @@ <?php /** - * Copyright (c) 2014 Jörn Friedrich Dreyer <jfd@owncloud.com> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. + * @author Jörn Friedrich Dreyer <jfd@butonic.de> + * + * @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\Repair; use OC\Hooks\BasicEmitter; |