From 7d2ef9a6b6458c11cdd8c4ba70d1331f4ddc1210 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Mon, 23 Jan 2012 12:17:28 +0100 Subject: [PATCH] Added licensing info to README and all source files --- README.md | 2 ++ gviz.py | 1 + plater.py | 1 + printcore.py | 2 +- projectlayer.py | 1 + pronsole.py | 1 + pronterface.py | 1 + stltool.py | 1 + stlview.py | 1 + xybuttons.py | 1 + zbuttons.py | 1 + zscaper.py | 1 + 12 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f126c7f..d9a4c8d 100644 --- a/README.md +++ b/README.md @@ -114,4 +114,6 @@ sender, or the following code example: p.resume() p.disconnect() +# LICENSE +The Printrun suite is licensed under the terms of GPL version 3, or, at your option, any later version. diff --git a/gviz.py b/gviz.py index 936e98e..c5f4361 100755 --- a/gviz.py +++ b/gviz.py @@ -1,3 +1,4 @@ +# Licensed under the terms of GPL version 3, or, at your option, any later version. import wx,time class window(wx.Frame): diff --git a/plater.py b/plater.py index a6b7eb6..92e77f8 100755 --- a/plater.py +++ b/plater.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +# Licensed under the terms of GPL version 3, or, at your option, any later version. # Set up Internationalization using gettext # searching for installed locales on /usr/share; uses relative folder if not found (windows) diff --git a/printcore.py b/printcore.py index 2245c3a..3626ae3 100755 --- a/printcore.py +++ b/printcore.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Licensed under GPLv3 +# Licensed under the terms of GPL version 3, or, at your option, any later version. from serial import Serial from threading import Thread diff --git a/projectlayer.py b/projectlayer.py index 10eb4b4..2f7247c 100644 --- a/projectlayer.py +++ b/projectlayer.py @@ -1,3 +1,4 @@ +# Licensed under the terms of GPL version 3, or, at your option, any later version. import xml.etree.ElementTree import wx import time diff --git a/pronsole.py b/pronsole.py index 479bf33..9a0847a 100755 --- a/pronsole.py +++ b/pronsole.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +# Licensed under the terms of GPL version 3, or, at your option, any later version. import cmd, printcore, sys import glob, os, time import sys, subprocess diff --git a/pronterface.py b/pronterface.py index ffb481a..0f4ec41 100755 --- a/pronterface.py +++ b/pronterface.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +# Licensed under the terms of GPL version 3, or, at your option, any later version. # Set up Internationalization using gettext # searching for installed locales on /usr/share; uses relative folder if not found (windows) diff --git a/stltool.py b/stltool.py index 3573215..04d2719 100644 --- a/stltool.py +++ b/stltool.py @@ -1,3 +1,4 @@ +# Licensed under the terms of GPL version 3, or, at your option, any later version. import sys, struct, math def cross(v1,v2): diff --git a/stlview.py b/stlview.py index c8305d4..57e9704 100644 --- a/stlview.py +++ b/stlview.py @@ -1,4 +1,5 @@ #!/usr/bin/python +# Licensed under the terms of GPL version 3, or, at your option, any later version. import os import math import stltool diff --git a/xybuttons.py b/xybuttons.py index a47f441..d0db372 100644 --- a/xybuttons.py +++ b/xybuttons.py @@ -1,3 +1,4 @@ +# Licensed under the terms of GPL version 3, or, at your option, any later version. import wx, os, math from bufferedcanvas import * diff --git a/zbuttons.py b/zbuttons.py index 43fe6c6..d6489b0 100644 --- a/zbuttons.py +++ b/zbuttons.py @@ -1,3 +1,4 @@ +# Licensed under the terms of GPL version 3, or, at your option, any later version. import wx, os, math from bufferedcanvas import * diff --git a/zscaper.py b/zscaper.py index 6d4a96a..59265cd 100644 --- a/zscaper.py +++ b/zscaper.py @@ -1,3 +1,4 @@ +# Licensed under the terms of GPL version 3, or, at your option, any later version. import wx,math from stltool import * a=wx.App()