Skip to content

Commit 4e54128

Browse files
Update license headers
Signed-off-by: Christoph Wurst <[email protected]>
1 parent 3e5aec5 commit 4e54128

File tree

1,749 files changed

+4884
-1352
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,749 files changed

+4884
-1352
lines changed

.mailmap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ Christian Berendt <[email protected]>
6363
Christian Kampka <[email protected]>
6464
Christian Koch <[email protected]>
6565
Christian Reiner <[email protected]> Christian Reiner <[email protected]>
66-
Christoph Wurst <christoph@owncloud.com> Christoph Wurst <[email protected]>
67-
Christoph Wurst <christoph@owncloud.com> Christoph Wurst <christoph@winzerhof-wurst.at>
66+
Christoph Wurst <christoph@winzerhof-wurst.at> Christoph Wurst <[email protected]>
67+
Christoph Wurst <christoph@winzerhof-wurst.at> Christoph Wurst <christoph@owncloud.com>
6868
Christopher Bunn <[email protected]>
6969
Christopher Schäpers <[email protected]> Christopher <[email protected]>
7070
Christopher Schäpers <[email protected]> kondou <[email protected]>

AUTHORS

Lines changed: 114 additions & 26 deletions
Large diffs are not rendered by default.

apps/accessibility/appinfo/app.php

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
<?php
2-
declare (strict_types = 1);
2+
3+
declare(strict_types=1);
4+
35
/**
46
* @copyright Copyright (c) 2018 John Molakvoæ <[email protected]>
57
*
6-
* @author John Molakvoæ <[email protected]>
8+
* @author Alexey Pyltsyn <[email protected]>
9+
* @author John Molakvoæ (skjnldsv) <[email protected]>
10+
* @author Robin Appelman <[email protected]>
711
*
812
* @license GNU AGPL version 3 or any later version
913
*
@@ -18,7 +22,7 @@
1822
* GNU Affero General Public License for more details.
1923
*
2024
* You should have received a copy of the GNU Affero General Public License
21-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
25+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2226
*
2327
*/
2428

apps/accessibility/appinfo/routes.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
/**
33
* @copyright Copyright (c) 2018 John Molakvoæ <[email protected]>
44
*
5-
* @author John Molakvoæ <[email protected]>
5+
* @author Alexey Pyltsyn <[email protected]>
6+
* @author John Molakvoæ (skjnldsv) <[email protected]>
7+
* @author Julius Härtl <[email protected]>
68
*
79
* @license GNU AGPL version 3 or any later version
810
*
@@ -17,7 +19,7 @@
1719
* GNU Affero General Public License for more details.
1820
*
1921
* You should have received a copy of the GNU Affero General Public License
20-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
22+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2123
*
2224
*/
2325

apps/accessibility/lib/AccessibilityProvider.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<?php
2-
32
/**
43
* @copyright Copyright (c) 2018 John Molakvoæ <[email protected]>
54
* @copyright Copyright (c) 2019 Janis Köhr <[email protected]>
65
*
7-
* @author John Molakvoæ <[email protected]>
6+
* @author Greta Doci <[email protected]>
7+
* @author Jan-Christoph Borchardt <[email protected]>
8+
* @author Janis Köhr <[email protected]>
9+
* @author John Molakvoæ (skjnldsv) <[email protected]>
810
*
911
* @license GNU AGPL version 3 or any later version
1012
*
@@ -19,7 +21,7 @@
1921
* GNU Affero General Public License for more details.
2022
*
2123
* You should have received a copy of the GNU Affero General Public License
22-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
24+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2325
*
2426
*/
2527

apps/accessibility/lib/AppInfo/Application.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
/**
33
* @copyright Copyright (c) 2018 John Molakvoæ <[email protected]>
44
*
5-
* @author John Molakvoæ <[email protected]>
5+
* @author Alexey Pyltsyn <[email protected]>
6+
* @author Janis Köhr <[email protected]>
7+
* @author John Molakvoæ (skjnldsv) <[email protected]>
8+
* @author Roeland Jago Douma <[email protected]>
69
*
710
* @license GNU AGPL version 3 or any later version
811
*
@@ -17,7 +20,7 @@
1720
* GNU Affero General Public License for more details.
1821
*
1922
* You should have received a copy of the GNU Affero General Public License
20-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2124
*
2225
*/
2326

apps/accessibility/lib/Controller/AccessibilityController.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
<?php
2-
declare (strict_types = 1);
2+
3+
declare(strict_types=1);
4+
35
/**
46
* @copyright Copyright (c) 2018 John Molakvoæ (skjnldsv) <[email protected]>
57
* @copyright Copyright (c) 2019 Janis Köhr <[email protected]>
68
*
9+
* @author Alexey Pyltsyn <[email protected]>
10+
* @author Janis Köhr <[email protected]>
11+
* @author John Molakvoæ (skjnldsv) <[email protected]>
12+
* @author Julius Härtl <[email protected]>
13+
* @author Roeland Jago Douma <[email protected]>
14+
* @author Thomas Citharel <[email protected]>
15+
*
716
* @license GNU AGPL version 3 or any later version
817
*
918
* This program is free software: you can redistribute it and/or modify

apps/accessibility/lib/Controller/ConfigController.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
<?php
2-
declare (strict_types = 1);
2+
3+
declare(strict_types=1);
4+
35
/**
46
* @copyright Copyright (c) 2018 John Molakvoæ (skjnldsv) <[email protected]>
57
* @copyright Copyright (c) 2019 Janis Köhr <[email protected]>
68
*
9+
* @author Janis Köhr <[email protected]>
10+
* @author John Molakvoæ (skjnldsv) <[email protected]>
11+
* @author Roeland Jago Douma <[email protected]>
12+
*
713
* @license GNU AGPL version 3 or any later version
814
*
915
* This program is free software: you can redistribute it and/or modify

apps/accessibility/lib/Migration/RepairUserConfig.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
<?php
2-
declare (strict_types = 1);
2+
3+
declare(strict_types=1);
4+
35
/**
46
* @copyright Copyright (c) 2019 Janis Köhr <[email protected]>
57
*
8+
* @author Janis Köhr <[email protected]>
9+
*
610
* @license GNU AGPL version 3 or any later version
711
*
812
* This program is free software: you can redistribute it and/or modify

apps/accessibility/lib/Settings/Personal.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @copyright Copyright (c) 2018 John Molakvoæ <[email protected]>
44
* @copyright Copyright (c) 2019 Janis Köhr <[email protected]>
55
*
6-
* @author John Molakvoæ <[email protected]>
6+
* @author John Molakvoæ (skjnldsv) <[email protected]>
77
*
88
* @license GNU AGPL version 3 or any later version
99
*
@@ -18,7 +18,7 @@
1818
* GNU Affero General Public License for more details.
1919
*
2020
* You should have received a copy of the GNU Affero General Public License
21-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
21+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2222
*
2323
*/
2424

0 commit comments

Comments
 (0)