From 9810a1fa694c9651f47429f611d1e43f6615c71e Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 30 Dec 2024 18:28:18 -0600 Subject: [PATCH] docs: add GPL license headers to python modules --- src/sideshow/cli.py | 21 +++++++++++++++++++++ src/sideshow/config.py | 21 +++++++++++++++++++++ src/sideshow/db/model/__init__.py | 21 +++++++++++++++++++++ src/sideshow/web/app.py | 21 +++++++++++++++++++++ src/sideshow/web/menus.py | 21 +++++++++++++++++++++ src/sideshow/web/static/__init__.py | 21 +++++++++++++++++++++ src/sideshow/web/subscribers.py | 21 +++++++++++++++++++++ src/sideshow/web/views/__init__.py | 21 +++++++++++++++++++++ 8 files changed, 168 insertions(+) diff --git a/src/sideshow/cli.py b/src/sideshow/cli.py index 05905ee..69d5e47 100644 --- a/src/sideshow/cli.py +++ b/src/sideshow/cli.py @@ -1,4 +1,25 @@ # -*- coding: utf-8; -*- +################################################################################ +# +# Sideshow -- Case/Special Order Tracker +# Copyright © 2024 Lance Edgar +# +# This file is part of Sideshow. +# +# Sideshow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Sideshow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Sideshow. If not, see . +# +################################################################################ """ Sideshow CLI """ diff --git a/src/sideshow/config.py b/src/sideshow/config.py index fb508d7..94946e9 100644 --- a/src/sideshow/config.py +++ b/src/sideshow/config.py @@ -1,4 +1,25 @@ # -*- coding: utf-8; -*- +################################################################################ +# +# Sideshow -- Case/Special Order Tracker +# Copyright © 2024 Lance Edgar +# +# This file is part of Sideshow. +# +# Sideshow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Sideshow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Sideshow. If not, see . +# +################################################################################ """ Sideshow config extensions """ diff --git a/src/sideshow/db/model/__init__.py b/src/sideshow/db/model/__init__.py index 1d66fe8..6fe442d 100644 --- a/src/sideshow/db/model/__init__.py +++ b/src/sideshow/db/model/__init__.py @@ -1,4 +1,25 @@ # -*- coding: utf-8; -*- +################################################################################ +# +# Sideshow -- Case/Special Order Tracker +# Copyright © 2024 Lance Edgar +# +# This file is part of Sideshow. +# +# Sideshow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Sideshow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Sideshow. If not, see . +# +################################################################################ """ Sideshow data models """ diff --git a/src/sideshow/web/app.py b/src/sideshow/web/app.py index 4e189ee..a4a20b1 100644 --- a/src/sideshow/web/app.py +++ b/src/sideshow/web/app.py @@ -1,4 +1,25 @@ # -*- coding: utf-8; -*- +################################################################################ +# +# Sideshow -- Case/Special Order Tracker +# Copyright © 2024 Lance Edgar +# +# This file is part of Sideshow. +# +# Sideshow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Sideshow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Sideshow. If not, see . +# +################################################################################ """ Sideshow web app """ diff --git a/src/sideshow/web/menus.py b/src/sideshow/web/menus.py index 32478e3..9ec651d 100644 --- a/src/sideshow/web/menus.py +++ b/src/sideshow/web/menus.py @@ -1,4 +1,25 @@ # -*- coding: utf-8; -*- +################################################################################ +# +# Sideshow -- Case/Special Order Tracker +# Copyright © 2024 Lance Edgar +# +# This file is part of Sideshow. +# +# Sideshow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Sideshow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Sideshow. If not, see . +# +################################################################################ """ Sideshow Menu """ diff --git a/src/sideshow/web/static/__init__.py b/src/sideshow/web/static/__init__.py index 0eb95ea..36dcc2f 100644 --- a/src/sideshow/web/static/__init__.py +++ b/src/sideshow/web/static/__init__.py @@ -1,4 +1,25 @@ # -*- coding: utf-8; -*- +################################################################################ +# +# Sideshow -- Case/Special Order Tracker +# Copyright © 2024 Lance Edgar +# +# This file is part of Sideshow. +# +# Sideshow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Sideshow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Sideshow. If not, see . +# +################################################################################ """ Static assets """ diff --git a/src/sideshow/web/subscribers.py b/src/sideshow/web/subscribers.py index 72c15db..b2c81ca 100644 --- a/src/sideshow/web/subscribers.py +++ b/src/sideshow/web/subscribers.py @@ -1,4 +1,25 @@ # -*- coding: utf-8; -*- +################################################################################ +# +# Sideshow -- Case/Special Order Tracker +# Copyright © 2024 Lance Edgar +# +# This file is part of Sideshow. +# +# Sideshow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Sideshow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Sideshow. If not, see . +# +################################################################################ """ Pyramid event subscribers """ diff --git a/src/sideshow/web/views/__init__.py b/src/sideshow/web/views/__init__.py index d2f9f21..be0bdb4 100644 --- a/src/sideshow/web/views/__init__.py +++ b/src/sideshow/web/views/__init__.py @@ -1,4 +1,25 @@ # -*- coding: utf-8; -*- +################################################################################ +# +# Sideshow -- Case/Special Order Tracker +# Copyright © 2024 Lance Edgar +# +# This file is part of Sideshow. +# +# Sideshow is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Sideshow is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Sideshow. If not, see . +# +################################################################################ """ Sideshow Views """