Commit 13d911c9 authored by Pietro Albini's avatar Pietro Albini

Clarified license status (AGPLv3+)

parent 132af354
...@@ -6,7 +6,7 @@ permette una sincronizzazione dei branch con i merge request presenti sul ...@@ -6,7 +6,7 @@ permette una sincronizzazione dei branch con i merge request presenti sul
repository. È anche altamente specifico per la nostra configurazione, quindi repository. È anche altamente specifico per la nostra configurazione, quindi
potrebbe non funzionare in contesti differenti. potrebbe non funzionare in contesti differenti.
Managetests è rilasciato sotto licenza GNU-AGPL v3. Managetests è rilasciato sotto licenza GNU-AGPL v3+.
## Inizializzazione di managetests ## Inizializzazione di managetests
......
""" # A program which manages Ubuntu-it's web test server
testsmanager # Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
Test instances manager for the Ubuntu-it website #
# This program is free software: you can redistribute it and/or modify
Copyright (c) 2015 Pietro Albini # it under the terms of the GNU Affero General Public License as published
Released under the GNU-AGPL v3 # by the Free Software Foundation, either version 3 of the License, or
""" # (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
""" # A program which manages Ubuntu-it's web test server
testsmanager.branches # Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
Representation of the branches #
# This program is free software: you can redistribute it and/or modify
Copyright (c) 2015 Pietro Albini <pietroalbini@ubuntu.com> # it under the terms of the GNU Affero General Public License as published
Released under the GNU-AGPL v3 license # by the Free Software Foundation, either version 3 of the License, or
""" # (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys import sys
import subprocess import subprocess
......
""" # A program which manages Ubuntu-it's web test server
testsmanager.gitlab # Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
Wrapper for the GitLab API #
# This program is free software: you can redistribute it and/or modify
Copyright (c) 2015 Pietro Albini <pietroalbini@ubuntu.com> # it under the terms of the GNU Affero General Public License as published
Released under the GNU-AGPL v3 license # by the Free Software Foundation, either version 3 of the License, or
""" # (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import requests import requests
......
# A program which manages Ubuntu-it's web test server
# Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys import sys
import os import os
......
# A program which manages Ubuntu-it's web test server
# Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import subprocess import subprocess
import atexit import atexit
import time import time
......
# A program which manages Ubuntu-it's web test server
# Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; witout even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import queue import queue
import threading import threading
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment