From bb8e3467f6797ccdf8f98f97485134de3018b9d3 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Mon, 03 Mar 2025 21:18:19 +0800 Subject: [PATCH] Add SPDX license headers to Makefile, SQL, and CSS --- Makefile | 3 +++ schema.sql | 3 +++ static/chroma.css | 5 +++++ static/style.css | 5 +++++ diff --git a/Makefile b/Makefile index 5e4d9f405e2ef5cdeb7e3c5ad511148e132ee885..b452eb2d517fcafa6754a65c2cfe081949f414fa 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ +# SPDX-License-Identifier: AGPL-3.0-only +# SPDX-FileContributor: Runxi Yu + .PHONY: clean version.go CFLAGS = -Wall -Wextra -Werror -pedantic -std=c99 -D_GNU_SOURCE diff --git a/schema.sql b/schema.sql index 684c32d9ad1bbb12938ad3d0d622d1c736d64273..3a84825d40976154a30615f496b65c8df03499d7 100644 --- a/schema.sql +++ b/schema.sql @@ -1,3 +1,6 @@ +-- SPDX-License-Identifier: AGPL-3.0-only +-- SPDX-FileContributor: Runxi Yu + CREATE TABLE groups ( id INTEGER GENERATED ALWAYS AS IDENTITY PRIMARY KEY, name TEXT NOT NULL UNIQUE, diff --git a/static/chroma.css b/static/chroma.css index 7157d043fb41153fd8d8eecae0f99db48263e261..b819e7b2238685328d8bfbb706d97de9d1848daa 100644 --- a/static/chroma.css +++ b/static/chroma.css @@ -1,3 +1,8 @@ +/* + * SPDX-License-Identifier: AGPL-3.0-only + * SPDX-FileContributor: Runxi Yu + */ + @media (prefers-color-scheme: light) { /* Background */ .bg { ; } /* PreWrapper */ .chroma { ; } diff --git a/static/style.css b/static/style.css index 693d459c05aefc13805064a8663a98695149ce5f..5954b108cb02a9a2afbb171b1b7f7db58a0f5f82 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,8 @@ +/* + * SPDX-License-Identifier: AGPL-3.0-only + * SPDX-FileContributor: Runxi Yu + */ + /* Base styles and variables */ html { font-family: sans-serif; -- 2.48.1