From 2dd9c3e88d771ab9e9616b454b350e30faefeb79 Mon Sep 17 00:00:00 2001 From: PatWie Date: Sat, 28 Dec 2019 19:01:54 +0100 Subject: [PATCH] update license message [ci skip] --- api/app/account.go | 3 ++- api/app/account_requests.go | 3 ++- api/app/account_responses.go | 3 ++- api/app/account_test.go | 3 ++- api/app/api.go | 3 ++- api/app/auth.go | 3 ++- api/app/auth_requests.go | 3 ++- api/app/auth_responses.go | 3 ++- api/app/auth_test.go | 3 ++- api/app/common.go | 3 ++- api/app/common_responses.go | 3 ++- api/app/common_test.go | 3 ++- api/app/course.go | 3 ++- api/app/course_requests.go | 3 ++- api/app/course_responses.go | 3 ++- api/app/course_test.go | 3 ++- api/app/errors.go | 3 ++- api/app/exam_requests.go | 3 ++- api/app/grade.go | 3 ++- api/app/grade_requests.go | 3 ++- api/app/grade_responses.go | 3 ++- api/app/grade_test.go | 3 ++- api/app/group.go | 3 ++- api/app/group_requests.go | 3 ++- api/app/group_responses.go | 3 ++- api/app/group_test.go | 3 ++- api/app/material.go | 3 ++- api/app/material_requests.go | 3 ++- api/app/material_responses.go | 3 ++- api/app/material_test.go | 3 ++- api/app/prometheus.go | 3 ++- api/app/rating.go | 3 ++- api/app/router.go | 3 ++- api/app/shared.go | 3 ++- api/app/shared_request_payloads.go | 3 ++- api/app/sheet.go | 3 ++- api/app/sheet_requests.go | 3 ++- api/app/sheet_responses.go | 3 ++- api/app/sheet_test.go | 3 ++- api/app/submission.go | 3 ++- api/app/submission_producer.go | 3 ++- api/app/submission_responses.go | 3 ++- api/app/submission_test.go | 3 ++- api/app/tape_test.go | 3 ++- api/app/task.go | 3 ++- api/app/task_rating.go | 3 ++- api/app/task_rating_requests.go | 3 ++- api/app/task_rating_responses.go | 3 ++- api/app/task_rating_test.go | 3 ++- api/app/task_requests.go | 3 ++- api/app/task_responses.go | 3 ++- api/app/task_test.go | 3 ++- api/app/user.go | 3 ++- api/app/user_requests.go | 3 ++- api/app/user_responses.go | 3 ++- api/app/user_test.go | 3 ++- api/cronjob/submission_zipper.go | 3 ++- api/helper/file_carrier.go | 3 ++- api/helper/helper.go | 3 ++- api/helper/helper_test.go | 3 ++- api/server.go | 3 ++- api/shared/shared_structs.go | 3 ++- api/worker.go | 3 ++- api/worker/submission_handler.go | 3 ++- auth/authenticate/authenticator.go | 3 ++- auth/authenticate/claims.go | 3 ++- auth/authenticate/middleware.go | 3 ++- auth/authenticate/tokenauth.go | 3 ++- auth/authorize/roles.go | 3 ++- auth/errors.go | 3 ++- auth/password.go | 3 ++- cmd/configuration.go | 3 ++- cmd/console.go | 3 ++- cmd/console/admin_cmd.go | 3 ++- cmd/console/course_cmd.go | 3 ++- cmd/console/database_cmd.go | 3 ++- cmd/console/group_cmd.go | 3 ++- cmd/console/helper.go | 3 ++- cmd/console/submission_cmd.go | 3 ++- cmd/console/user_cmd.go | 3 ++- cmd/root.go | 3 ++- cmd/serve.go | 3 ++- cmd/work.go | 3 ++- configuration/configuration.go | 3 ++- configuration/configuration_test.go | 3 ++- configuration/fs/fs.go | 3 ++- database/course_store.go | 3 ++- database/grade_store.go | 3 ++- database/group_store.go | 3 ++- database/material_store.go | 3 ++- database/oracle.go | 3 ++- database/sheet_store.go | 3 ++- database/submission_store.go | 3 ++- database/task_store.go | 3 ++- database/user_store.go | 3 ++- docs/swagger/endpoints.go | 3 ++- docs/swagger/errors.go | 3 ++- docs/swagger/struct.go | 3 ++- docs/swagger/swagger.go | 3 ++- docs/swagger/tag.go | 3 ++- email/email.go | 3 ++- infomark.go | 3 ++- model/course.go | 3 ++- model/enrollment.go | 3 ++- model/grade.go | 3 ++- model/group.go | 3 ++- model/group_bid.go | 3 ++- model/material.go | 3 ++- model/sheet.go | 3 ++- model/submission.go | 3 ++- model/task.go | 3 ++- model/user.go | 3 ++- service/common.go | 3 ++- service/consumer.go | 3 ++- service/docker.go | 3 ++- service/producer.go | 3 ++- symbol/symbol.go | 3 ++- symbol/version.go | 3 ++- tape/tape.go | 3 ++- 119 files changed, 238 insertions(+), 119 deletions(-) diff --git a/api/app/account.go b/api/app/account.go index 31e96d0..88f7514 100644 --- a/api/app/account.go +++ b/api/app/account.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/account_requests.go b/api/app/account_requests.go index 46efcaf..ce9ed50 100644 --- a/api/app/account_requests.go +++ b/api/app/account_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/account_responses.go b/api/app/account_responses.go index f5039e0..bdf620d 100644 --- a/api/app/account_responses.go +++ b/api/app/account_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/account_test.go b/api/app/account_test.go index 1150d9e..6ef7fcd 100644 --- a/api/app/account_test.go +++ b/api/app/account_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/api.go b/api/app/api.go index 84028d1..117ddb5 100644 --- a/api/app/api.go +++ b/api/app/api.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/auth.go b/api/app/auth.go index ae776ad..de7f7e3 100644 --- a/api/app/auth.go +++ b/api/app/auth.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/auth_requests.go b/api/app/auth_requests.go index 331a7f0..36af2d2 100644 --- a/api/app/auth_requests.go +++ b/api/app/auth_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/auth_responses.go b/api/app/auth_responses.go index 6cf8a1b..1532c04 100644 --- a/api/app/auth_responses.go +++ b/api/app/auth_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/auth_test.go b/api/app/auth_test.go index e463498..4c6f238 100644 --- a/api/app/auth_test.go +++ b/api/app/auth_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/common.go b/api/app/common.go index ef7672a..c0ae874 100644 --- a/api/app/common.go +++ b/api/app/common.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/common_responses.go b/api/app/common_responses.go index ad4d7d7..3ed2f14 100644 --- a/api/app/common_responses.go +++ b/api/app/common_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/common_test.go b/api/app/common_test.go index 421e09c..fa2204b 100644 --- a/api/app/common_test.go +++ b/api/app/common_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/course.go b/api/app/course.go index 26f3571..9a44f99 100644 --- a/api/app/course.go +++ b/api/app/course.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/course_requests.go b/api/app/course_requests.go index 512a356..663193b 100644 --- a/api/app/course_requests.go +++ b/api/app/course_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/course_responses.go b/api/app/course_responses.go index 6d1ae03..eda4910 100644 --- a/api/app/course_responses.go +++ b/api/app/course_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/course_test.go b/api/app/course_test.go index c773bc2..35e3981 100644 --- a/api/app/course_test.go +++ b/api/app/course_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/errors.go b/api/app/errors.go index 7e36aeb..9ee9a99 100644 --- a/api/app/errors.go +++ b/api/app/errors.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/exam_requests.go b/api/app/exam_requests.go index e591e70..d4670b8 100644 --- a/api/app/exam_requests.go +++ b/api/app/exam_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing exams with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/grade.go b/api/app/grade.go index e7bbca0..0aeb9f6 100644 --- a/api/app/grade.go +++ b/api/app/grade.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/grade_requests.go b/api/app/grade_requests.go index c821c23..2dce988 100644 --- a/api/app/grade_requests.go +++ b/api/app/grade_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/grade_responses.go b/api/app/grade_responses.go index 80633a6..fe0a613 100644 --- a/api/app/grade_responses.go +++ b/api/app/grade_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/grade_test.go b/api/app/grade_test.go index 21cbd47..6ba88b9 100644 --- a/api/app/grade_test.go +++ b/api/app/grade_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise materials and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/group.go b/api/app/group.go index 1e9437e..b8b94b8 100644 --- a/api/app/group.go +++ b/api/app/group.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/group_requests.go b/api/app/group_requests.go index 13038fa..24d52f1 100644 --- a/api/app/group_requests.go +++ b/api/app/group_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/group_responses.go b/api/app/group_responses.go index cfb8168..3ae2381 100644 --- a/api/app/group_responses.go +++ b/api/app/group_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/group_test.go b/api/app/group_test.go index 8a3ebb0..2b0e8f5 100644 --- a/api/app/group_test.go +++ b/api/app/group_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/material.go b/api/app/material.go index 93ce166..3c00b2c 100644 --- a/api/app/material.go +++ b/api/app/material.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/material_requests.go b/api/app/material_requests.go index cc1b8d1..943b457 100644 --- a/api/app/material_requests.go +++ b/api/app/material_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/material_responses.go b/api/app/material_responses.go index efbcedc..d18dccf 100644 --- a/api/app/material_responses.go +++ b/api/app/material_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/material_test.go b/api/app/material_test.go index 3f1b7c8..5f1c2fa 100644 --- a/api/app/material_test.go +++ b/api/app/material_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise materials and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/prometheus.go b/api/app/prometheus.go index 5ce15d8..db6a14c 100644 --- a/api/app/prometheus.go +++ b/api/app/prometheus.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/rating.go b/api/app/rating.go index 119791d..156064b 100644 --- a/api/app/rating.go +++ b/api/app/rating.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/router.go b/api/app/router.go index 560b1e5..a59bdf4 100644 --- a/api/app/router.go +++ b/api/app/router.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/shared.go b/api/app/shared.go index b111be3..1392c3e 100644 --- a/api/app/shared.go +++ b/api/app/shared.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/shared_request_payloads.go b/api/app/shared_request_payloads.go index 2c12270..0d340be 100644 --- a/api/app/shared_request_payloads.go +++ b/api/app/shared_request_payloads.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/sheet.go b/api/app/sheet.go index 00656e1..7a2d670 100644 --- a/api/app/sheet.go +++ b/api/app/sheet.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/sheet_requests.go b/api/app/sheet_requests.go index f97d897..a4f3729 100644 --- a/api/app/sheet_requests.go +++ b/api/app/sheet_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/sheet_responses.go b/api/app/sheet_responses.go index dd716fb..287e3e8 100644 --- a/api/app/sheet_responses.go +++ b/api/app/sheet_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/sheet_test.go b/api/app/sheet_test.go index a7cd714..5a90be2 100644 --- a/api/app/sheet_test.go +++ b/api/app/sheet_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/submission.go b/api/app/submission.go index 38a3a88..7590c1c 100644 --- a/api/app/submission.go +++ b/api/app/submission.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/submission_producer.go b/api/app/submission_producer.go index 318d476..39b0db3 100644 --- a/api/app/submission_producer.go +++ b/api/app/submission_producer.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/submission_responses.go b/api/app/submission_responses.go index 68ce071..f3d6b3f 100644 --- a/api/app/submission_responses.go +++ b/api/app/submission_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/submission_test.go b/api/app/submission_test.go index a59f91d..dd1c680 100644 --- a/api/app/submission_test.go +++ b/api/app/submission_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise materials and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/tape_test.go b/api/app/tape_test.go index cc75425..0a11225 100644 --- a/api/app/tape_test.go +++ b/api/app/tape_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/task.go b/api/app/task.go index d18513a..3566e46 100644 --- a/api/app/task.go +++ b/api/app/task.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/task_rating.go b/api/app/task_rating.go index fa76fa8..7081d9d 100644 --- a/api/app/task_rating.go +++ b/api/app/task_rating.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/task_rating_requests.go b/api/app/task_rating_requests.go index 8105235..76b038b 100644 --- a/api/app/task_rating_requests.go +++ b/api/app/task_rating_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/task_rating_responses.go b/api/app/task_rating_responses.go index 7a50ef7..34ab380 100644 --- a/api/app/task_rating_responses.go +++ b/api/app/task_rating_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/task_rating_test.go b/api/app/task_rating_test.go index a5e1617..cdecd60 100644 --- a/api/app/task_rating_test.go +++ b/api/app/task_rating_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/task_requests.go b/api/app/task_requests.go index c76626a..1d12cf8 100644 --- a/api/app/task_requests.go +++ b/api/app/task_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/task_responses.go b/api/app/task_responses.go index 7a1575c..67843a9 100644 --- a/api/app/task_responses.go +++ b/api/app/task_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/task_test.go b/api/app/task_test.go index 2c1fb6e..5dad88f 100644 --- a/api/app/task_test.go +++ b/api/app/task_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/user.go b/api/app/user.go index f4cc9d1..5005874 100644 --- a/api/app/user.go +++ b/api/app/user.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/user_requests.go b/api/app/user_requests.go index ff25ea1..833dafc 100644 --- a/api/app/user_requests.go +++ b/api/app/user_requests.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/user_responses.go b/api/app/user_responses.go index fa2e734..494b790 100644 --- a/api/app/user_responses.go +++ b/api/app/user_responses.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/app/user_test.go b/api/app/user_test.go index b18d495..3b96463 100644 --- a/api/app/user_test.go +++ b/api/app/user_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/cronjob/submission_zipper.go b/api/cronjob/submission_zipper.go index 18431df..6b37e30 100644 --- a/api/cronjob/submission_zipper.go +++ b/api/cronjob/submission_zipper.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/helper/file_carrier.go b/api/helper/file_carrier.go index f200830..aec7fe6 100644 --- a/api/helper/file_carrier.go +++ b/api/helper/file_carrier.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/helper/helper.go b/api/helper/helper.go index c948f51..c3b6d14 100644 --- a/api/helper/helper.go +++ b/api/helper/helper.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/helper/helper_test.go b/api/helper/helper_test.go index 28fc41c..9ca4624 100644 --- a/api/helper/helper_test.go +++ b/api/helper/helper_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/server.go b/api/server.go index 1b2e38e..268d524 100644 --- a/api/server.go +++ b/api/server.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/shared/shared_structs.go b/api/shared/shared_structs.go index f56dbe6..d5ff9c3 100644 --- a/api/shared/shared_structs.go +++ b/api/shared/shared_structs.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/worker.go b/api/worker.go index ab09628..e455c9f 100644 --- a/api/worker.go +++ b/api/worker.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/api/worker/submission_handler.go b/api/worker/submission_handler.go index 0a2aa55..7801b4b 100644 --- a/api/worker/submission_handler.go +++ b/api/worker/submission_handler.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/auth/authenticate/authenticator.go b/auth/authenticate/authenticator.go index 50764f5..eb46e80 100644 --- a/auth/authenticate/authenticator.go +++ b/auth/authenticate/authenticator.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/auth/authenticate/claims.go b/auth/authenticate/claims.go index 86127b3..85d36f1 100644 --- a/auth/authenticate/claims.go +++ b/auth/authenticate/claims.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/auth/authenticate/middleware.go b/auth/authenticate/middleware.go index defd46f..114a7ad 100644 --- a/auth/authenticate/middleware.go +++ b/auth/authenticate/middleware.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/auth/authenticate/tokenauth.go b/auth/authenticate/tokenauth.go index 1f2d92b..2511db9 100644 --- a/auth/authenticate/tokenauth.go +++ b/auth/authenticate/tokenauth.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/auth/authorize/roles.go b/auth/authorize/roles.go index b93579b..5468946 100644 --- a/auth/authorize/roles.go +++ b/auth/authorize/roles.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/auth/errors.go b/auth/errors.go index 9b318de..8d8485b 100644 --- a/auth/errors.go +++ b/auth/errors.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/auth/password.go b/auth/password.go index 8a11485..7718524 100644 --- a/auth/password.go +++ b/auth/password.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/configuration.go b/cmd/configuration.go index 0d3e22d..6b99515 100644 --- a/cmd/configuration.go +++ b/cmd/configuration.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/console.go b/cmd/console.go index dc62553..27db0d2 100644 --- a/cmd/console.go +++ b/cmd/console.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/console/admin_cmd.go b/cmd/console/admin_cmd.go index 479ba12..a8707c9 100644 --- a/cmd/console/admin_cmd.go +++ b/cmd/console/admin_cmd.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/console/course_cmd.go b/cmd/console/course_cmd.go index 0981ef8..327142f 100644 --- a/cmd/console/course_cmd.go +++ b/cmd/console/course_cmd.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/console/database_cmd.go b/cmd/console/database_cmd.go index f748e13..57c9870 100644 --- a/cmd/console/database_cmd.go +++ b/cmd/console/database_cmd.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/console/group_cmd.go b/cmd/console/group_cmd.go index 2f6a569..8f6ad59 100644 --- a/cmd/console/group_cmd.go +++ b/cmd/console/group_cmd.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/console/helper.go b/cmd/console/helper.go index 07d1dc7..a5be054 100644 --- a/cmd/console/helper.go +++ b/cmd/console/helper.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/console/submission_cmd.go b/cmd/console/submission_cmd.go index cb0ef0c..64fb10e 100644 --- a/cmd/console/submission_cmd.go +++ b/cmd/console/submission_cmd.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/console/user_cmd.go b/cmd/console/user_cmd.go index 085cd20..788cfb0 100644 --- a/cmd/console/user_cmd.go +++ b/cmd/console/user_cmd.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/root.go b/cmd/root.go index fe4f4b5..34a880c 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/serve.go b/cmd/serve.go index 3cfa70f..3105a0a 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/cmd/work.go b/cmd/work.go index 69380ca..1106ebc 100644 --- a/cmd/work.go +++ b/cmd/work.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/configuration/configuration.go b/configuration/configuration.go index 99674bb..c3c4241 100644 --- a/configuration/configuration.go +++ b/configuration/configuration.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/configuration/configuration_test.go b/configuration/configuration_test.go index bb48dd3..f197edd 100644 --- a/configuration/configuration_test.go +++ b/configuration/configuration_test.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/configuration/fs/fs.go b/configuration/fs/fs.go index 17dc939..0ec6982 100644 --- a/configuration/fs/fs.go +++ b/configuration/fs/fs.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/database/course_store.go b/database/course_store.go index bfc43e9..4326f20 100644 --- a/database/course_store.go +++ b/database/course_store.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/database/grade_store.go b/database/grade_store.go index 01805fa..4801340 100644 --- a/database/grade_store.go +++ b/database/grade_store.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/database/group_store.go b/database/group_store.go index bfb2344..3fba21b 100644 --- a/database/group_store.go +++ b/database/group_store.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/database/material_store.go b/database/material_store.go index 4dbb917..74e9a59 100644 --- a/database/material_store.go +++ b/database/material_store.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/database/oracle.go b/database/oracle.go index 9b71518..b6bafa1 100644 --- a/database/oracle.go +++ b/database/oracle.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/database/sheet_store.go b/database/sheet_store.go index 6668aae..05b2959 100644 --- a/database/sheet_store.go +++ b/database/sheet_store.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/database/submission_store.go b/database/submission_store.go index 3f08e7b..43aa013 100644 --- a/database/submission_store.go +++ b/database/submission_store.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/database/task_store.go b/database/task_store.go index 3c3bee8..e2ef3d2 100644 --- a/database/task_store.go +++ b/database/task_store.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/database/user_store.go b/database/user_store.go index b4c153a..b8e176d 100644 --- a/database/user_store.go +++ b/database/user_store.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/docs/swagger/endpoints.go b/docs/swagger/endpoints.go index 1db1051..976555d 100644 --- a/docs/swagger/endpoints.go +++ b/docs/swagger/endpoints.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/docs/swagger/errors.go b/docs/swagger/errors.go index b8ed724..f733ce8 100644 --- a/docs/swagger/errors.go +++ b/docs/swagger/errors.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/docs/swagger/struct.go b/docs/swagger/struct.go index 2931c89..0506137 100644 --- a/docs/swagger/struct.go +++ b/docs/swagger/struct.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/docs/swagger/swagger.go b/docs/swagger/swagger.go index e916da5..ac0b12c 100644 --- a/docs/swagger/swagger.go +++ b/docs/swagger/swagger.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/docs/swagger/tag.go b/docs/swagger/tag.go index a36f90c..9fa37c5 100644 --- a/docs/swagger/tag.go +++ b/docs/swagger/tag.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/email/email.go b/email/email.go index e1e3f07..fec1f93 100644 --- a/email/email.go +++ b/email/email.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/infomark.go b/infomark.go index 4410bf7..7755ce2 100644 --- a/infomark.go +++ b/infomark.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/model/course.go b/model/course.go index 88dc47c..57a5aca 100644 --- a/model/course.go +++ b/model/course.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/model/enrollment.go b/model/enrollment.go index 31d98f5..1354fe4 100644 --- a/model/enrollment.go +++ b/model/enrollment.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/model/grade.go b/model/grade.go index a028e0b..447eb0a 100644 --- a/model/grade.go +++ b/model/grade.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/model/group.go b/model/group.go index d77bf09..d01ff9f 100644 --- a/model/group.go +++ b/model/group.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/model/group_bid.go b/model/group_bid.go index 67fb634..68f6143 100644 --- a/model/group_bid.go +++ b/model/group_bid.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/model/material.go b/model/material.go index 97e55d7..c1223a8 100644 --- a/model/material.go +++ b/model/material.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/model/sheet.go b/model/sheet.go index 3253c6b..fb8d381 100644 --- a/model/sheet.go +++ b/model/sheet.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/model/submission.go b/model/submission.go index 2d2b6df..0dc887c 100644 --- a/model/submission.go +++ b/model/submission.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/model/task.go b/model/task.go index de4a69f..bd19905 100644 --- a/model/task.go +++ b/model/task.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/model/user.go b/model/user.go index adb894c..9fc1867 100644 --- a/model/user.go +++ b/model/user.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/service/common.go b/service/common.go index 2cd947d..c4ca72f 100644 --- a/service/common.go +++ b/service/common.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/service/consumer.go b/service/consumer.go index 992f37c..5ac2211 100644 --- a/service/consumer.go +++ b/service/consumer.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/service/docker.go b/service/docker.go index 5e04888..dcb78e1 100644 --- a/service/docker.go +++ b/service/docker.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/service/producer.go b/service/producer.go index e30c56f..63557dc 100644 --- a/service/producer.go +++ b/service/producer.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/symbol/symbol.go b/symbol/symbol.go index c51a12a..b67d900 100644 --- a/symbol/symbol.go +++ b/symbol/symbol.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/symbol/version.go b/symbol/version.go index 0eeb1e9..b99137d 100644 --- a/symbol/version.go +++ b/symbol/version.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify diff --git a/tape/tape.go b/tape/tape.go index 8413641..907aae2 100644 --- a/tape/tape.go +++ b/tape/tape.go @@ -1,6 +1,7 @@ // InfoMark - a platform for managing courses with // distributing exercise sheets and testing exercise submissions -// Copyright (C) 2019 ComputerGraphics Tuebingen +// Copyright (C) 2019 ComputerGraphics Tuebingen +// 2020-present InfoMark.org // Authors: Patrick Wieschollek // // This program is free software: you can redistribute it and/or modify