From 208746d85596192fea5359326a64003e917519bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Blot=20=28=40U-Exp=29?= Date: Sat, 3 Jan 2015 11:14:08 +0100 Subject: [PATCH] Updated copyright --- .../activities/GeneralSettingsActivity.java | 2 +- .../owncloud_sms/activities/LoginActivity.java | 2 +- .../authenticators/OwnCloudAuthenticator.java | 2 +- .../OwnCloudAuthenticatorService.java | 2 +- .../broadcast_receivers/ConnectivityChanged.java | 2 +- .../broadcast_receivers/IncomingSms.java | 2 +- .../owncloud_sms/engine/ASyncTask.java | 2 +- .../owncloud_sms/engine/ConnectivityMonitor.java | 16 ++++++++++++++++ .../owncloud_sms/engine/OCSMSOwnCloudClient.java | 2 +- .../owncloud_sms/engine/SmsFetcher.java | 2 +- .../owncloud_sms/enums/LoginReturnCode.java | 2 +- .../owncloud_sms/enums/MailboxID.java | 2 +- .../enums/OCSMSNotificationType.java | 2 +- .../owncloud_sms/enums/OCSyncErrorType.java | 2 +- .../owncloud_sms/exceptions/OCSyncException.java | 2 +- .../notifications/OCSMSNotification.java | 2 +- .../notifications/OCSMSNotificationManager.java | 2 +- .../owncloud_sms/observers/SmsObserver.java | 2 +- .../owncloud_sms/prefs/OCSMSSharedPrefs.java | 2 +- .../owncloud_sms/providers/SmsDataProvider.java | 2 +- .../sync_adapters/SmsSlowSyncService.java | 2 +- .../sync_adapters/SmsSyncAdapter.java | 2 +- .../sync_adapters/SmsSyncService.java | 2 +- 23 files changed, 38 insertions(+), 22 deletions(-) diff --git a/src/fr/unix_experience/owncloud_sms/activities/GeneralSettingsActivity.java b/src/fr/unix_experience/owncloud_sms/activities/GeneralSettingsActivity.java index d2f2145..49696d5 100644 --- a/src/fr/unix_experience/owncloud_sms/activities/GeneralSettingsActivity.java +++ b/src/fr/unix_experience/owncloud_sms/activities/GeneralSettingsActivity.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.activities; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/activities/LoginActivity.java b/src/fr/unix_experience/owncloud_sms/activities/LoginActivity.java index 6c078d3..50b1684 100644 --- a/src/fr/unix_experience/owncloud_sms/activities/LoginActivity.java +++ b/src/fr/unix_experience/owncloud_sms/activities/LoginActivity.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.activities; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/authenticators/OwnCloudAuthenticator.java b/src/fr/unix_experience/owncloud_sms/authenticators/OwnCloudAuthenticator.java index ead069f..cc0bacf 100644 --- a/src/fr/unix_experience/owncloud_sms/authenticators/OwnCloudAuthenticator.java +++ b/src/fr/unix_experience/owncloud_sms/authenticators/OwnCloudAuthenticator.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.authenticators; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/authenticators/OwnCloudAuthenticatorService.java b/src/fr/unix_experience/owncloud_sms/authenticators/OwnCloudAuthenticatorService.java index 8ec7751..32c7336 100644 --- a/src/fr/unix_experience/owncloud_sms/authenticators/OwnCloudAuthenticatorService.java +++ b/src/fr/unix_experience/owncloud_sms/authenticators/OwnCloudAuthenticatorService.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.authenticators; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/fr/unix_experience/owncloud_sms/broadcast_receivers/ConnectivityChanged.java b/src/fr/unix_experience/owncloud_sms/broadcast_receivers/ConnectivityChanged.java index 011cf09..1bb61e9 100644 --- a/src/fr/unix_experience/owncloud_sms/broadcast_receivers/ConnectivityChanged.java +++ b/src/fr/unix_experience/owncloud_sms/broadcast_receivers/ConnectivityChanged.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.broadcast_receivers; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/broadcast_receivers/IncomingSms.java b/src/fr/unix_experience/owncloud_sms/broadcast_receivers/IncomingSms.java index 81f5c14..a2160e6 100644 --- a/src/fr/unix_experience/owncloud_sms/broadcast_receivers/IncomingSms.java +++ b/src/fr/unix_experience/owncloud_sms/broadcast_receivers/IncomingSms.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.broadcast_receivers; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/engine/ASyncTask.java b/src/fr/unix_experience/owncloud_sms/engine/ASyncTask.java index e8a6ed3..7cf277b 100644 --- a/src/fr/unix_experience/owncloud_sms/engine/ASyncTask.java +++ b/src/fr/unix_experience/owncloud_sms/engine/ASyncTask.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.engine; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/engine/ConnectivityMonitor.java b/src/fr/unix_experience/owncloud_sms/engine/ConnectivityMonitor.java index e5101a9..d3e3c98 100644 --- a/src/fr/unix_experience/owncloud_sms/engine/ConnectivityMonitor.java +++ b/src/fr/unix_experience/owncloud_sms/engine/ConnectivityMonitor.java @@ -1,5 +1,21 @@ package fr.unix_experience.owncloud_sms.engine; +/* + * Copyright (c) 2014-2015, Loic Blot + * + * 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 + */ + import android.content.Context; import android.net.ConnectivityManager; diff --git a/src/fr/unix_experience/owncloud_sms/engine/OCSMSOwnCloudClient.java b/src/fr/unix_experience/owncloud_sms/engine/OCSMSOwnCloudClient.java index 4dc2272..7233630 100644 --- a/src/fr/unix_experience/owncloud_sms/engine/OCSMSOwnCloudClient.java +++ b/src/fr/unix_experience/owncloud_sms/engine/OCSMSOwnCloudClient.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.engine; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/engine/SmsFetcher.java b/src/fr/unix_experience/owncloud_sms/engine/SmsFetcher.java index 413ab91..b71040c 100644 --- a/src/fr/unix_experience/owncloud_sms/engine/SmsFetcher.java +++ b/src/fr/unix_experience/owncloud_sms/engine/SmsFetcher.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.engine; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/enums/LoginReturnCode.java b/src/fr/unix_experience/owncloud_sms/enums/LoginReturnCode.java index d89d02b..78ebcce 100644 --- a/src/fr/unix_experience/owncloud_sms/enums/LoginReturnCode.java +++ b/src/fr/unix_experience/owncloud_sms/enums/LoginReturnCode.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.enums; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/fr/unix_experience/owncloud_sms/enums/MailboxID.java b/src/fr/unix_experience/owncloud_sms/enums/MailboxID.java index b6dbe01..25b07ce 100644 --- a/src/fr/unix_experience/owncloud_sms/enums/MailboxID.java +++ b/src/fr/unix_experience/owncloud_sms/enums/MailboxID.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.enums; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/fr/unix_experience/owncloud_sms/enums/OCSMSNotificationType.java b/src/fr/unix_experience/owncloud_sms/enums/OCSMSNotificationType.java index c0f25b4..67e86e6 100644 --- a/src/fr/unix_experience/owncloud_sms/enums/OCSMSNotificationType.java +++ b/src/fr/unix_experience/owncloud_sms/enums/OCSMSNotificationType.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.enums; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/enums/OCSyncErrorType.java b/src/fr/unix_experience/owncloud_sms/enums/OCSyncErrorType.java index 8382f51..3058abe 100644 --- a/src/fr/unix_experience/owncloud_sms/enums/OCSyncErrorType.java +++ b/src/fr/unix_experience/owncloud_sms/enums/OCSyncErrorType.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.enums; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/fr/unix_experience/owncloud_sms/exceptions/OCSyncException.java b/src/fr/unix_experience/owncloud_sms/exceptions/OCSyncException.java index f6a6294..313b3c0 100644 --- a/src/fr/unix_experience/owncloud_sms/exceptions/OCSyncException.java +++ b/src/fr/unix_experience/owncloud_sms/exceptions/OCSyncException.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.exceptions; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/notifications/OCSMSNotification.java b/src/fr/unix_experience/owncloud_sms/notifications/OCSMSNotification.java index fd65997..2af5bff 100644 --- a/src/fr/unix_experience/owncloud_sms/notifications/OCSMSNotification.java +++ b/src/fr/unix_experience/owncloud_sms/notifications/OCSMSNotification.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.notifications; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/notifications/OCSMSNotificationManager.java b/src/fr/unix_experience/owncloud_sms/notifications/OCSMSNotificationManager.java index 905bbeb..a7ddb19 100644 --- a/src/fr/unix_experience/owncloud_sms/notifications/OCSMSNotificationManager.java +++ b/src/fr/unix_experience/owncloud_sms/notifications/OCSMSNotificationManager.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.notifications; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/observers/SmsObserver.java b/src/fr/unix_experience/owncloud_sms/observers/SmsObserver.java index 0be1ca7..9355a15 100644 --- a/src/fr/unix_experience/owncloud_sms/observers/SmsObserver.java +++ b/src/fr/unix_experience/owncloud_sms/observers/SmsObserver.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.observers; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/prefs/OCSMSSharedPrefs.java b/src/fr/unix_experience/owncloud_sms/prefs/OCSMSSharedPrefs.java index 454455d..5d4f96a 100644 --- a/src/fr/unix_experience/owncloud_sms/prefs/OCSMSSharedPrefs.java +++ b/src/fr/unix_experience/owncloud_sms/prefs/OCSMSSharedPrefs.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.prefs; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/providers/SmsDataProvider.java b/src/fr/unix_experience/owncloud_sms/providers/SmsDataProvider.java index fd63e73..2d7df0f 100644 --- a/src/fr/unix_experience/owncloud_sms/providers/SmsDataProvider.java +++ b/src/fr/unix_experience/owncloud_sms/providers/SmsDataProvider.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.providers; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSlowSyncService.java b/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSlowSyncService.java index 459b1a0..1b84a21 100644 --- a/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSlowSyncService.java +++ b/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSlowSyncService.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.sync_adapters; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSyncAdapter.java b/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSyncAdapter.java index 836afe4..6bf3a42 100644 --- a/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSyncAdapter.java +++ b/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSyncAdapter.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.sync_adapters; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSyncService.java b/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSyncService.java index 657142b..002348a 100644 --- a/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSyncService.java +++ b/src/fr/unix_experience/owncloud_sms/sync_adapters/SmsSyncService.java @@ -1,7 +1,7 @@ package fr.unix_experience.owncloud_sms.sync_adapters; /* - * Copyright (c) 2014, Loic Blot + * Copyright (c) 2014-2015, Loic Blot * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions