summaryrefslogtreecommitdiff
path: root/lib/extensions
diff options
context:
space:
mode:
Diffstat (limited to 'lib/extensions')
-rw-r--r--lib/extensions/__init__.py5
-rw-r--r--lib/extensions/auto_satin.py5
-rw-r--r--lib/extensions/base.py5
-rw-r--r--lib/extensions/break_apart.py5
-rw-r--r--lib/extensions/cleanup.py5
-rw-r--r--lib/extensions/commands.py5
-rw-r--r--lib/extensions/convert_to_satin.py5
-rw-r--r--lib/extensions/cut_satin.py5
-rw-r--r--lib/extensions/embroider_settings.py5
-rw-r--r--lib/extensions/flip.py5
-rw-r--r--lib/extensions/global_commands.py5
-rw-r--r--lib/extensions/import_threadlist.py5
-rw-r--r--lib/extensions/input.py5
-rw-r--r--lib/extensions/install.py5
-rw-r--r--lib/extensions/layer_commands.py5
-rw-r--r--lib/extensions/lettering.py5
-rw-r--r--lib/extensions/lettering_custom_font_dir.py5
-rw-r--r--lib/extensions/lettering_generate_json.py5
-rw-r--r--lib/extensions/lettering_remove_kerning.py5
-rw-r--r--lib/extensions/object_commands.py5
-rw-r--r--lib/extensions/output.py5
-rw-r--r--lib/extensions/params.py5
-rw-r--r--lib/extensions/print_pdf.py5
-rw-r--r--lib/extensions/remove_embroidery_settings.py5
-rw-r--r--lib/extensions/reorder.py5
-rw-r--r--lib/extensions/simulator.py5
-rw-r--r--lib/extensions/stitch_plan_preview.py5
-rw-r--r--lib/extensions/troubleshoot.py5
-rw-r--r--lib/extensions/zip.py5
29 files changed, 145 insertions, 0 deletions
diff --git a/lib/extensions/__init__.py b/lib/extensions/__init__.py
index 1758772e..1905817a 100644
--- a/lib/extensions/__init__.py
+++ b/lib/extensions/__init__.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from lib.extensions.troubleshoot import Troubleshoot
from .auto_satin import AutoSatin
diff --git a/lib/extensions/auto_satin.py b/lib/extensions/auto_satin.py
index fce4a1fd..62fb15af 100644
--- a/lib/extensions/auto_satin.py
+++ b/lib/extensions/auto_satin.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import sys
import inkex
diff --git a/lib/extensions/base.py b/lib/extensions/base.py
index ef5cdd6a..44c7ec88 100644
--- a/lib/extensions/base.py
+++ b/lib/extensions/base.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import json
import os
import re
diff --git a/lib/extensions/break_apart.py b/lib/extensions/break_apart.py
index d0ab2619..c2eb02d4 100644
--- a/lib/extensions/break_apart.py
+++ b/lib/extensions/break_apart.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import logging
from copy import copy
diff --git a/lib/extensions/cleanup.py b/lib/extensions/cleanup.py
index f1965aba..99b72a81 100644
--- a/lib/extensions/cleanup.py
+++ b/lib/extensions/cleanup.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from inkex import NSS, Boolean, errormsg
from ..elements import Fill, Stroke
diff --git a/lib/extensions/commands.py b/lib/extensions/commands.py
index 19b85e6d..0f1fefab 100644
--- a/lib/extensions/commands.py
+++ b/lib/extensions/commands.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from inkex import Boolean
from .base import InkstitchExtension
diff --git a/lib/extensions/convert_to_satin.py b/lib/extensions/convert_to_satin.py
index 048c08da..393ffd9e 100644
--- a/lib/extensions/convert_to_satin.py
+++ b/lib/extensions/convert_to_satin.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import math
import sys
from itertools import chain, groupby
diff --git a/lib/extensions/cut_satin.py b/lib/extensions/cut_satin.py
index 7cc80295..b471239e 100644
--- a/lib/extensions/cut_satin.py
+++ b/lib/extensions/cut_satin.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import inkex
from ..elements import SatinColumn
diff --git a/lib/extensions/embroider_settings.py b/lib/extensions/embroider_settings.py
index 88e2ba9b..f504c88f 100644
--- a/lib/extensions/embroider_settings.py
+++ b/lib/extensions/embroider_settings.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from .base import InkstitchExtension
diff --git a/lib/extensions/flip.py b/lib/extensions/flip.py
index 87b8b3f0..743f1701 100644
--- a/lib/extensions/flip.py
+++ b/lib/extensions/flip.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import inkex
from ..elements import SatinColumn
diff --git a/lib/extensions/global_commands.py b/lib/extensions/global_commands.py
index 9655c7af..6c1f2f10 100644
--- a/lib/extensions/global_commands.py
+++ b/lib/extensions/global_commands.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from .layer_commands import LayerCommands
from ..commands import GLOBAL_COMMANDS
diff --git a/lib/extensions/import_threadlist.py b/lib/extensions/import_threadlist.py
index 029043c2..f7fe0bcc 100644
--- a/lib/extensions/import_threadlist.py
+++ b/lib/extensions/import_threadlist.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import os
import re
import sys
diff --git a/lib/extensions/input.py b/lib/extensions/input.py
index c6dcb698..13788510 100644
--- a/lib/extensions/input.py
+++ b/lib/extensions/input.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import os
import inkex
diff --git a/lib/extensions/install.py b/lib/extensions/install.py
index 9756fb83..62cfde73 100644
--- a/lib/extensions/install.py
+++ b/lib/extensions/install.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from .base import InkstitchExtension
from ..api import APIServer
from ..gui import open_url
diff --git a/lib/extensions/layer_commands.py b/lib/extensions/layer_commands.py
index 89726510..2494e820 100644
--- a/lib/extensions/layer_commands.py
+++ b/lib/extensions/layer_commands.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import inkex
from lxml import etree
diff --git a/lib/extensions/lettering.py b/lib/extensions/lettering.py
index cddf1b11..c57348ac 100644
--- a/lib/extensions/lettering.py
+++ b/lib/extensions/lettering.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import json
import os
import sys
diff --git a/lib/extensions/lettering_custom_font_dir.py b/lib/extensions/lettering_custom_font_dir.py
index a8284d38..b73d23a6 100644
--- a/lib/extensions/lettering_custom_font_dir.py
+++ b/lib/extensions/lettering_custom_font_dir.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import json
import os
diff --git a/lib/extensions/lettering_generate_json.py b/lib/extensions/lettering_generate_json.py
index 446c4ce8..3822b0c2 100644
--- a/lib/extensions/lettering_generate_json.py
+++ b/lib/extensions/lettering_generate_json.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import json
import os
import sys
diff --git a/lib/extensions/lettering_remove_kerning.py b/lib/extensions/lettering_remove_kerning.py
index b58e4fb2..21a8eda3 100644
--- a/lib/extensions/lettering_remove_kerning.py
+++ b/lib/extensions/lettering_remove_kerning.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import os
from inkex import NSS
diff --git a/lib/extensions/object_commands.py b/lib/extensions/object_commands.py
index f1c2fb46..851d4a34 100644
--- a/lib/extensions/object_commands.py
+++ b/lib/extensions/object_commands.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import inkex
from ..commands import OBJECT_COMMANDS, add_commands
diff --git a/lib/extensions/output.py b/lib/extensions/output.py
index 52e9d3a9..e621f1b6 100644
--- a/lib/extensions/output.py
+++ b/lib/extensions/output.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import os
import sys
import tempfile
diff --git a/lib/extensions/params.py b/lib/extensions/params.py
index acd96d5b..10cc6e3c 100644
--- a/lib/extensions/params.py
+++ b/lib/extensions/params.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
# -*- coding: UTF-8 -*-
import os
diff --git a/lib/extensions/print_pdf.py b/lib/extensions/print_pdf.py
index 1218b5e9..a75c781e 100644
--- a/lib/extensions/print_pdf.py
+++ b/lib/extensions/print_pdf.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import errno
import json
import logging
diff --git a/lib/extensions/remove_embroidery_settings.py b/lib/extensions/remove_embroidery_settings.py
index 6ccdb703..55c29e77 100644
--- a/lib/extensions/remove_embroidery_settings.py
+++ b/lib/extensions/remove_embroidery_settings.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from inkex import NSS, Boolean
from ..commands import find_commands
diff --git a/lib/extensions/reorder.py b/lib/extensions/reorder.py
index 4db02760..8a2a1b2e 100644
--- a/lib/extensions/reorder.py
+++ b/lib/extensions/reorder.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import inkex
from .base import InkstitchExtension
diff --git a/lib/extensions/simulator.py b/lib/extensions/simulator.py
index 66be752b..c04e1acd 100644
--- a/lib/extensions/simulator.py
+++ b/lib/extensions/simulator.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from ..api import APIServer
from ..gui import open_url
diff --git a/lib/extensions/stitch_plan_preview.py b/lib/extensions/stitch_plan_preview.py
index e1c398b5..40ad6a2a 100644
--- a/lib/extensions/stitch_plan_preview.py
+++ b/lib/extensions/stitch_plan_preview.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from ..stitch_plan import patches_to_stitch_plan
from ..svg import render_stitch_plan
from .base import InkstitchExtension
diff --git a/lib/extensions/troubleshoot.py b/lib/extensions/troubleshoot.py
index bd352d8f..113a9383 100644
--- a/lib/extensions/troubleshoot.py
+++ b/lib/extensions/troubleshoot.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import textwrap
from inkex import errormsg
diff --git a/lib/extensions/zip.py b/lib/extensions/zip.py
index eacf2260..605b4573 100644
--- a/lib/extensions/zip.py
+++ b/lib/extensions/zip.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import os
import sys
import tempfile