Skip to content

Commit db9daa1

Browse files
committed
Review and change al files to AGPLv3
1 parent ee76467 commit db9daa1

File tree

243 files changed

+1602
-662
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+1602
-662
lines changed

src/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# --------------------------------------------------------------------
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# Licensed under the GNU Affero General Public License v3.0 or later.
4+
# Author: Jose M. Rodriguez-Rosa (a.k.a. Boriel) - https://boriel.com
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------

src/api/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# --------------------------------------------------------------------
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# Licensed under the GNU Affero General Public License v3.0 or later.
4+
# Author: Jose M. Rodriguez-Rosa (a.k.a. Boriel) - https://boriel.com
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------

src/api/check.py

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
# vim:ts=4:sw=4:et:
2-
3-
# ----------------------------------------------------------------------
4-
# Copyleft (K), Jose M. Rodriguez-Rosa (a.k.a. Boriel)
5-
#
6-
# This program is Free Software and is released under the terms of
7-
# the GNU General License
8-
# ----------------------------------------------------------------------
9-
1+
# --------------------------------------------------------------------
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# Licensed under the GNU Affero General Public License v3.0 or later.
4+
# Author: Jose M. Rodriguez-Rosa (a.k.a. Boriel) - https://boriel.com
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------
107

118
from src.api import config, errmsg, global_
129
from src.api.constants import CLASS, SCOPE

src/api/config.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
# vim:ts=4:et:sw=4:
2-
3-
# ----------------------------------------------------------------------
4-
# Copyleft (K), Jose M. Rodriguez-Rosa (a.k.a. Boriel)
5-
#
6-
# This program is Free Software and is released under the terms of
7-
# the GNU General License
8-
# ----------------------------------------------------------------------
1+
# --------------------------------------------------------------------
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# Licensed under the GNU Affero General Public License v3.0 or later.
4+
# Author: Jose M. Rodriguez-Rosa (a.k.a. Boriel) - https://boriel.com
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------
97

108
import configparser
119
import enum

src/api/constants.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
# vim: ts=4:et:sw=4:
2-
3-
# ----------------------------------------------------------------------
4-
# Copyleft (K), Jose M. Rodriguez-Rosa (a.k.a. Boriel)
5-
#
6-
# This program is Free Software and is released under the terms of
7-
# the GNU General License
8-
# ----------------------------------------------------------------------
1+
# --------------------------------------------------------------------
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# Licensed under the GNU Affero General Public License v3.0 or later.
4+
# Author: Jose M. Rodriguez-Rosa (a.k.a. Boriel) - https://boriel.com
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------
97

108
import enum
119
import os

src/api/dataref.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# --------------------------------------------------------------------
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# Licensed under the GNU Affero General Public License v3.0 or later.
4+
# Author: Jose M. Rodriguez-Rosa (a.k.a. Boriel) - https://boriel.com
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------
7+
18
from dataclasses import dataclass
29
from typing import Any
310

src/api/debug.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
# vim:ts=4:sw=4:et:
2-
3-
# Simple debugging module
1+
# --------------------------------------------------------------------
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# Licensed under the GNU Affero General Public License v3.0 or later.
4+
# Author: Jose M. Rodriguez-Rosa (a.k.a. Boriel) - https://boriel.com
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------
47

58
import inspect
69
import os

src/api/decorator.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# --------------------------------------------------------------------
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# Licensed under the GNU Affero General Public License v3.0 or later.
4+
# Author: Jose M. Rodriguez-Rosa (a.k.a. Boriel) - https://boriel.com
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------
7+
18
from collections.abc import Callable
29

310

src/api/errmsg.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
# vim: ts=4:et:sw=4:
2-
3-
# ----------------------------------------------------------------------
4-
# Copyleft (K), Jose M. Rodriguez-Rosa (a.k.a. Boriel)
5-
#
6-
# This program is Free Software and is released under the terms of
7-
# the GNU General License
8-
# ----------------------------------------------------------------------
1+
# --------------------------------------------------------------------
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# Licensed under the GNU Affero General Public License v3.0 or later.
4+
# Author: Jose M. Rodriguez-Rosa (a.k.a. Boriel) - https://boriel.com
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------
97

108
import sys
119
from collections.abc import Callable

src/api/exception.py

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
# vim:ts=4:et:sw=4:
2-
3-
# ----------------------------------------------------------------------
4-
# Copyleft (K), Jose M. Rodriguez-Rosa (a.k.a. Boriel)
5-
#
6-
# This program is Free Software and is released under the terms of
7-
# the GNU General License
8-
# ----------------------------------------------------------------------
9-
10-
11-
# ------------------------- ERROR exception classes ---------------------------
1+
# --------------------------------------------------------------------
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
# Licensed under the GNU Affero General Public License v3.0 or later.
4+
# Author: Jose M. Rodriguez-Rosa (a.k.a. Boriel) - https://boriel.com
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------
127

138
__all__ = [
149
"Error",

0 commit comments

Comments
 (0)