From 3b3f890c1256bd7da89da33cc2547d7e8123979c Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 11 Mar 2021 23:17:19 -0500 Subject: add copyright headers --- lib/elements/__init__.py | 5 +++++ lib/elements/auto_fill.py | 5 +++++ lib/elements/clone.py | 5 +++++ lib/elements/element.py | 5 +++++ lib/elements/empty_d_object.py | 5 +++++ lib/elements/fill.py | 5 +++++ lib/elements/image.py | 5 +++++ lib/elements/polyline.py | 5 +++++ lib/elements/satin_column.py | 5 +++++ lib/elements/stroke.py | 5 +++++ lib/elements/text.py | 5 +++++ lib/elements/utils.py | 5 +++++ lib/elements/validation.py | 5 +++++ 13 files changed, 65 insertions(+) (limited to 'lib/elements') diff --git a/lib/elements/__init__.py b/lib/elements/__init__.py index d53b2314..2e4c31a7 100644 --- a/lib/elements/__init__.py +++ b/lib/elements/__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 .auto_fill import AutoFill from .clone import Clone from .element import EmbroideryElement diff --git a/lib/elements/auto_fill.py b/lib/elements/auto_fill.py index 31da7e63..69533f62 100644 --- a/lib/elements/auto_fill.py +++ b/lib/elements/auto_fill.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 import traceback diff --git a/lib/elements/clone.py b/lib/elements/clone.py index fd770bd7..6dafa63d 100644 --- a/lib/elements/clone.py +++ b/lib/elements/clone.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 math import atan, degrees import inkex diff --git a/lib/elements/element.py b/lib/elements/element.py index 2ced143b..b45604d2 100644 --- a/lib/elements/element.py +++ b/lib/elements/element.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 from copy import deepcopy diff --git a/lib/elements/empty_d_object.py b/lib/elements/empty_d_object.py index 69a128ad..dbb43bc4 100644 --- a/lib/elements/empty_d_object.py +++ b/lib/elements/empty_d_object.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 ..i18n import _ from .element import EmbroideryElement from .validation import ObjectTypeWarning diff --git a/lib/elements/fill.py b/lib/elements/fill.py index 1f4c7b1e..b6799165 100644 --- a/lib/elements/fill.py +++ b/lib/elements/fill.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 import math import re diff --git a/lib/elements/image.py b/lib/elements/image.py index 160898a5..0828b5ef 100644 --- a/lib/elements/image.py +++ b/lib/elements/image.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 ..i18n import _ from ..svg.path import get_node_transform from .element import EmbroideryElement diff --git a/lib/elements/polyline.py b/lib/elements/polyline.py index da1e807d..5ea00508 100644 --- a/lib/elements/polyline.py +++ b/lib/elements/polyline.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 Path from shapely import geometry as shgeo diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py index fbadd92f..72b7ed0f 100644 --- a/lib/elements/satin_column.py +++ b/lib/elements/satin_column.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 copy import deepcopy from itertools import chain diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py index d63a21a9..e3cd4390 100644 --- a/lib/elements/stroke.py +++ b/lib/elements/stroke.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 shapely.geometry diff --git a/lib/elements/text.py b/lib/elements/text.py index 838be96a..dbf76c85 100644 --- a/lib/elements/text.py +++ b/lib/elements/text.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 ..i18n import _ from .element import EmbroideryElement from .validation import ObjectTypeWarning diff --git a/lib/elements/utils.py b/lib/elements/utils.py index 378cec0c..aceab485 100644 --- a/lib/elements/utils.py +++ b/lib/elements/utils.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 ..commands import is_command from ..svg.tags import (EMBROIDERABLE_TAGS, SVG_IMAGE_TAG, SVG_PATH_TAG, SVG_POLYLINE_TAG, SVG_TEXT_TAG) diff --git a/lib/elements/validation.py b/lib/elements/validation.py index f77e2fc4..c14b634c 100644 --- a/lib/elements/validation.py +++ b/lib/elements/validation.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 shapely.geometry import Point as ShapelyPoint from ..utils import Point as InkstitchPoint -- cgit v1.2.3