From 71c9767292fe729a7ee95cf0f72e801314945712 Mon Sep 17 00:00:00 2001 From: Marcus Fihlon Date: Sun, 24 Mar 2024 17:48:13 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=84=20=20add=20license=20to=20source?= =?UTF-8?q?=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcus Fihlon --- frontend/themes/my-theme/styles.css | 18 ++++++++++++++++++ .../java/swiss/fihlon/apus/Application.java | 17 +++++++++++++++++ .../java/swiss/fihlon/apus/GreetService.java | 17 +++++++++++++++++ src/main/java/swiss/fihlon/apus/MainView.java | 17 +++++++++++++++++ .../java/swiss/fihlon/apus/MainViewIT.java | 17 +++++++++++++++++ 5 files changed, 86 insertions(+) diff --git a/frontend/themes/my-theme/styles.css b/frontend/themes/my-theme/styles.css index 7402663..3212131 100644 --- a/frontend/themes/my-theme/styles.css +++ b/frontend/themes/my-theme/styles.css @@ -1,3 +1,21 @@ +/* + * Apus - A social wall for conferences with additional features. + * Copyright (C) Marcus Fihlon and the individual contributors to Apus. + * + * 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 . + */ + /* CSS styling examples for the Vaadin app. diff --git a/src/main/java/swiss/fihlon/apus/Application.java b/src/main/java/swiss/fihlon/apus/Application.java index cb4b0e1..2fc2fa3 100644 --- a/src/main/java/swiss/fihlon/apus/Application.java +++ b/src/main/java/swiss/fihlon/apus/Application.java @@ -1,3 +1,20 @@ +/* + * Apus - A social wall for conferences with additional features. + * Copyright (C) Marcus Fihlon and the individual contributors to Apus. + * + * 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 . + */ package swiss.fihlon.apus; import com.vaadin.flow.component.page.AppShellConfigurator; diff --git a/src/main/java/swiss/fihlon/apus/GreetService.java b/src/main/java/swiss/fihlon/apus/GreetService.java index fc2371f..e5d6310 100644 --- a/src/main/java/swiss/fihlon/apus/GreetService.java +++ b/src/main/java/swiss/fihlon/apus/GreetService.java @@ -1,3 +1,20 @@ +/* + * Apus - A social wall for conferences with additional features. + * Copyright (C) Marcus Fihlon and the individual contributors to Apus. + * + * 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 . + */ package swiss.fihlon.apus; import java.io.Serializable; diff --git a/src/main/java/swiss/fihlon/apus/MainView.java b/src/main/java/swiss/fihlon/apus/MainView.java index 0438cc8..4a12c5b 100644 --- a/src/main/java/swiss/fihlon/apus/MainView.java +++ b/src/main/java/swiss/fihlon/apus/MainView.java @@ -1,3 +1,20 @@ +/* + * Apus - A social wall for conferences with additional features. + * Copyright (C) Marcus Fihlon and the individual contributors to Apus. + * + * 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 . + */ package swiss.fihlon.apus; import org.springframework.beans.factory.annotation.Autowired; diff --git a/src/test/java/swiss/fihlon/apus/MainViewIT.java b/src/test/java/swiss/fihlon/apus/MainViewIT.java index 3baa59e..858b39e 100644 --- a/src/test/java/swiss/fihlon/apus/MainViewIT.java +++ b/src/test/java/swiss/fihlon/apus/MainViewIT.java @@ -1,3 +1,20 @@ +/* + * Apus - A social wall for conferences with additional features. + * Copyright (C) Marcus Fihlon and the individual contributors to Apus. + * + * 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 . + */ package swiss.fihlon.apus; import org.junit.jupiter.api.Assertions;