add copyright headers

pull/1083/head
Lex Neva 2021-03-11 23:17:19 -05:00
rodzic 3dd767917d
commit 3b3f890c12
102 zmienionych plików z 510 dodań i 0 usunięć

Wyświetl plik

@ -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 logging
import os import os
import sys import sys

Wyświetl plik

@ -1 +1,6 @@
# 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 .server import APIServer from .server import APIServer

Wyświetl plik

@ -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 os
import sys import sys
from glob import glob from glob import glob

Wyświetl plik

@ -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 errno
import logging import logging
import socket import socket

Wyświetl plik

@ -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 flask import Blueprint from flask import Blueprint
simulator = Blueprint('simulator', __name__) simulator = Blueprint('simulator', __name__)

Wyświetl plik

@ -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 flask import Blueprint, g, jsonify from flask import Blueprint, g, jsonify
from ..stitch_plan import patches_to_stitch_plan from ..stitch_plan import patches_to_stitch_plan

Wyświetl plik

@ -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 os
import sys import sys
from copy import deepcopy from copy import deepcopy

Wyświetl plik

@ -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 atexit import atexit
import os import os
import socket import socket

Wyświetl plik

@ -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 .auto_fill import AutoFill
from .clone import Clone from .clone import Clone
from .element import EmbroideryElement from .element import EmbroideryElement

Wyświetl plik

@ -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 math
import sys import sys
import traceback import traceback

Wyświetl plik

@ -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 from math import atan, degrees
import inkex import inkex

Wyświetl plik

@ -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 sys
from copy import deepcopy from copy import deepcopy

Wyświetl plik

@ -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 ..i18n import _
from .element import EmbroideryElement from .element import EmbroideryElement
from .validation import ObjectTypeWarning from .validation import ObjectTypeWarning

Wyświetl plik

@ -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 logging
import math import math
import re import re

Wyświetl plik

@ -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 ..i18n import _
from ..svg.path import get_node_transform from ..svg.path import get_node_transform
from .element import EmbroideryElement from .element import EmbroideryElement

Wyświetl plik

@ -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 inkex import Path
from shapely import geometry as shgeo from shapely import geometry as shgeo

Wyświetl plik

@ -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 copy import deepcopy
from itertools import chain from itertools import chain

Wyświetl plik

@ -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 sys
import shapely.geometry import shapely.geometry

Wyświetl plik

@ -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 ..i18n import _
from .element import EmbroideryElement from .element import EmbroideryElement
from .validation import ObjectTypeWarning from .validation import ObjectTypeWarning

Wyświetl plik

@ -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 ..commands import is_command
from ..svg.tags import (EMBROIDERABLE_TAGS, SVG_IMAGE_TAG, SVG_PATH_TAG, from ..svg.tags import (EMBROIDERABLE_TAGS, SVG_IMAGE_TAG, SVG_PATH_TAG,
SVG_POLYLINE_TAG, SVG_TEXT_TAG) SVG_POLYLINE_TAG, SVG_TEXT_TAG)

Wyświetl plik

@ -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 shapely.geometry import Point as ShapelyPoint
from ..utils import Point as InkstitchPoint from ..utils import Point as InkstitchPoint

Wyświetl plik

@ -1,2 +1,7 @@
# Authors: see git history
#
# Copyright (c) 2010 Authors
# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
class InkstitchException(Exception): class InkstitchException(Exception):
pass pass

Wyświetl plik

@ -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 lib.extensions.troubleshoot import Troubleshoot
from .auto_satin import AutoSatin from .auto_satin import AutoSatin

Wyświetl plik

@ -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 sys
import inkex import inkex

Wyświetl plik

@ -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 json
import os import os
import re import re

Wyświetl plik

@ -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 logging
from copy import copy from copy import copy

Wyświetl plik

@ -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 inkex import NSS, Boolean, errormsg
from ..elements import Fill, Stroke from ..elements import Fill, Stroke

Wyświetl plik

@ -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 inkex import Boolean
from .base import InkstitchExtension from .base import InkstitchExtension

Wyświetl plik

@ -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 math
import sys import sys
from itertools import chain, groupby from itertools import chain, groupby

Wyświetl plik

@ -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 import inkex
from ..elements import SatinColumn from ..elements import SatinColumn

Wyświetl plik

@ -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 .base import InkstitchExtension

Wyświetl plik

@ -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 import inkex
from ..elements import SatinColumn from ..elements import SatinColumn

Wyświetl plik

@ -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 .layer_commands import LayerCommands
from ..commands import GLOBAL_COMMANDS from ..commands import GLOBAL_COMMANDS

Wyświetl plik

@ -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 os
import re import re
import sys import sys

Wyświetl plik

@ -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 os
import inkex import inkex

Wyświetl plik

@ -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 .base import InkstitchExtension
from ..api import APIServer from ..api import APIServer
from ..gui import open_url from ..gui import open_url

Wyświetl plik

@ -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 import inkex
from lxml import etree from lxml import etree

Wyświetl plik

@ -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 json
import os import os
import sys import sys

Wyświetl plik

@ -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 json
import os import os

Wyświetl plik

@ -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 json
import os import os
import sys import sys

Wyświetl plik

@ -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 os
from inkex import NSS from inkex import NSS

Wyświetl plik

@ -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 import inkex
from ..commands import OBJECT_COMMANDS, add_commands from ..commands import OBJECT_COMMANDS, add_commands

Wyświetl plik

@ -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 os
import sys import sys
import tempfile import tempfile

Wyświetl plik

@ -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 -*- # -*- coding: UTF-8 -*-
import os import os

Wyświetl plik

@ -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 errno
import json import json
import logging import logging

Wyświetl plik

@ -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 inkex import NSS, Boolean
from ..commands import find_commands from ..commands import find_commands

Wyświetl plik

@ -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 import inkex
from .base import InkstitchExtension from .base import InkstitchExtension

Wyświetl plik

@ -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 ..api import APIServer
from ..gui import open_url from ..gui import open_url

Wyświetl plik

@ -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 ..stitch_plan import patches_to_stitch_plan
from ..svg import render_stitch_plan from ..svg import render_stitch_plan
from .base import InkstitchExtension from .base import InkstitchExtension

Wyświetl plik

@ -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 import textwrap
from inkex import errormsg from inkex import errormsg

Wyświetl plik

@ -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 os
import sys import sys
import tempfile import tempfile

Wyświetl plik

@ -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 .dialogs import confirm_dialog, info_dialog from .dialogs import confirm_dialog, info_dialog
from .electron import open_url from .electron import open_url
from .presets import PresetsPanel from .presets import PresetsPanel

Wyświetl plik

@ -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 wx import wx

Wyświetl plik

@ -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 os
import subprocess import subprocess
import sys import sys

Wyświetl plik

@ -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 json
import os import os
import re import re

Wyświetl plik

@ -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 sys
import time import time
import traceback import traceback

Wyświetl plik

@ -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 gettext import gettext
import os import os
import sys import sys

Wyświetl plik

@ -1 +1,6 @@
# 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 .generate import generate_inx_files from .generate import generate_inx_files

Wyświetl plik

@ -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 .utils import build_environment, write_inx_file from .utils import build_environment, write_inx_file

Wyświetl plik

@ -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 pyembroidery import pyembroidery
from ..commands import (COMMANDS, GLOBAL_COMMANDS, LAYER_COMMANDS, from ..commands import (COMMANDS, GLOBAL_COMMANDS, LAYER_COMMANDS,

Wyświetl plik

@ -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 .info import generate_info_inx_files from .info import generate_info_inx_files
from .extensions import generate_extension_inx_files from .extensions import generate_extension_inx_files
from .inputs import generate_input_inx_files from .inputs import generate_input_inx_files

Wyświetl plik

@ -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 .utils import build_environment, write_inx_file from .utils import build_environment, write_inx_file

Wyświetl plik

@ -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 pyembroidery import pyembroidery
from .utils import build_environment, write_inx_file from .utils import build_environment, write_inx_file

Wyświetl plik

@ -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 pyembroidery import pyembroidery
from .utils import build_environment, write_inx_file from .utils import build_environment, write_inx_file

Wyświetl plik

@ -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 errno
import gettext import gettext
import os import os

Wyświetl plik

@ -1 +1,6 @@
# 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 .font import Font, FontError from .font import Font, FontError

Wyświetl plik

@ -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 json
import os import os
from copy import deepcopy from copy import deepcopy

Wyświetl plik

@ -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 os
import inkex import inkex

Wyświetl plik

@ -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 copy from copy import copy
from inkex import paths, transforms from inkex import paths, transforms

Wyświetl plik

@ -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 from inkex import NSS
from lxml import etree from lxml import etree

Wyświetl plik

@ -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 sys
import inkex import inkex

Wyświetl plik

@ -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, StitchPlan, ColorBlock from .stitch_plan import patches_to_stitch_plan, StitchPlan, ColorBlock
from .stitch import Stitch from .stitch import Stitch
from .read_file import stitch_plan_from_file from .read_file import stitch_plan_from_file

Wyświetl plik

@ -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 pyembroidery import pyembroidery
from .stitch_plan import StitchPlan from .stitch_plan import StitchPlan

Wyświetl plik

@ -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 ..utils.geometry import Point from ..utils.geometry import Point

Wyświetl plik

@ -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 ..svg import PIXELS_PER_MM from ..svg import PIXELS_PER_MM
from ..threads import ThreadColor from ..threads import ThreadColor
from ..utils.geometry import Point from ..utils.geometry import Point

Wyświetl plik

@ -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 copy import deepcopy
from .stitch import Stitch from .stitch import Stitch

Wyświetl plik

@ -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 auto_fill from .auto_fill import auto_fill
from .fill import legacy_fill from .fill import legacy_fill
from .running_stitch import * from .running_stitch import *

Wyświetl plik

@ -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 -*- # -*- coding: UTF-8 -*-
import math import math

Wyświetl plik

@ -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 math
from itertools import chain from itertools import chain

Wyświetl plik

@ -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 math
import shapely import shapely

Wyświetl plik

@ -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 copy from copy import copy
""" Utility functions to produce running stitches. """ """ Utility functions to produce running stitches. """

Wyświetl plik

@ -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 .guides import get_guides from .guides import get_guides
from .path import apply_transforms, get_node_transform, get_correction_transform, line_strings_to_csp, point_lists_to_csp, line_strings_to_path from .path import apply_transforms, get_node_transform, get_correction_transform, line_strings_to_csp, point_lists_to_csp, line_strings_to_path
from .path import apply_transforms, get_node_transform, get_correction_transform, line_strings_to_csp, point_lists_to_csp from .path import apply_transforms, get_node_transform, get_correction_transform, line_strings_to_csp, point_lists_to_csp

Wyświetl plik

@ -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 transforms from inkex import transforms
from ..utils import Point, cache, string_to_floats from ..utils import Point, cache, string_to_floats

Wyświetl plik

@ -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 import inkex
from lxml import etree from lxml import etree

Wyświetl plik

@ -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 math
import inkex import inkex

Wyświetl plik

@ -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 from inkex import NSS
from lxml import etree from lxml import etree

Wyświetl plik

@ -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 import inkex
from lxml import etree from lxml import etree

Wyświetl plik

@ -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 import inkex
from ..i18n import _ from ..i18n import _

Wyświetl plik

@ -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 .catalog import ThreadCatalog from .catalog import ThreadCatalog
from .color import ThreadColor from .color import ThreadColor
from .palette import ThreadPalette from .palette import ThreadPalette

Wyświetl plik

@ -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 os
import sys import sys
from collections.abc import Sequence from collections.abc import Sequence

Wyświetl plik

@ -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 colorsys import colorsys
import re import re

Wyświetl plik

@ -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 collections.abc import Set from collections.abc import Set
from colormath.color_conversions import convert_color from colormath.color_conversions import convert_color

Wyświetl plik

@ -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 .cache import cache from .cache import cache
from .dotdict import DotDict from .dotdict import DotDict
from .geometry import * from .geometry import *

Wyświetl plik

@ -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.
try: try:
from functools import lru_cache from functools import lru_cache
except ImportError: except ImportError:

Wyświetl plik

@ -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.
class DotDict(dict): class DotDict(dict):
"""A dict subclass that allows accessing methods using dot notation. """A dict subclass that allows accessing methods using dot notation.

Wyświetl plik

@ -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 math
from shapely.geometry import LineString from shapely.geometry import LineString

Wyświetl plik

@ -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 sys
from os.path import expanduser, realpath from os.path import expanduser, realpath

Wyświetl plik

@ -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 os
import sys import sys
from io import StringIO from io import StringIO

Wyświetl plik

@ -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 flask.json import JSONEncoder from flask.json import JSONEncoder

Wyświetl plik

@ -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 sys
import os import os
from os.path import dirname, realpath from os.path import dirname, realpath

Some files were not shown because too many files have changed in this diff Show More