From b7a3a77529c9d38708df54d50b30157bfae45371 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 22 Jul 2016 12:24:21 +0200 Subject: [PATCH 1/4] Fix links to the repo --- appinfo/info.xml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index 98948a777..aaf398a75 100755 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -3,7 +3,7 @@ activity Activity - This application enables users to view actions related to their files in ownCloud. + This application enables users to view actions related to their files in Nextcloud. Once enabled, users will see a new icon “Activity” in their apps menu. When clicked, a new page appears for users to track the activity related to files – from new files, to deleted files, move, rename, updates and shared activity. The user can configure their individual activity settings in their personal menu. @@ -20,6 +20,14 @@ + + + https://docs.nextcloud.org/server/9/admin_manual/configuration_server/activity_configuration.html + + https://github.com/nextcloud/activity/ + https://github.com/nextcloud/activity/issues + https://github.com/nextcloud/activity.git + From 6701b523ec6b5504623e8c3fdaa68e8a80d7bde5 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 22 Jul 2016 12:26:23 +0200 Subject: [PATCH 2/4] Fix issue template --- issue_template.md | 82 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 issue_template.md diff --git a/issue_template.md b/issue_template.md new file mode 100644 index 000000000..da76766d8 --- /dev/null +++ b/issue_template.md @@ -0,0 +1,82 @@ + +### Steps to reproduce +1. +2. +3. + +### Expected behaviour +Tell us what should happen + +### Actual behaviour +Tell us what happens instead + +### Server configuration +**Operating system**: + +**Web server:** + +**Database:** + +**PHP version:** + +**Nextcloud version:** (see Nextcloud admin page) + +**Where did you install Nextcloud from:** + +**Signing status:** + +``` +Login as admin user into your Nextcloud and access +http://example.com/index.php/settings/integrity/failed +paste the results here. +``` + +**List of activated apps:** + +``` +If you have access to your command line run e.g.: +sudo -u www-data php occ app:list +from within your Nextcloud installation folder +``` + +**The content of config/config.php:** + +``` +If you have access to your command line run e.g.: +sudo -u www-data php occ config:list system +from within your Nextcloud installation folder + +or + +Insert your config.php content here +(Without the database password, passwordsalt and secret) +``` + +**Are you using an external user-backend, if yes which one:** LDAP/ActiveDirectory/Webdav/... + +### Client configuration +**Browser:** + +**Operating system:** + +### Logs + +#### Nextcloud log (data/nextcloud.log) +``` +Insert your Nextcloud log here +``` + +#### Browser log +``` +Insert your browser log here, this could for example include: + +a) The javascript console log +b) The network log +c) ... +``` From 47713ba9508663fbe9981f0f7f59d3f7fb348fb9 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 22 Jul 2016 12:30:27 +0200 Subject: [PATCH 3/4] Fix more naming issues --- docs/endpoint-v2.md | 2 +- lib/mailqueuehandler.php | 2 +- templates/email.notification.php | 2 +- tests/js/karma.config.js | 14 +++++++------- tests/js/package.json | 10 +++++----- tests/template/rsstest.php | 17 ++++++++--------- 6 files changed, 23 insertions(+), 24 deletions(-) diff --git a/docs/endpoint-v2.md b/docs/endpoint-v2.md index 043e24933..f29e433c6 100644 --- a/docs/endpoint-v2.md +++ b/docs/endpoint-v2.md @@ -73,7 +73,7 @@ Field name | Type | Value description `message` | string (Optional) | Untranslated arbitrary message (unused by core apps) `messageparams` | array | See `subjectparams` `message_prepared` | string | Translated version of the message with parameters included (See section `MarkUp`) -`link` | string (Optional) | A full URL pointing to a suitable location (e.g. `'http://localhost/ownCloud/master/core/index.php/apps/files/?dir=%2Ffolder'` in case the folder got created) +`link` | string (Optional) | A full URL pointing to a suitable location (e.g. `'http://localhost/cloud/master/core/index.php/apps/files/?dir=%2Ffolder'` in case the folder got created) `object_type` | string (Optional) | Type of the object this activity is about (e.g. `'files'` is used for files and folders) `object_id` | int (Optional) | ID of the object this activity is about (e.g. ID in the file cache is used for files and folders) `object_name` | string (Optional) | Name of the object this activity is about (e.g. for files it's the relative path to the user's root: `'/folder/.travis.yml'`) diff --git a/lib/mailqueuehandler.php b/lib/mailqueuehandler.php index a490bd3a6..ccbece38d 100644 --- a/lib/mailqueuehandler.php +++ b/lib/mailqueuehandler.php @@ -252,7 +252,7 @@ public function sendEmailToUser($userName, $email, $lang, $timezone, $maxTime) { $alttext->assign('username', $user->getDisplayName()); $alttext->assign('activities', $activityList); $alttext->assign('skippedCount', $skippedCount); - $alttext->assign('owncloud_installation', $this->urlGenerator->getAbsoluteURL('/')); + $alttext->assign('installation', $this->urlGenerator->getAbsoluteURL('/')); $alttext->assign('overwriteL10N', $l); $emailText = $alttext->fetchPage(); diff --git a/templates/email.notification.php b/templates/email.notification.php index 115463848..afc003dd6 100644 --- a/templates/email.notification.php +++ b/templates/email.notification.php @@ -7,7 +7,7 @@ p("\n"); p("\n"); -print_unescaped($l->t('You are receiving this email because the following things happened at %s', array($_['owncloud_installation']))); +print_unescaped($l->t('You are receiving this email because the following things happened at %s', array($_['installation']))); p("\n"); p("\n"); diff --git a/tests/js/karma.config.js b/tests/js/karma.config.js index 57078976a..8fcc282d2 100644 --- a/tests/js/karma.config.js +++ b/tests/js/karma.config.js @@ -40,27 +40,27 @@ module.exports = function(config) { ]; var basePath = '../../'; - var ownCloudPath = '../../'; + var instancePath = '../../'; - var coreModules = require(ownCloudPath + '../../core/js/core.json'); + var coreModules = require(instancePath + '../../core/js/core.json'); var coreLibs = [ - ownCloudPath + 'core/js/tests/lib/sinon-1.15.4.js', - ownCloudPath + 'core/js/tests/specHelper.js' + instancePath + 'core/js/tests/lib/sinon-1.15.4.js', + instancePath + 'core/js/tests/specHelper.js' ]; coreLibs = coreLibs.concat(coreModules.vendor.map(function prependPath(path) { - return ownCloudPath + 'core/vendor/' + path; + return instancePath + 'core/vendor/' + path; })); coreLibs = coreLibs.concat(coreModules.modules.map(function prependPath(path) { - return ownCloudPath + 'core/js/' + path; + return instancePath + 'core/js/' + path; })); var filesAppFiles = [ 'fileinfomodel.js', 'detailtabview.js' ].map(function prependPath(path) { - return ownCloudPath + 'apps/files/js/' + path; + return instancePath + 'apps/files/js/' + path; }); var files = [].concat(coreLibs, filesAppFiles, srcFiles, testFiles); diff --git a/tests/js/package.json b/tests/js/package.json index 41daa46d7..882458153 100644 --- a/tests/js/package.json +++ b/tests/js/package.json @@ -1,14 +1,14 @@ { - "name": "owncloud-activity", - "description": "ownCloud Activity App", + "name": "nextcloud-activity", + "description": "Nextcloud Activity App", "version": "0.0.1", "private": true, - "homepage": "https://github.com/owncloud/activity", + "homepage": "https://github.com/nextcloud/activity", "repository": { "type": "git", - "url": "git@github.com:owncloud/activity.git" + "url": "git@github.com:nextcloud/activity.git" }, - "bugs": "https://github.com/owncloud/activity/issues", + "bugs": "https://github.com/nextcloud/activity/issues", "contributors": [], "dependencies": {}, "devDependencies": { diff --git a/tests/template/rsstest.php b/tests/template/rsstest.php index b7c676f4c..62c5eddc3 100644 --- a/tests/template/rsstest.php +++ b/tests/template/rsstest.php @@ -33,7 +33,7 @@ protected function setUp() { public function dataEmpty() { return [ ['de', 'http://localhost', 'description', 'Fri, 28 Aug 2015 11:47:14 +0000'], - ['en', 'http://owncloud.org', 'Desc', 'Fri, 28 Aug 2015 11:47:15 +0000'], + ['en', 'http://nextcloud.org', 'Desc', 'Fri, 28 Aug 2015 11:47:15 +0000'], ]; } @@ -43,7 +43,6 @@ public function dataEmpty() { * @param string $language * @param string $link * @param string $description - * @param int $timeStamp * @param string $timeDate */ public function testEmpty($language, $link, $description, $timeDate) { @@ -85,24 +84,24 @@ public function dataContent() { ], [ [ - ['activity_id' => 42, 'subject' => 'text', 'subject_prepared' => 'html', 'link' => 'http://doc.owncloud.org', 'timestamp' => 21, 'message' => 'text2', 'message_prepared' => 'html'], + ['activity_id' => 42, 'subject' => 'text', 'subject_prepared' => 'html', 'link' => 'http://docs.nextcloud.org', 'timestamp' => 21, 'message' => 'text2', 'message_prepared' => 'html'], ], ' ' . "\n" . ' 42' . "\n" . ' <no>html</no>' - . "\n" . ' http://doc.owncloud.org' + . "\n" . ' http://docs.nextcloud.org' . "\n" . ' Thu, 01 Jan 1970 00:00:21 +0000' . "\n" . ' ' . "\n" . ' ', ], [ [ - ['activity_id' => 42, 'subject' => 'text', 'subject_prepared' => "line\nbreak", 'link' => 'http://doc.owncloud.org', 'timestamp' => 21, 'message' => 'text2', 'message_prepared' => "line2\nbreak2"], + ['activity_id' => 42, 'subject' => 'text', 'subject_prepared' => "line\nbreak", 'link' => 'http://docs.nextcloud.org', 'timestamp' => 21, 'message' => 'text2', 'message_prepared' => "line2\nbreak2"], ], ' ' . "\n" . ' 42' . "\n" . ' line break' - . "\n" . ' http://doc.owncloud.org' + . "\n" . ' http://docs.nextcloud.org' . "\n" . ' Thu, 01 Jan 1970 00:00:21 +0000' . "\n" . ' break2]]>' . "\n" . ' ', @@ -119,7 +118,7 @@ public function dataContent() { public function testContent(array $activities, $expected) { $template = new TemplateResponse('activity', 'rss', [ 'rssLang' => 'en', - 'rssLink' => 'http://owncloud.org', + 'rssLink' => 'http://nextcloud.org', 'rssPubDate' => 'Fri, 28 Aug 2015 11:47:15 +0000', 'description' => 'Desc', 'activities' => $activities, @@ -131,11 +130,11 @@ public function testContent(array $activities, $expected) { . "\n" . ' ' . "\n" . ' Activity feed' . "\n" . ' en' - . "\n" . ' http://owncloud.org' + . "\n" . ' http://nextcloud.org' . "\n" . ' Desc' . "\n" . ' Fri, 28 Aug 2015 11:47:15 +0000' . "\n" . ' Fri, 28 Aug 2015 11:47:15 +0000' - . "\n" . ' ' + . "\n" . ' ' . "\n"; $suffixStub = "\n" . ' ' . "\n" . '' . "\n"; From ef784f4f7cbfa13c9d9a44a6808c0e062d0dc4c9 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 22 Jul 2016 12:46:49 +0200 Subject: [PATCH 4/4] Run the license script --- appinfo/app.php | 7 ++--- appinfo/application.php | 5 ++-- appinfo/install.php | 5 ++-- appinfo/routes.php | 9 ++++--- appinfo/update.php | 5 ++-- controller/activities.php | 5 ++-- controller/endpoint.php | 5 ++-- controller/feed.php | 5 ++-- controller/ocsendpoint.php | 5 ++-- controller/settings.php | 7 ++--- extension/files.php | 5 ++-- extension/files_sharing.php | 5 ++-- lib/api.php | 5 ++-- lib/backgroundjob/emailnotification.php | 5 ++-- lib/backgroundjob/expireactivities.php | 5 ++-- lib/consumer.php | 5 ++-- lib/data.php | 7 ++--- lib/datahelper.php | 5 ++-- lib/exception/invalidfilterexception.php | 5 ++-- lib/fileshooks.php | 7 ++--- lib/fileshooksstatic.php | 5 ++-- lib/formatter/baseformatter.php | 5 ++-- lib/formatter/cloudidformatter.php | 5 ++-- lib/formatter/fileformatter.php | 5 ++-- lib/formatter/iformatter.php | 5 ++-- lib/formatter/userformatter.php | 5 ++-- lib/grouphelper.php | 5 ++-- lib/hooks.php | 5 ++-- lib/mailqueuehandler.php | 6 +++-- lib/navigation.php | 7 ++--- lib/parameter/collection.php | 5 ++-- lib/parameter/factory.php | 5 ++-- lib/parameter/iparameter.php | 5 ++-- lib/parameter/parameter.php | 5 ++-- lib/plaintextparser.php | 5 ++-- lib/usersettings.php | 5 ++-- lib/viewinfocache.php | 5 ++-- personal.php | 5 ++-- templates/email.notification.php | 21 +++++++++++++++ templates/personal.php | 26 ++++++++++++++++--- templates/rss.php | 24 ++++++++++++++--- templates/stream.app.navigation.php | 25 +++++++++++++++--- templates/stream.body.php | 26 ++++++++++--------- tests/apitest.php | 5 ++-- tests/appinfo/applicationtest.php | 5 ++-- tests/appinfo/apptest.php | 5 ++-- tests/appinfo/installtest.php | 5 ++-- tests/appinfo/updatetest.php | 5 ++-- tests/backgroundjob/emailnotificationtest.php | 5 ++-- tests/backgroundjob/expireactivitiestest.php | 5 ++-- tests/bootstrap.php | 5 ++-- tests/consumertest.php | 5 ++-- tests/controller/activitiestest.php | 5 ++-- tests/controller/feedtest.php | 5 ++-- tests/controller/ocsendpointtest.php | 5 ++-- tests/controller/settingstest.php | 7 ++--- tests/datadeleteactivitestest.php | 5 ++-- tests/datahelpertest.php | 5 ++-- tests/datatest.php | 5 ++-- tests/fileshookstest.php | 5 ++-- tests/formatter/baseformattertest.php | 5 ++-- tests/formatter/cloudidformattertest.php | 5 ++-- tests/formatter/fileformattertest.php | 5 ++-- tests/formatter/userformattertest.php | 5 ++-- tests/grouphelpertest.php | 5 ++-- tests/hooksdeleteusertest.php | 5 ++-- tests/lib/viewinfocachetest.php | 5 ++-- tests/mailqueuehandlertest.php | 5 ++-- tests/mock/extension.php | 5 ++-- tests/navigationtest.php | 5 ++-- tests/parameter/collectiontest.php | 5 ++-- tests/parameter/factorytest.php | 5 ++-- tests/parameter/parametertest.php | 5 ++-- tests/personaltest.php | 5 ++-- tests/template/rsstest.php | 5 ++-- tests/testcase.php | 5 ++-- tests/usersettingstest.php | 5 ++-- 77 files changed, 326 insertions(+), 173 deletions(-) diff --git a/appinfo/app.php b/appinfo/app.php index 1cc9e0827..413ee6ce9 100755 --- a/appinfo/app.php +++ b/appinfo/app.php @@ -1,9 +1,10 @@ - * @author Joas Schilling - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Frank Karlitschek + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/appinfo/application.php b/appinfo/application.php index 6a980a65c..82c98b9ec 100644 --- a/appinfo/application.php +++ b/appinfo/application.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/appinfo/install.php b/appinfo/install.php index 3a1e9ad27..d5122b72f 100644 --- a/appinfo/install.php +++ b/appinfo/install.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/appinfo/routes.php b/appinfo/routes.php index dfa10de4f..d95ae2d28 100755 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -1,10 +1,11 @@ - * @author Joas Schilling - * @author Lukas Reschke - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Frank Karlitschek + * @author Joas Schilling + * @author Lukas Reschke + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/appinfo/update.php b/appinfo/update.php index 6b699324a..9a71ef7d4 100644 --- a/appinfo/update.php +++ b/appinfo/update.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/controller/activities.php b/controller/activities.php index 5fcb9f9df..8c9facb0b 100644 --- a/controller/activities.php +++ b/controller/activities.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/controller/endpoint.php b/controller/endpoint.php index b1bcbcd02..f98aa0882 100644 --- a/controller/endpoint.php +++ b/controller/endpoint.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/controller/feed.php b/controller/feed.php index a79ac1c9b..c9568d6a0 100644 --- a/controller/feed.php +++ b/controller/feed.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/controller/ocsendpoint.php b/controller/ocsendpoint.php index a417b31a8..6917bc0ab 100644 --- a/controller/ocsendpoint.php +++ b/controller/ocsendpoint.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/controller/settings.php b/controller/settings.php index 5fb077fb1..21ffb00aa 100644 --- a/controller/settings.php +++ b/controller/settings.php @@ -1,9 +1,10 @@ - * @author Lukas Reschke - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * @author Lukas Reschke + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/extension/files.php b/extension/files.php index 1e56c5627..28798a410 100644 --- a/extension/files.php +++ b/extension/files.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/extension/files_sharing.php b/extension/files_sharing.php index 737926995..f37f7c0e7 100644 --- a/extension/files_sharing.php +++ b/extension/files_sharing.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/api.php b/lib/api.php index 18299f200..2cd780da4 100644 --- a/lib/api.php +++ b/lib/api.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/backgroundjob/emailnotification.php b/lib/backgroundjob/emailnotification.php index 91a8f189d..a64ab075b 100644 --- a/lib/backgroundjob/emailnotification.php +++ b/lib/backgroundjob/emailnotification.php @@ -1,9 +1,10 @@ + * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling * @author Morris Jobke * - * @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/lib/backgroundjob/expireactivities.php b/lib/backgroundjob/expireactivities.php index 14d90c3e9..bc083b299 100644 --- a/lib/backgroundjob/expireactivities.php +++ b/lib/backgroundjob/expireactivities.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/consumer.php b/lib/consumer.php index 59cc3003c..afb3c252a 100644 --- a/lib/consumer.php +++ b/lib/consumer.php @@ -1,9 +1,10 @@ + * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling * @author Thomas Müller * - * @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/lib/data.php b/lib/data.php index 533eeb08d..c1ac18705 100755 --- a/lib/data.php +++ b/lib/data.php @@ -1,10 +1,11 @@ - * @author Joas Schilling + * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Frank Karlitschek + * @author Joas Schilling * @author Thomas Müller * - * @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/lib/datahelper.php b/lib/datahelper.php index 04db4bbee..982220f31 100644 --- a/lib/datahelper.php +++ b/lib/datahelper.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/exception/invalidfilterexception.php b/lib/exception/invalidfilterexception.php index 901a85669..86bd81847 100644 --- a/lib/exception/invalidfilterexception.php +++ b/lib/exception/invalidfilterexception.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/fileshooks.php b/lib/fileshooks.php index 75e45340d..0f489fb5e 100755 --- a/lib/fileshooks.php +++ b/lib/fileshooks.php @@ -1,10 +1,11 @@ - * @author Joas Schilling + * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Frank Karlitschek + * @author Joas Schilling * @author Thomas Müller * - * @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/lib/fileshooksstatic.php b/lib/fileshooksstatic.php index 3fd4d7e8e..3c44f2f60 100755 --- a/lib/fileshooksstatic.php +++ b/lib/fileshooksstatic.php @@ -1,9 +1,10 @@ + * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling * @author Vincent Petry * - * @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/lib/formatter/baseformatter.php b/lib/formatter/baseformatter.php index 848b0833a..0f4096a8f 100644 --- a/lib/formatter/baseformatter.php +++ b/lib/formatter/baseformatter.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/formatter/cloudidformatter.php b/lib/formatter/cloudidformatter.php index cd03aafd5..8fe4e458e 100644 --- a/lib/formatter/cloudidformatter.php +++ b/lib/formatter/cloudidformatter.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/formatter/fileformatter.php b/lib/formatter/fileformatter.php index 2e28e0745..5add9d9f3 100644 --- a/lib/formatter/fileformatter.php +++ b/lib/formatter/fileformatter.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/formatter/iformatter.php b/lib/formatter/iformatter.php index c7b9f9279..d4112f0b6 100644 --- a/lib/formatter/iformatter.php +++ b/lib/formatter/iformatter.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/formatter/userformatter.php b/lib/formatter/userformatter.php index c36d0a69f..937fba989 100644 --- a/lib/formatter/userformatter.php +++ b/lib/formatter/userformatter.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/grouphelper.php b/lib/grouphelper.php index 64407ed9b..32d282648 100644 --- a/lib/grouphelper.php +++ b/lib/grouphelper.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/hooks.php b/lib/hooks.php index f822e57bf..075d1f2f7 100755 --- a/lib/hooks.php +++ b/lib/hooks.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/mailqueuehandler.php b/lib/mailqueuehandler.php index ccbece38d..f26f2bd25 100644 --- a/lib/mailqueuehandler.php +++ b/lib/mailqueuehandler.php @@ -1,8 +1,10 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * @author Lukas Reschke + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/navigation.php b/lib/navigation.php index bf72fecd6..cd4afc025 100644 --- a/lib/navigation.php +++ b/lib/navigation.php @@ -1,9 +1,10 @@ - * @author Roeland Jago Douma - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * @author Roeland Jago Douma + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/parameter/collection.php b/lib/parameter/collection.php index e04f36f89..d5ad8f6ad 100644 --- a/lib/parameter/collection.php +++ b/lib/parameter/collection.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/parameter/factory.php b/lib/parameter/factory.php index 1d227b991..43fbfe586 100644 --- a/lib/parameter/factory.php +++ b/lib/parameter/factory.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/parameter/iparameter.php b/lib/parameter/iparameter.php index 54e3f3bc3..6aaf57979 100644 --- a/lib/parameter/iparameter.php +++ b/lib/parameter/iparameter.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/parameter/parameter.php b/lib/parameter/parameter.php index 6b82b0a36..3da95e5a5 100644 --- a/lib/parameter/parameter.php +++ b/lib/parameter/parameter.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/plaintextparser.php b/lib/plaintextparser.php index 5748e8021..6987a7e9a 100644 --- a/lib/plaintextparser.php +++ b/lib/plaintextparser.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/usersettings.php b/lib/usersettings.php index 2b6e32b0b..212b671ed 100644 --- a/lib/usersettings.php +++ b/lib/usersettings.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/viewinfocache.php b/lib/viewinfocache.php index 0de9982f7..5c7fd5567 100644 --- a/lib/viewinfocache.php +++ b/lib/viewinfocache.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/personal.php b/personal.php index 2ca6ea469..6d931be65 100644 --- a/personal.php +++ b/personal.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/templates/email.notification.php b/templates/email.notification.php index afc003dd6..ed9c26622 100644 --- a/templates/email.notification.php +++ b/templates/email.notification.php @@ -1,4 +1,25 @@ + * + * @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 + * + */ + /** @var OC_L10N $l */ /** @var array $_ */ $l = $_['overwriteL10N']; diff --git a/templates/personal.php b/templates/personal.php index f76ab9f64..1239ea5d9 100644 --- a/templates/personal.php +++ b/templates/personal.php @@ -1,7 +1,27 @@ + * @author Jan-Christoph Borchardt + * @author Joas Schilling + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * 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 + * along with this program. If not, see . + * + */ /** @var $l OC_L10N */ /** @var $_ array */ diff --git a/templates/rss.php b/templates/rss.php index f8fccd509..c9c234b69 100644 --- a/templates/rss.php +++ b/templates/rss.php @@ -1,7 +1,25 @@ + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * 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 + * along with this program. If not, see . + * + */ /** @var $l OC_L10N */ /** @var $_ array */ diff --git a/templates/stream.app.navigation.php b/templates/stream.app.navigation.php index 5fee031d5..51aee2e53 100644 --- a/templates/stream.app.navigation.php +++ b/templates/stream.app.navigation.php @@ -1,7 +1,26 @@ + * @author Joas Schilling + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * 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 + * along with this program. If not, see . + * + */ /** @var $l OC_L10N */ /** @var $_ array */ diff --git a/templates/stream.body.php b/templates/stream.body.php index 0664a5390..fc7431f0a 100755 --- a/templates/stream.body.php +++ b/templates/stream.body.php @@ -1,23 +1,25 @@ + * @author Joas Schilling + * @author Thomas Müller * - * @author Frank Karlitschek - * @copyright 2013 Frank Karlitschek frank@owncloud.org + * @license GNU AGPL version 3 or any later version * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. * - * This library is distributed in the hope that it will be useful, + * 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. + * GNU Affero General Public License for more details. * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see . + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . * */ diff --git a/tests/apitest.php b/tests/apitest.php index 18cdeb14b..8ed196c17 100644 --- a/tests/apitest.php +++ b/tests/apitest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/appinfo/applicationtest.php b/tests/appinfo/applicationtest.php index d229d7de8..0c03ca51d 100644 --- a/tests/appinfo/applicationtest.php +++ b/tests/appinfo/applicationtest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/appinfo/apptest.php b/tests/appinfo/apptest.php index 708d8f19a..74442a62e 100644 --- a/tests/appinfo/apptest.php +++ b/tests/appinfo/apptest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/appinfo/installtest.php b/tests/appinfo/installtest.php index b7f0853da..20f8cc4b5 100644 --- a/tests/appinfo/installtest.php +++ b/tests/appinfo/installtest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/appinfo/updatetest.php b/tests/appinfo/updatetest.php index 436ddf909..fd78cff3a 100644 --- a/tests/appinfo/updatetest.php +++ b/tests/appinfo/updatetest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/backgroundjob/emailnotificationtest.php b/tests/backgroundjob/emailnotificationtest.php index 0d52b0a61..8fae4e02b 100644 --- a/tests/backgroundjob/emailnotificationtest.php +++ b/tests/backgroundjob/emailnotificationtest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/backgroundjob/expireactivitiestest.php b/tests/backgroundjob/expireactivitiestest.php index 4815f9853..2a8ff2d96 100644 --- a/tests/backgroundjob/expireactivitiestest.php +++ b/tests/backgroundjob/expireactivitiestest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 13b3d6eee..8a2f1658b 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -1,9 +1,10 @@ + * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling * @author Jörn Friedrich Dreyer * - * @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/tests/consumertest.php b/tests/consumertest.php index bf757cc62..cbec03813 100644 --- a/tests/consumertest.php +++ b/tests/consumertest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/controller/activitiestest.php b/tests/controller/activitiestest.php index d3521e1dc..40078747e 100644 --- a/tests/controller/activitiestest.php +++ b/tests/controller/activitiestest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/controller/feedtest.php b/tests/controller/feedtest.php index e4c915a3c..f53947244 100644 --- a/tests/controller/feedtest.php +++ b/tests/controller/feedtest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/controller/ocsendpointtest.php b/tests/controller/ocsendpointtest.php index 494cee2e5..b6079e8d1 100644 --- a/tests/controller/ocsendpointtest.php +++ b/tests/controller/ocsendpointtest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/controller/settingstest.php b/tests/controller/settingstest.php index d2d41d430..ed229fb96 100644 --- a/tests/controller/settingstest.php +++ b/tests/controller/settingstest.php @@ -1,9 +1,10 @@ - * @author Lukas Reschke - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * @author Lukas Reschke + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/datadeleteactivitestest.php b/tests/datadeleteactivitestest.php index a280c99a9..42746cfa4 100644 --- a/tests/datadeleteactivitestest.php +++ b/tests/datadeleteactivitestest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/datahelpertest.php b/tests/datahelpertest.php index f3cb811fc..010d03832 100644 --- a/tests/datahelpertest.php +++ b/tests/datahelpertest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/datatest.php b/tests/datatest.php index fbcfb08bc..9721f4d40 100644 --- a/tests/datatest.php +++ b/tests/datatest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/fileshookstest.php b/tests/fileshookstest.php index 809b3c030..579a44d29 100755 --- a/tests/fileshookstest.php +++ b/tests/fileshookstest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/formatter/baseformattertest.php b/tests/formatter/baseformattertest.php index 129bfe09f..d8bfaa425 100644 --- a/tests/formatter/baseformattertest.php +++ b/tests/formatter/baseformattertest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/formatter/cloudidformattertest.php b/tests/formatter/cloudidformattertest.php index 757fc4d04..ca77fcba6 100644 --- a/tests/formatter/cloudidformattertest.php +++ b/tests/formatter/cloudidformattertest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/formatter/fileformattertest.php b/tests/formatter/fileformattertest.php index b73d4d7de..14216732f 100644 --- a/tests/formatter/fileformattertest.php +++ b/tests/formatter/fileformattertest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/formatter/userformattertest.php b/tests/formatter/userformattertest.php index bd128b41f..fd472b672 100644 --- a/tests/formatter/userformattertest.php +++ b/tests/formatter/userformattertest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/grouphelpertest.php b/tests/grouphelpertest.php index 41feb746f..0fd0d082b 100644 --- a/tests/grouphelpertest.php +++ b/tests/grouphelpertest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/hooksdeleteusertest.php b/tests/hooksdeleteusertest.php index 707a2d2ca..c0236e42b 100644 --- a/tests/hooksdeleteusertest.php +++ b/tests/hooksdeleteusertest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/lib/viewinfocachetest.php b/tests/lib/viewinfocachetest.php index 1b956fd8b..e22143ab0 100644 --- a/tests/lib/viewinfocachetest.php +++ b/tests/lib/viewinfocachetest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/mailqueuehandlertest.php b/tests/mailqueuehandlertest.php index d186bd752..04355ccaf 100644 --- a/tests/mailqueuehandlertest.php +++ b/tests/mailqueuehandlertest.php @@ -1,9 +1,10 @@ + * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling * @author Thomas Müller * - * @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/tests/mock/extension.php b/tests/mock/extension.php index e7f6a03f0..a44a0ba84 100644 --- a/tests/mock/extension.php +++ b/tests/mock/extension.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/navigationtest.php b/tests/navigationtest.php index 550c728e9..44a60d9b4 100644 --- a/tests/navigationtest.php +++ b/tests/navigationtest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/parameter/collectiontest.php b/tests/parameter/collectiontest.php index 4c44ce8a1..4ca0d5c64 100644 --- a/tests/parameter/collectiontest.php +++ b/tests/parameter/collectiontest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/parameter/factorytest.php b/tests/parameter/factorytest.php index 84be4fbd6..9b6b99927 100644 --- a/tests/parameter/factorytest.php +++ b/tests/parameter/factorytest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/parameter/parametertest.php b/tests/parameter/parametertest.php index 3661c2536..cdc2fa742 100644 --- a/tests/parameter/parametertest.php +++ b/tests/parameter/parametertest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/personaltest.php b/tests/personaltest.php index 0f92a0e59..7d7aa1fb6 100644 --- a/tests/personaltest.php +++ b/tests/personaltest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/template/rsstest.php b/tests/template/rsstest.php index 62c5eddc3..5d756d67a 100644 --- a/tests/template/rsstest.php +++ b/tests/template/rsstest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/testcase.php b/tests/testcase.php index 7b93b3669..de2c4bcb7 100644 --- a/tests/testcase.php +++ b/tests/testcase.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/tests/usersettingstest.php b/tests/usersettingstest.php index 09217ee07..83263247a 100644 --- a/tests/usersettingstest.php +++ b/tests/usersettingstest.php @@ -1,8 +1,9 @@ - * * @copyright Copyright (c) 2016, ownCloud, Inc. + * + * @author Joas Schilling + * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify