changeset 32:081e1c258e64

misc: update copyright years
author David Demelier <markand@malikania.fr>
date Thu, 04 Aug 2022 14:59:33 +0200
parents 8c2087e7d381
children 1d0ddf9e6efd
files LICENSE.md Makefile extern/libduktape/CMakeLists.txt lib/log.c lib/log.h lib/util.c lib/util.h man/sci.7.in man/scictl.8.in man/scid.8.in man/sciwebd.8.in man/sciworkerd.8.in scictl/scictl.c scid/crud.c scid/crud.h scid/db.c scid/db.h scid/http.c scid/http.h scid/main.c scid/page-api-jobresults.c scid/page-api-jobresults.h scid/page-api-jobs.c scid/page-api-jobs.h scid/page-api-projects.c scid/page-api-projects.h scid/page-api-todo.c scid/page-api-todo.h scid/page-api-workers.c scid/page-index.c scid/page-index.h scid/pageutil.c scid/pageutil.h scid/theme.c scid/theme.h sciworkerd/main.c sql/init.sql sql/job-add.sql sql/job-todo.sql sql/jobresult-add.sql sql/project-find.sql sql/project-list.sql sql/project-save.sql sql/worker-find.sql sql/worker-list.sql sql/worker-save.sql tests/test-db.c themes/bulma/theme.js
diffstat 48 files changed, 52 insertions(+), 84 deletions(-) [+]
line wrap: on
line diff
--- a/LICENSE.md	Thu Aug 04 14:56:14 2022 +0200
+++ b/LICENSE.md	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 sci ISC LICENSE
 ===============
 
-Copyright (c) 2021 David Demelier <markand@malikania.fr>
+Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 
 Permission to use, copy, modify, and/or distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
--- a/Makefile	Thu Aug 04 14:56:14 2022 +0200
+++ b/Makefile	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 #
 # Makefile -- POSIX Makefile for sci
 #
-# Copyright (c) 2021 David Demelier <markand@malikania.fr>
+# Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 #
 # Permission to use, copy, modify, and/or distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above
--- a/extern/libduktape/CMakeLists.txt	Thu Aug 04 14:56:14 2022 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-#
-# CMakeLists.txt -- CMake build system for duktape
-#
-# Copyright (c) 2016-2019 David Demelier <markand@malikania.fr>
-#
-# Permission to use, copy, modify, and/or distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-#
-
-cmake_minimum_required(VERSION 3.0)
-project(libduktape)
-add_library(libduktape duk_config.h duktape.c duktape.h)
-target_include_directories(
-	libduktape
-	PUBLIC
-		$<BUILD_INTERFACE:${libduktape_SOURCE_DIR}>
-)
-
-if (BUILD_SHARED_LIBS)
-	target_compile_definitions(libduktape PUBLIC DUK_F_DLL_BUILD)
-endif ()
-
-set_target_properties(libduktape PROPERTIES PREFIX "")
--- a/lib/log.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/lib/log.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * log.c -- logging routines
  *
- * Copyright (c) 2020-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2020-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/lib/log.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/lib/log.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * log.h -- logging routines
  *
- * Copyright (c) 2020-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2020-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/lib/util.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/lib/util.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * util.c -- miscellaneous utilities
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/lib/util.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/lib/util.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * util.h -- miscellaneous utilities
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/man/sci.7.in	Thu Aug 04 14:56:14 2022 +0200
+++ b/man/sci.7.in	Thu Aug 04 14:59:33 2022 +0200
@@ -1,5 +1,5 @@
 .\"
-.\" Copyright (c) 2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -13,7 +13,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd June 30, 2021
+.Dd June 30, 2021-2022
 .Dt SCI 7
 .Os
 .\" NAME
--- a/man/scictl.8.in	Thu Aug 04 14:56:14 2022 +0200
+++ b/man/scictl.8.in	Thu Aug 04 14:59:33 2022 +0200
@@ -1,5 +1,5 @@
 .\"
-.\" Copyright (c) 2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -13,7 +13,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd June 30, 2021
+.Dd June 30, 2021-2022
 .Dt SCICTL 8
 .Os
 .\" NAME
--- a/man/scid.8.in	Thu Aug 04 14:56:14 2022 +0200
+++ b/man/scid.8.in	Thu Aug 04 14:59:33 2022 +0200
@@ -1,5 +1,5 @@
 .\"
-.\" Copyright (c) 2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -13,7 +13,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd June 30, 2021
+.Dd June 30, 2021-2022
 .Dt SCID 8
 .Os
 .\" NAME
--- a/man/sciwebd.8.in	Thu Aug 04 14:56:14 2022 +0200
+++ b/man/sciwebd.8.in	Thu Aug 04 14:59:33 2022 +0200
@@ -1,5 +1,5 @@
 .\"
-.\" Copyright (c) 2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -13,7 +13,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd June 30, 2021
+.Dd June 30, 2021-2022
 .Dt SCIWEBD 8
 .Os
 .\" NAME
--- a/man/sciworkerd.8.in	Thu Aug 04 14:56:14 2022 +0200
+++ b/man/sciworkerd.8.in	Thu Aug 04 14:59:33 2022 +0200
@@ -1,5 +1,5 @@
 .\"
-.\" Copyright (c) 2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -13,7 +13,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd June 30, 2021
+.Dd June 30, 2021-2022
 .Dt SCIWORKERD 8
 .Os
 .\" NAME
--- a/scictl/scictl.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scictl/scictl.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * scictl.c -- main scictl(8) utility file
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/crud.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/crud.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * crud.c -- convenient helpers for page-api-*
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/crud.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/crud.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * crud.h -- convenient helpers for page-api-*
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/db.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/db.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * db.c -- scid database access
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/db.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/db.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * db.h -- scid database access
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/http.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/http.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * http.c -- HTTP parsing and rendering
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/http.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/http.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * http.h -- HTTP parsing and rendering
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/main.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/main.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * scid.c -- main scid(8) program file
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-api-jobresults.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-api-jobresults.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-api-jobresults.c -- /api/v?/jobresults route
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-api-jobresults.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-api-jobresults.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-api-jobresults.h -- /api/v?/jobresults route
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-api-jobs.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-api-jobs.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-api-jobs.c -- /api/v?/jobs route
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-api-jobs.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-api-jobs.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-api-jobs.h -- /api/v?/jobs route
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-api-projects.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-api-projects.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-api-projects.c -- /api/v?/projects route
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-api-projects.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-api-projects.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-api-projects.h -- /api/v?/projects route
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-api-todo.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-api-todo.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-api-todo.c -- /api/v?/todo route
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-api-todo.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-api-todo.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-api-todo.h -- /api/v?/todo route
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-api-workers.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-api-workers.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-api-workers.c -- /api/v?/workers route
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-index.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-index.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-index.c -- page /
  *
- * Copyright (c) 2020-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/page-index.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/page-index.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * page-index.h -- / route
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/pageutil.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/pageutil.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * pageutil.c -- page utilities
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/pageutil.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/pageutil.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * pageutil.h -- page utilities
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/theme.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/theme.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * theme.c -- theme management
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/scid/theme.h	Thu Aug 04 14:56:14 2022 +0200
+++ b/scid/theme.h	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * theme.h -- theme management
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/sciworkerd/main.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/sciworkerd/main.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * sciworkerd.c -- main sciworkerd(8) program file
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/sql/init.sql	Thu Aug 04 14:56:14 2022 +0200
+++ b/sql/init.sql	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 --
 -- init.sql -- create database
 --
--- Copyright (c) 2021 David Demelier <markand@malikania.fr>
+-- Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 --
 -- Permission to use, copy, modify, and/or distribute this software for any
 -- purpose with or without fee is hereby granted, provided that the above
--- a/sql/job-add.sql	Thu Aug 04 14:56:14 2022 +0200
+++ b/sql/job-add.sql	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 --
 -- job-add.sql -- post a new job
 --
--- Copyright (c) 2021 David Demelier <markand@malikania.fr>
+-- Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 --
 -- Permission to use, copy, modify, and/or distribute this software for any
 -- purpose with or without fee is hereby granted, provided that the above
--- a/sql/job-todo.sql	Thu Aug 04 14:56:14 2022 +0200
+++ b/sql/job-todo.sql	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 --
 -- job-todo.sql -- list jobs to perform for a worker
 --
--- Copyright (c) 2021 David Demelier <markand@malikania.fr>
+-- Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 --
 -- Permission to use, copy, modify, and/or distribute this software for any
 -- purpose with or without fee is hereby granted, provided that the above
--- a/sql/jobresult-add.sql	Thu Aug 04 14:56:14 2022 +0200
+++ b/sql/jobresult-add.sql	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 --
 -- jobresult-add.sql -- register a new job result
 --
--- Copyright (c) 2021 David Demelier <markand@malikania.fr>
+-- Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 --
 -- Permission to use, copy, modify, and/or distribute this software for any
 -- purpose with or without fee is hereby granted, provided that the above
--- a/sql/project-find.sql	Thu Aug 04 14:56:14 2022 +0200
+++ b/sql/project-find.sql	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 --
 -- project-find.sql -- find project by name
 --
--- Copyright (c) 2021 David Demelier <markand@malikania.fr>
+-- Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 --
 -- Permission to use, copy, modify, and/or distribute this software for any
 -- purpose with or without fee is hereby granted, provided that the above
--- a/sql/project-list.sql	Thu Aug 04 14:56:14 2022 +0200
+++ b/sql/project-list.sql	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 --
 -- project-list.sql -- list projects
 --
--- Copyright (c) 2021 David Demelier <markand@malikania.fr>
+-- Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 --
 -- Permission to use, copy, modify, and/or distribute this software for any
 -- purpose with or without fee is hereby granted, provided that the above
--- a/sql/project-save.sql	Thu Aug 04 14:56:14 2022 +0200
+++ b/sql/project-save.sql	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 --
 -- project-save.sql -- create a new project
 --
--- Copyright (c) 2021 David Demelier <markand@malikania.fr>
+-- Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 --
 -- Permission to use, copy, modify, and/or distribute this software for any
 -- purpose with or without fee is hereby granted, provided that the above
--- a/sql/worker-find.sql	Thu Aug 04 14:56:14 2022 +0200
+++ b/sql/worker-find.sql	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 --
 -- worker-find.sql -- find worker by name
 --
--- Copyright (c) 2021 David Demelier <markand@malikania.fr>
+-- Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 --
 -- Permission to use, copy, modify, and/or distribute this software for any
 -- purpose with or without fee is hereby granted, provided that the above
--- a/sql/worker-list.sql	Thu Aug 04 14:56:14 2022 +0200
+++ b/sql/worker-list.sql	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 --
 -- worker-list.sql -- list workers
 --
--- Copyright (c) 2021 David Demelier <markand@malikania.fr>
+-- Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 --
 -- Permission to use, copy, modify, and/or distribute this software for any
 -- purpose with or without fee is hereby granted, provided that the above
--- a/sql/worker-save.sql	Thu Aug 04 14:56:14 2022 +0200
+++ b/sql/worker-save.sql	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 --
 -- worker-save -- create a new worker
 --
--- Copyright (c) 2021 David Demelier <markand@malikania.fr>
+-- Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 --
 -- Permission to use, copy, modify, and/or distribute this software for any
 -- purpose with or without fee is hereby granted, provided that the above
--- a/tests/test-db.c	Thu Aug 04 14:56:14 2022 +0200
+++ b/tests/test-db.c	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * test-db.c -- test database access
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/themes/bulma/theme.js	Thu Aug 04 14:56:14 2022 +0200
+++ b/themes/bulma/theme.js	Thu Aug 04 14:59:33 2022 +0200
@@ -1,7 +1,7 @@
 /*
  * theme.js -- scid bulma theme
  *
- * Copyright (c) 2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above