From 7d2ef9a6b6458c11cdd8c4ba70d1331f4ddc1210 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Mon, 23 Jan 2012 12:17:28 +0100 Subject: [PATCH 1/2] 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() From 34ede756a6fc934c32d9cbe1e5805d78048d472f Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Mon, 23 Jan 2012 12:36:49 +0100 Subject: [PATCH 2/2] Full GPLv3 notice --- README.md | 15 ++++++++++++++- gviz.py | 16 +++++++++++++++- plater.py | 16 +++++++++++++++- printcore.py | 16 +++++++++++++++- projectlayer.py | 16 +++++++++++++++- pronsole.py | 17 ++++++++++++++++- pronterface.py | 16 +++++++++++++++- stltool.py | 16 +++++++++++++++- stlview.py | 17 ++++++++++++++++- xybuttons.py | 16 +++++++++++++++- zbuttons.py | 16 +++++++++++++++- zscaper.py | 16 +++++++++++++++- 12 files changed, 181 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index d9a4c8d..ff377d9 100644 --- a/README.md +++ b/README.md @@ -116,4 +116,17 @@ sender, or the following code example: # LICENSE -The Printrun suite is licensed under the terms of GPL version 3, or, at your option, any later version. +``` +Printrun 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. + +Printrun 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 Printrun. If not, see . +``` diff --git a/gviz.py b/gviz.py index c5f4361..5e70a03 100755 --- a/gviz.py +++ b/gviz.py @@ -1,4 +1,18 @@ -# Licensed under the terms of GPL version 3, or, at your option, any later version. +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . + import wx,time class window(wx.Frame): diff --git a/plater.py b/plater.py index 92e77f8..251f45a 100755 --- a/plater.py +++ b/plater.py @@ -1,5 +1,19 @@ #!/usr/bin/env python -# Licensed under the terms of GPL version 3, or, at your option, any later version. + +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . # 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 3626ae3..cadbc0e 100755 --- a/printcore.py +++ b/printcore.py @@ -1,5 +1,19 @@ #!/usr/bin/env python -# Licensed under the terms of GPL version 3, or, at your option, any later version. + +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . from serial import Serial from threading import Thread diff --git a/projectlayer.py b/projectlayer.py index 2f7247c..e50ce8b 100644 --- a/projectlayer.py +++ b/projectlayer.py @@ -1,4 +1,18 @@ -# Licensed under the terms of GPL version 3, or, at your option, any later version. +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . + import xml.etree.ElementTree import wx import time diff --git a/pronsole.py b/pronsole.py index 9a0847a..b1dddca 100755 --- a/pronsole.py +++ b/pronsole.py @@ -1,5 +1,20 @@ #!/usr/bin/env python -# Licensed under the terms of GPL version 3, or, at your option, any later version. + +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . + import cmd, printcore, sys import glob, os, time import sys, subprocess diff --git a/pronterface.py b/pronterface.py index 0f4ec41..cad6ec5 100755 --- a/pronterface.py +++ b/pronterface.py @@ -1,5 +1,19 @@ #!/usr/bin/env python -# Licensed under the terms of GPL version 3, or, at your option, any later version. + +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . # 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 04d2719..d54ac02 100644 --- a/stltool.py +++ b/stltool.py @@ -1,4 +1,18 @@ -# Licensed under the terms of GPL version 3, or, at your option, any later version. +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . + import sys, struct, math def cross(v1,v2): diff --git a/stlview.py b/stlview.py index 57e9704..fe0bab6 100644 --- a/stlview.py +++ b/stlview.py @@ -1,5 +1,20 @@ #!/usr/bin/python -# Licensed under the terms of GPL version 3, or, at your option, any later version. + +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . + import os import math import stltool diff --git a/xybuttons.py b/xybuttons.py index d0db372..8b29adf 100644 --- a/xybuttons.py +++ b/xybuttons.py @@ -1,4 +1,18 @@ -# Licensed under the terms of GPL version 3, or, at your option, any later version. +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . + import wx, os, math from bufferedcanvas import * diff --git a/zbuttons.py b/zbuttons.py index d6489b0..5638e6f 100644 --- a/zbuttons.py +++ b/zbuttons.py @@ -1,4 +1,18 @@ -# Licensed under the terms of GPL version 3, or, at your option, any later version. +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . + import wx, os, math from bufferedcanvas import * diff --git a/zscaper.py b/zscaper.py index 59265cd..25d7a19 100644 --- a/zscaper.py +++ b/zscaper.py @@ -1,4 +1,18 @@ -# Licensed under the terms of GPL version 3, or, at your option, any later version. +# This file is part of the Printrun suite. +# +# Printrun 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. +# +# Printrun 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 Printrun. If not, see . + import wx,math from stltool import * a=wx.App()