Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 22:32:42 +0300
committerBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 22:32:42 +0300
commit7a3a22bd2757e129c8964d9ddcde15ec53b736bb (patch)
tree3098439a8c6b88ce4063b8de25383019380358d3 /lib
parent24a1b9708c559cc54de2b18a6803493819e97fbf (diff)
Adjust copyright header
Diffstat (limited to 'lib')
-rw-r--r--lib/AppInfo/Application.php2
-rw-r--r--lib/Command/Updater/AfterUpdate.php2
-rw-r--r--lib/Command/Updater/AllFeeds.php2
-rw-r--r--lib/Command/Updater/BeforeUpdate.php2
-rw-r--r--lib/Command/Updater/UpdateFeed.php2
-rw-r--r--lib/Config/AppConfig.php2
-rw-r--r--lib/Config/Config.php2
-rw-r--r--lib/Config/DependencyException.php2
-rw-r--r--lib/Controller/AdminController.php2
-rw-r--r--lib/Controller/ApiController.php2
-rw-r--r--lib/Controller/EntityApiSerializer.php2
-rw-r--r--lib/Controller/ExportController.php2
-rw-r--r--lib/Controller/FeedApiController.php2
-rw-r--r--lib/Controller/FeedController.php2
-rw-r--r--lib/Controller/FolderApiController.php2
-rw-r--r--lib/Controller/FolderController.php2
-rw-r--r--lib/Controller/ItemApiController.php2
-rw-r--r--lib/Controller/ItemController.php2
-rw-r--r--lib/Controller/JSONHttpError.php2
-rw-r--r--lib/Controller/PageController.php2
-rw-r--r--lib/Controller/UserApiController.php2
-rw-r--r--lib/Controller/UtilityApiController.php2
-rw-r--r--lib/Cron/Updater.php2
-rw-r--r--lib/Db/EntityJSONSerializer.php2
-rw-r--r--lib/Db/Feed.php2
-rw-r--r--lib/Db/FeedMapper.php2
-rw-r--r--lib/Db/FeedType.php2
-rw-r--r--lib/Db/Folder.php2
-rw-r--r--lib/Db/FolderMapper.php2
-rw-r--r--lib/Db/IAPI.php2
-rw-r--r--lib/Db/Item.php2
-rw-r--r--lib/Db/ItemMapper.php2
-rw-r--r--lib/Db/MapperFactory.php2
-rw-r--r--lib/Db/Mysql/ItemMapper.php2
-rw-r--r--lib/Db/NewsMapper.php2
-rw-r--r--lib/Db/StatusFlag.php2
-rw-r--r--lib/DependencyInjection/IFactory.php2
-rw-r--r--lib/Explore/RecommendedSiteNotFoundException.php2
-rw-r--r--lib/Explore/RecommendedSites.php2
-rw-r--r--lib/Fetcher/FeedFetcher.php2
-rw-r--r--lib/Fetcher/Fetcher.php2
-rw-r--r--lib/Fetcher/FetcherException.php2
-rw-r--r--lib/Fetcher/IFeedFetcher.php2
-rw-r--r--lib/Fetcher/YoutubeFetcher.php2
-rw-r--r--lib/Hooks/User.php2
-rw-r--r--lib/Http/TextDownloadResponse.php2
-rw-r--r--lib/Http/TextResponse.php2
-rw-r--r--lib/Plugin/Client/Plugin.php2
-rw-r--r--lib/Service/FeedService.php2
-rw-r--r--lib/Service/FolderService.php2
-rw-r--r--lib/Service/ItemService.php2
-rw-r--r--lib/Service/Service.php2
-rw-r--r--lib/Service/ServiceConflictException.php2
-rw-r--r--lib/Service/ServiceException.php2
-rw-r--r--lib/Service/ServiceNotFoundException.php2
-rw-r--r--lib/Service/ServiceValidationException.php2
-rw-r--r--lib/Service/StatusService.php2
-rw-r--r--lib/Upgrade/Upgrade.php2
-rw-r--r--lib/Utility/OPMLExporter.php2
-rw-r--r--lib/Utility/PicoFeedClientFactory.php2
-rw-r--r--lib/Utility/PicoFeedFaviconFactory.php2
-rw-r--r--lib/Utility/ProxyConfigParser.php2
-rw-r--r--lib/Utility/Time.php2
-rw-r--r--lib/Utility/Updater.php2
64 files changed, 64 insertions, 64 deletions
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index 5b403efac..4c97172b5 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Command/Updater/AfterUpdate.php b/lib/Command/Updater/AfterUpdate.php
index 36e23b477..728d2a937 100644
--- a/lib/Command/Updater/AfterUpdate.php
+++ b/lib/Command/Updater/AfterUpdate.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Command/Updater/AllFeeds.php b/lib/Command/Updater/AllFeeds.php
index 05330ac01..838ce1404 100644
--- a/lib/Command/Updater/AllFeeds.php
+++ b/lib/Command/Updater/AllFeeds.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Command/Updater/BeforeUpdate.php b/lib/Command/Updater/BeforeUpdate.php
index 6af0a5c3a..9a384d95a 100644
--- a/lib/Command/Updater/BeforeUpdate.php
+++ b/lib/Command/Updater/BeforeUpdate.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Command/Updater/UpdateFeed.php b/lib/Command/Updater/UpdateFeed.php
index 13fc2e625..44ac914be 100644
--- a/lib/Command/Updater/UpdateFeed.php
+++ b/lib/Command/Updater/UpdateFeed.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Config/AppConfig.php b/lib/Config/AppConfig.php
index 55dcd6d1a..bb79a0ce3 100644
--- a/lib/Config/AppConfig.php
+++ b/lib/Config/AppConfig.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Config/Config.php b/lib/Config/Config.php
index a91c5053f..6397f2c92 100644
--- a/lib/Config/Config.php
+++ b/lib/Config/Config.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Config/DependencyException.php b/lib/Config/DependencyException.php
index 690d187c3..eb175d209 100644
--- a/lib/Config/DependencyException.php
+++ b/lib/Config/DependencyException.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/AdminController.php b/lib/Controller/AdminController.php
index a673566de..1c8b90095 100644
--- a/lib/Controller/AdminController.php
+++ b/lib/Controller/AdminController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/ApiController.php b/lib/Controller/ApiController.php
index f3b77b379..d16c6438d 100644
--- a/lib/Controller/ApiController.php
+++ b/lib/Controller/ApiController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/EntityApiSerializer.php b/lib/Controller/EntityApiSerializer.php
index 073ad5c39..af126045e 100644
--- a/lib/Controller/EntityApiSerializer.php
+++ b/lib/Controller/EntityApiSerializer.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/ExportController.php b/lib/Controller/ExportController.php
index bc9fc0ff1..11060f075 100644
--- a/lib/Controller/ExportController.php
+++ b/lib/Controller/ExportController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/FeedApiController.php b/lib/Controller/FeedApiController.php
index 9713db8cf..db158c391 100644
--- a/lib/Controller/FeedApiController.php
+++ b/lib/Controller/FeedApiController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/FeedController.php b/lib/Controller/FeedController.php
index 2b95794a3..fecd58398 100644
--- a/lib/Controller/FeedController.php
+++ b/lib/Controller/FeedController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/FolderApiController.php b/lib/Controller/FolderApiController.php
index 53693e84f..d27be4aa4 100644
--- a/lib/Controller/FolderApiController.php
+++ b/lib/Controller/FolderApiController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/FolderController.php b/lib/Controller/FolderController.php
index e8c0b0e6c..75faa6550 100644
--- a/lib/Controller/FolderController.php
+++ b/lib/Controller/FolderController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/ItemApiController.php b/lib/Controller/ItemApiController.php
index ec0baabfe..43ff842b8 100644
--- a/lib/Controller/ItemApiController.php
+++ b/lib/Controller/ItemApiController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/ItemController.php b/lib/Controller/ItemController.php
index ac838f1bf..332b9933f 100644
--- a/lib/Controller/ItemController.php
+++ b/lib/Controller/ItemController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/JSONHttpError.php b/lib/Controller/JSONHttpError.php
index 722019ae1..03b9c684a 100644
--- a/lib/Controller/JSONHttpError.php
+++ b/lib/Controller/JSONHttpError.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index 558a85e70..b01b9971d 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/UserApiController.php b/lib/Controller/UserApiController.php
index 8db2b6937..40a1dfa30 100644
--- a/lib/Controller/UserApiController.php
+++ b/lib/Controller/UserApiController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Controller/UtilityApiController.php b/lib/Controller/UtilityApiController.php
index e613e70a5..a555ea699 100644
--- a/lib/Controller/UtilityApiController.php
+++ b/lib/Controller/UtilityApiController.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Cron/Updater.php b/lib/Cron/Updater.php
index 46790d793..5caa2223e 100644
--- a/lib/Cron/Updater.php
+++ b/lib/Cron/Updater.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/EntityJSONSerializer.php b/lib/Db/EntityJSONSerializer.php
index c0d946452..2a7ad9189 100644
--- a/lib/Db/EntityJSONSerializer.php
+++ b/lib/Db/EntityJSONSerializer.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/Feed.php b/lib/Db/Feed.php
index 62d49c01b..8fed48ce7 100644
--- a/lib/Db/Feed.php
+++ b/lib/Db/Feed.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/FeedMapper.php b/lib/Db/FeedMapper.php
index 80d75e723..056296e49 100644
--- a/lib/Db/FeedMapper.php
+++ b/lib/Db/FeedMapper.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/FeedType.php b/lib/Db/FeedType.php
index fcb42bb8a..dd12d153d 100644
--- a/lib/Db/FeedType.php
+++ b/lib/Db/FeedType.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/Folder.php b/lib/Db/Folder.php
index 8d1432a73..68e9fd761 100644
--- a/lib/Db/Folder.php
+++ b/lib/Db/Folder.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/FolderMapper.php b/lib/Db/FolderMapper.php
index 30acb455c..4b25c9820 100644
--- a/lib/Db/FolderMapper.php
+++ b/lib/Db/FolderMapper.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/IAPI.php b/lib/Db/IAPI.php
index ff9791753..80977cfb2 100644
--- a/lib/Db/IAPI.php
+++ b/lib/Db/IAPI.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/Item.php b/lib/Db/Item.php
index e0d8b069b..a132b18f5 100644
--- a/lib/Db/Item.php
+++ b/lib/Db/Item.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/ItemMapper.php b/lib/Db/ItemMapper.php
index 091022c6c..b49cdd5ea 100644
--- a/lib/Db/ItemMapper.php
+++ b/lib/Db/ItemMapper.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/MapperFactory.php b/lib/Db/MapperFactory.php
index 9e99e44bc..a7606071d 100644
--- a/lib/Db/MapperFactory.php
+++ b/lib/Db/MapperFactory.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/Mysql/ItemMapper.php b/lib/Db/Mysql/ItemMapper.php
index 70eefe457..8053c3d87 100644
--- a/lib/Db/Mysql/ItemMapper.php
+++ b/lib/Db/Mysql/ItemMapper.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/NewsMapper.php b/lib/Db/NewsMapper.php
index 0acc252b9..076b90479 100644
--- a/lib/Db/NewsMapper.php
+++ b/lib/Db/NewsMapper.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Db/StatusFlag.php b/lib/Db/StatusFlag.php
index d91fd0280..314a81d01 100644
--- a/lib/Db/StatusFlag.php
+++ b/lib/Db/StatusFlag.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/DependencyInjection/IFactory.php b/lib/DependencyInjection/IFactory.php
index cb0e740d1..14b2799d9 100644
--- a/lib/DependencyInjection/IFactory.php
+++ b/lib/DependencyInjection/IFactory.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Explore/RecommendedSiteNotFoundException.php b/lib/Explore/RecommendedSiteNotFoundException.php
index 15442273b..ddf106079 100644
--- a/lib/Explore/RecommendedSiteNotFoundException.php
+++ b/lib/Explore/RecommendedSiteNotFoundException.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Explore/RecommendedSites.php b/lib/Explore/RecommendedSites.php
index ecde817cd..9ddb5b913 100644
--- a/lib/Explore/RecommendedSites.php
+++ b/lib/Explore/RecommendedSites.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Fetcher/FeedFetcher.php b/lib/Fetcher/FeedFetcher.php
index beffe9051..9336d6914 100644
--- a/lib/Fetcher/FeedFetcher.php
+++ b/lib/Fetcher/FeedFetcher.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Fetcher/Fetcher.php b/lib/Fetcher/Fetcher.php
index 43c9e7a3f..df5e17db9 100644
--- a/lib/Fetcher/Fetcher.php
+++ b/lib/Fetcher/Fetcher.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Fetcher/FetcherException.php b/lib/Fetcher/FetcherException.php
index 27dd42f39..83f1d9dd8 100644
--- a/lib/Fetcher/FetcherException.php
+++ b/lib/Fetcher/FetcherException.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Fetcher/IFeedFetcher.php b/lib/Fetcher/IFeedFetcher.php
index e854d83fe..60b336549 100644
--- a/lib/Fetcher/IFeedFetcher.php
+++ b/lib/Fetcher/IFeedFetcher.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Fetcher/YoutubeFetcher.php b/lib/Fetcher/YoutubeFetcher.php
index 3752ba197..d007ae7f9 100644
--- a/lib/Fetcher/YoutubeFetcher.php
+++ b/lib/Fetcher/YoutubeFetcher.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Hooks/User.php b/lib/Hooks/User.php
index 158396219..16536e744 100644
--- a/lib/Hooks/User.php
+++ b/lib/Hooks/User.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Http/TextDownloadResponse.php b/lib/Http/TextDownloadResponse.php
index ccf959b5b..21a777dc1 100644
--- a/lib/Http/TextDownloadResponse.php
+++ b/lib/Http/TextDownloadResponse.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Http/TextResponse.php b/lib/Http/TextResponse.php
index 7f1866ec4..a8ac0ea24 100644
--- a/lib/Http/TextResponse.php
+++ b/lib/Http/TextResponse.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Plugin/Client/Plugin.php b/lib/Plugin/Client/Plugin.php
index 2be110e5a..11d7a7969 100644
--- a/lib/Plugin/Client/Plugin.php
+++ b/lib/Plugin/Client/Plugin.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Service/FeedService.php b/lib/Service/FeedService.php
index 2d9bc6728..be4750721 100644
--- a/lib/Service/FeedService.php
+++ b/lib/Service/FeedService.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Service/FolderService.php b/lib/Service/FolderService.php
index e7daf836e..8eebf60ba 100644
--- a/lib/Service/FolderService.php
+++ b/lib/Service/FolderService.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Service/ItemService.php b/lib/Service/ItemService.php
index 8bbb54d49..fdf97c27b 100644
--- a/lib/Service/ItemService.php
+++ b/lib/Service/ItemService.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Service/Service.php b/lib/Service/Service.php
index e53468828..e8fd4c72c 100644
--- a/lib/Service/Service.php
+++ b/lib/Service/Service.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Service/ServiceConflictException.php b/lib/Service/ServiceConflictException.php
index d27fb98c1..8152a252a 100644
--- a/lib/Service/ServiceConflictException.php
+++ b/lib/Service/ServiceConflictException.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Service/ServiceException.php b/lib/Service/ServiceException.php
index 1a789e0b0..4ce89c966 100644
--- a/lib/Service/ServiceException.php
+++ b/lib/Service/ServiceException.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Service/ServiceNotFoundException.php b/lib/Service/ServiceNotFoundException.php
index e4ee61fbe..f7524b44b 100644
--- a/lib/Service/ServiceNotFoundException.php
+++ b/lib/Service/ServiceNotFoundException.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Service/ServiceValidationException.php b/lib/Service/ServiceValidationException.php
index 510df0a22..dd43ca338 100644
--- a/lib/Service/ServiceValidationException.php
+++ b/lib/Service/ServiceValidationException.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Service/StatusService.php b/lib/Service/StatusService.php
index b36e64c1b..6233d8d62 100644
--- a/lib/Service/StatusService.php
+++ b/lib/Service/StatusService.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Upgrade/Upgrade.php b/lib/Upgrade/Upgrade.php
index 2ddcddb2c..de2437954 100644
--- a/lib/Upgrade/Upgrade.php
+++ b/lib/Upgrade/Upgrade.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Utility/OPMLExporter.php b/lib/Utility/OPMLExporter.php
index d786c0c6f..fc6d9fd44 100644
--- a/lib/Utility/OPMLExporter.php
+++ b/lib/Utility/OPMLExporter.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Utility/PicoFeedClientFactory.php b/lib/Utility/PicoFeedClientFactory.php
index a57f7f022..8e2cc6059 100644
--- a/lib/Utility/PicoFeedClientFactory.php
+++ b/lib/Utility/PicoFeedClientFactory.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Utility/PicoFeedFaviconFactory.php b/lib/Utility/PicoFeedFaviconFactory.php
index b3a48747a..e07b828c4 100644
--- a/lib/Utility/PicoFeedFaviconFactory.php
+++ b/lib/Utility/PicoFeedFaviconFactory.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Utility/ProxyConfigParser.php b/lib/Utility/ProxyConfigParser.php
index 4710477e8..b8d7515ff 100644
--- a/lib/Utility/ProxyConfigParser.php
+++ b/lib/Utility/ProxyConfigParser.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Utility/Time.php b/lib/Utility/Time.php
index e6ea2b470..0379ff955 100644
--- a/lib/Utility/Time.php
+++ b/lib/Utility/Time.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
diff --git a/lib/Utility/Updater.php b/lib/Utility/Updater.php
index a6f8dc28a..7a7f11e92 100644
--- a/lib/Utility/Updater.php
+++ b/lib/Utility/Updater.php
@@ -1,6 +1,6 @@
<?php
/**
- * ownCloud - News
+ * Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.