Skip to content

Commit ad80de9

Browse files
authored
Merge pull request #1004 from boriel-basic/license/AGPLv3
Review and change al files to AGPLv3
2 parents ee76467 + 1cedffa commit ad80de9

File tree

244 files changed

+1634
-659
lines changed

Some content is hidden

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

244 files changed

+1634
-659
lines changed

CONTRIBUTORS.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# License
2+
3+
```
4+
| SPDX-License-Identifier: AGPL-3.0-or-later
5+
| © Copyright 2008-2024 José Manuel Rodríguez de la Rosa
6+
| and contributors.
7+
```
8+
9+
See https://www.gnu.org/licenses/agpl-3.0.html for license details.
10+
11+
# Contributors
12+
13+
Not all the Contributors are listed here. If you are missing, please let us know.
14+
15+
* Jose Rodriguez ([@boriel](https://github.com/boriel))
16+
* Paul Fisher [@britlion](https://github.com/Britlion)
17+
* David Saphier [@em00k](https://github.com/em00k)
18+
* Agustín Gimenez Bernad [@gusmanb](https://github.com/gusmanb)
19+
* Baltasar García Perez-Schofield ([@Baltasarq](https://github.com/Baltasarq))
20+
* Bartolomé Sánchez Salado ([@bartsanchez](https://github.com/bartsanchez))
21+
* Cronomantic ([@cronomantic](https://github.com/cronomantic))
22+
* Juan Segura Durán ([@Duefectu](https://github.com/Duefectu))
23+
* Einar Saukas ([@einar-saukas](https://github.com/einar-saukas))
24+
* Ivan Kosarev ([@kosarev](https://github.com/kosarev))
25+
* Miguel Angel Rodríguez Jódar ([@mcleod-ideafix](https://github.com/mcleod-ideafix))
26+
* [@MrKOSMOS](https://github.com/MrKOSMOS)
27+
* [@patters-match](https://github.com/patters-match)
28+
* [@programadorhedonista](https://github.com/programadorhedonista)
29+
* Rogerio Biondi ([@rogeriobiondi](https://github.com/rogeriobiondi))
30+
* [@spectrumcomputing](https://github.com/spectrumcomputing)
31+
* Stefan ([@polluks](https://github.com/polluks))
32+
* Alejandro Valero ([@wilco2009](https://github.com/wilco2009))
33+
* Pedro Gimeno ([@pgimeno](https://codeberg.org/pgimeno))
34+
35+
Many thanks! Every line counts! 🫶

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+
# © Copyright 2008-2024 José Manuel Rodríguez de la Rosa and contributors.
4+
# See the file CONTRIBUTORS.md for copyright details.
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+
# © Copyright 2008-2024 José Manuel Rodríguez de la Rosa and contributors.
4+
# See the file CONTRIBUTORS.md for copyright details.
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+
# © Copyright 2008-2024 José Manuel Rodríguez de la Rosa and contributors.
4+
# See the file CONTRIBUTORS.md for copyright details.
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+
# © Copyright 2008-2024 José Manuel Rodríguez de la Rosa and contributors.
4+
# See the file CONTRIBUTORS.md for copyright details.
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+
# © Copyright 2008-2024 José Manuel Rodríguez de la Rosa and contributors.
4+
# See the file CONTRIBUTORS.md for copyright details.
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+
# © Copyright 2008-2024 José Manuel Rodríguez de la Rosa and contributors.
4+
# See the file CONTRIBUTORS.md for copyright details.
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+
# © Copyright 2008-2024 José Manuel Rodríguez de la Rosa and contributors.
4+
# See the file CONTRIBUTORS.md for copyright details.
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+
# © Copyright 2008-2024 José Manuel Rodríguez de la Rosa and contributors.
4+
# See the file CONTRIBUTORS.md for copyright details.
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+
# © Copyright 2008-2024 José Manuel Rodríguez de la Rosa and contributors.
4+
# See the file CONTRIBUTORS.md for copyright details.
5+
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
6+
# --------------------------------------------------------------------
97

108
import sys
119
from collections.abc import Callable

0 commit comments

Comments
 (0)