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

github.com/bitfireAT/cert4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicki Hirner <hirner@bitfire.at>2022-01-12 17:50:17 +0300
committerRicki Hirner <hirner@bitfire.at>2022-01-12 17:50:17 +0300
commitfb38e84944a034850243f317a5dc088532e25b8b (patch)
tree95f87b4c393767dab0c50126cc01dba44008f6d0
parent68f51b85a84712cc241df8e576bca5842c067eb0 (diff)
Update copyright
-rw-r--r--AUTHORS3
-rw-r--r--build.gradle1
-rw-r--r--src/androidTest/java/at/bitfire/cert4android/CustomCertManagerTest.kt10
-rw-r--r--src/main/java/at/bitfire/cert4android/CertUtils.kt10
-rw-r--r--src/main/java/at/bitfire/cert4android/Constants.kt10
-rw-r--r--src/main/java/at/bitfire/cert4android/CustomCertManager.kt10
-rw-r--r--src/main/java/at/bitfire/cert4android/CustomCertService.kt10
-rw-r--r--src/main/java/at/bitfire/cert4android/NotificationUtils.kt10
-rw-r--r--src/main/java/at/bitfire/cert4android/TrustCertificateActivity.kt10
-rw-r--r--src/test/java/at/bitfire/cert4android/CertUtilsTest.kt10
10 files changed, 27 insertions, 57 deletions
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..30cfa2f
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,3 @@
+
+Initial contributor:
+Ricki Hirner (bitfire.at)
diff --git a/build.gradle b/build.gradle
index 07dce5c..526ea23 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,4 +1,3 @@
-
buildscript {
ext.versions = [
kotlin: '1.6.0',
diff --git a/src/androidTest/java/at/bitfire/cert4android/CustomCertManagerTest.kt b/src/androidTest/java/at/bitfire/cert4android/CustomCertManagerTest.kt
index 042439f..b395d48 100644
--- a/src/androidTest/java/at/bitfire/cert4android/CustomCertManagerTest.kt
+++ b/src/androidTest/java/at/bitfire/cert4android/CustomCertManagerTest.kt
@@ -1,10 +1,6 @@
-/*
- * Copyright © Ricki Hirner (bitfire web engineering).
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the GNU Public License v3.0
- * which accompanies this distribution, and is available at
- * http://www.gnu.org/licenses/gpl.html
- */
+/***************************************************************************************************
+ * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
+ **************************************************************************************************/
package at.bitfire.cert4android
diff --git a/src/main/java/at/bitfire/cert4android/CertUtils.kt b/src/main/java/at/bitfire/cert4android/CertUtils.kt
index af774e0..5f8b6e3 100644
--- a/src/main/java/at/bitfire/cert4android/CertUtils.kt
+++ b/src/main/java/at/bitfire/cert4android/CertUtils.kt
@@ -1,10 +1,6 @@
-/*
- * Copyright © Ricki Hirner (bitfire web engineering).
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the GNU Public License v3.0
- * which accompanies this distribution, and is available at
- * http://www.gnu.org/licenses/gpl.html
- */
+/***************************************************************************************************
+ * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
+ **************************************************************************************************/
package at.bitfire.cert4android
diff --git a/src/main/java/at/bitfire/cert4android/Constants.kt b/src/main/java/at/bitfire/cert4android/Constants.kt
index 8686fa0..a78e0fe 100644
--- a/src/main/java/at/bitfire/cert4android/Constants.kt
+++ b/src/main/java/at/bitfire/cert4android/Constants.kt
@@ -1,10 +1,6 @@
-/*
- * Copyright © Ricki Hirner (bitfire web engineering).
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the GNU Public License v3.0
- * which accompanies this distribution, and is available at
- * http://www.gnu.org/licenses/gpl.html
- */
+/***************************************************************************************************
+ * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
+ **************************************************************************************************/
package at.bitfire.cert4android
diff --git a/src/main/java/at/bitfire/cert4android/CustomCertManager.kt b/src/main/java/at/bitfire/cert4android/CustomCertManager.kt
index a82548d..6e15571 100644
--- a/src/main/java/at/bitfire/cert4android/CustomCertManager.kt
+++ b/src/main/java/at/bitfire/cert4android/CustomCertManager.kt
@@ -1,10 +1,6 @@
-/*
- * Copyright © Ricki Hirner (bitfire web engineering).
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the GNU Public License v3.0
- * which accompanies this distribution, and is available at
- * http://www.gnu.org/licenses/gpl.html
- */
+/***************************************************************************************************
+ * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
+ **************************************************************************************************/
package at.bitfire.cert4android
diff --git a/src/main/java/at/bitfire/cert4android/CustomCertService.kt b/src/main/java/at/bitfire/cert4android/CustomCertService.kt
index 5e1912c..e509611 100644
--- a/src/main/java/at/bitfire/cert4android/CustomCertService.kt
+++ b/src/main/java/at/bitfire/cert4android/CustomCertService.kt
@@ -1,10 +1,6 @@
-/*
- * Copyright © Ricki Hirner (bitfire web engineering).
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the GNU Public License v3.0
- * which accompanies this distribution, and is available at
- * http://www.gnu.org/licenses/gpl.html
- */
+/***************************************************************************************************
+ * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
+ **************************************************************************************************/
package at.bitfire.cert4android
diff --git a/src/main/java/at/bitfire/cert4android/NotificationUtils.kt b/src/main/java/at/bitfire/cert4android/NotificationUtils.kt
index 2f32f01..357d4c4 100644
--- a/src/main/java/at/bitfire/cert4android/NotificationUtils.kt
+++ b/src/main/java/at/bitfire/cert4android/NotificationUtils.kt
@@ -1,10 +1,6 @@
-/*
- * Copyright (c) Ricki Hirner (bitfire web engineering).
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the GNU Public License v3.0
- * which accompanies this distribution, and is available at
- * http://www.gnu.org/licenses/gpl.html
- */
+/***************************************************************************************************
+ * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
+ **************************************************************************************************/
package at.bitfire.cert4android
diff --git a/src/main/java/at/bitfire/cert4android/TrustCertificateActivity.kt b/src/main/java/at/bitfire/cert4android/TrustCertificateActivity.kt
index 16eff3c..e02b97e 100644
--- a/src/main/java/at/bitfire/cert4android/TrustCertificateActivity.kt
+++ b/src/main/java/at/bitfire/cert4android/TrustCertificateActivity.kt
@@ -1,10 +1,6 @@
-/*
- * Copyright © Ricki Hirner (bitfire web engineering).
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the GNU Public License v3.0
- * which accompanies this distribution, and is available at
- * http://www.gnu.org/licenses/gpl.html
- */
+/***************************************************************************************************
+ * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
+ **************************************************************************************************/
package at.bitfire.cert4android
diff --git a/src/test/java/at/bitfire/cert4android/CertUtilsTest.kt b/src/test/java/at/bitfire/cert4android/CertUtilsTest.kt
index eb22772..c1c40f2 100644
--- a/src/test/java/at/bitfire/cert4android/CertUtilsTest.kt
+++ b/src/test/java/at/bitfire/cert4android/CertUtilsTest.kt
@@ -1,10 +1,6 @@
-/*
- * Copyright © Ricki Hirner (bitfire web engineering).
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the GNU Public License v3.0
- * which accompanies this distribution, and is available at
- * http://www.gnu.org/licenses/gpl.html
- */
+/***************************************************************************************************
+ * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
+ **************************************************************************************************/
package at.bitfire.cert4android