xmlclass/xmlclass.py
Fri, 22 Mar 2019 13:45:19 +0100 Edouard Tisserant Make spaghetti-code-quality great again.
Fri, 12 Oct 2018 12:06:45 +0300 Andrey Skvortsov python3 support: pylint,W1610 # (reduce-builtin) reduce built-in referenced
Thu, 11 Oct 2018 12:00:40 +0300 Andrey Skvortsov python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Tue, 09 Oct 2018 11:56:45 +0300 Andrey Skvortsov Fix pep8 warning: W605 invalid escape sequence ?x?
Thu, 04 Oct 2018 17:24:40 +0300 Andrey Skvortsov python3 support: pylint, W1612 # (unicode-builtin) unicode built-in referenced
Thu, 04 Oct 2018 12:07:16 +0300 Andrey Skvortsov python3 support: pylint, W1613 # (xrange-builtin) xrange built-in referenced
Thu, 04 Oct 2018 11:25:42 +0300 Andrey Skvortsov python3 support: pylint, W1648 # (bad-python3-import) Module moved in Python 3
Tue, 25 Sep 2018 19:00:03 +0300 Andrey Skvortsov Don't need to call extra _init_
Fri, 24 Aug 2018 13:41:43 +0300 Andrey Skvortsov Proper fix for error 'object has no attribute 'getSlave' in EtherCAT extension
Fri, 10 Aug 2018 17:45:33 +0300 Andrey Skvortsov Dirty fix for error '_object_has_no_attribute_'getSlave' in EtherCAT extension
Mon, 19 Feb 2018 19:10:07 +0300 Surkov Sergey make the URI model compatible with https
Wed, 25 Oct 2017 13:50:26 +0300 Andrey Skvortsov fix pylint py3k conversion warning: "(no-absolute-import) import missing `from __future__ import absolute_import`"
Thu, 19 Oct 2017 11:03:03 +0300 Andrey Skvortsov fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Mon, 16 Oct 2017 17:20:31 +0300 Andrey Skvortsov fix pylint error "(undefined-variable) Undefined variable 'X'"
Tue, 10 Oct 2017 13:43:55 +0300 Andrey Skvortsov fix format string argument error found by pylint '(too-many-format-args) Too many arguments for format string'
Mon, 09 Oct 2017 16:04:39 +0300 Andrey Skvortsov fix pylint warning '(dangerous-default-value) Dangerous default value {} as argument'
Fri, 06 Oct 2017 17:52:34 +0300 Andrey Skvortsov fix pylint warning '(unused-import), Unused import connectors'
Thu, 05 Oct 2017 16:38:49 +0300 Andrey Skvortsov explicitly mark unused variables found by pylint with _ or dummy
Tue, 03 Oct 2017 16:31:31 +0300 Andrey Skvortsov remove unused variables found by pylint
Fri, 29 Sep 2017 16:26:15 +0300 Andrey Skvortsov fix pylint warning '(pointless-string-statement) String statement has no effect'
Thu, 28 Sep 2017 15:17:57 +0300 Andrey Skvortsov fix wrong-import-order. first standard modules are imported, then others
Thu, 28 Sep 2017 12:20:40 +0300 Andrey Skvortsov fix (old-style-class) Old-style class defined error for most parts of
Fri, 22 Sep 2017 10:54:42 +0300 Andrey Skvortsov fix usage of python2-only print statement
Mon, 21 Aug 2017 21:55:18 +0300 Andrey Skvortsov clean-up: fix PEP8 E265 block comment should start with '# '
Sat, 19 Aug 2017 18:12:20 +0300 Andrey Skvortsov clean-up: fix PEP8 E722 do not use bare except'
Sat, 19 Aug 2017 17:04:31 +0300 Andrey Skvortsov clean-up: fix PEP8 E131 continuation line unaligned for hanging indent
Sat, 19 Aug 2017 16:30:15 +0300 Andrey Skvortsov clean-up: fix PEP8 E713 test for membership should be 'not in'
Sat, 19 Aug 2017 01:11:27 +0300 Andrey Skvortsov clean-up: fix PEP8 E272 multiple spaces before keyword
Sat, 19 Aug 2017 00:58:44 +0300 Andrey Skvortsov clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Fri, 18 Aug 2017 20:14:38 +0300 Andrey Skvortsov clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Fri, 18 Aug 2017 12:36:31 +0300 Andrey Skvortsov clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Thu, 17 Aug 2017 16:26:32 +0300 Andrey Skvortsov clean-up: fix PEP8 W602 deprecated form of raising exception
Thu, 17 Aug 2017 15:43:25 +0300 Andrey Skvortsov clean-up: fix PEP8 E502 the backslash is redundant between brackets
Thu, 17 Aug 2017 14:27:06 +0300 Andrey Skvortsov clean-up: fix PEP8 W601 .has_key() is deprecated, use 'in'
Thu, 17 Aug 2017 10:04:24 +0300 Andrey Skvortsov clean-up: fix PEP8 E712 comparison to True should be 'if cond is True:' or 'if cond:'
Thu, 17 Aug 2017 09:55:39 +0300 Andrey Skvortsov clean-up: fix PEP8 E222 multiple spaces after operator
Wed, 16 Aug 2017 12:53:23 +0300 Andrey Skvortsov clean-up: fix PEP8 E306 expected 1 blank line before a nested definition, found X
Wed, 16 Aug 2017 12:48:08 +0300 Andrey Skvortsov clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Tue, 15 Aug 2017 22:38:43 +0300 Andrey Skvortsov clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Tue, 15 Aug 2017 17:01:51 +0300 Andrey Skvortsov clean-up: fix PEP8 E711 comparison to None should be 'if cond is not None:'
Tue, 15 Aug 2017 12:17:51 +0300 Andrey Skvortsov clean-up: fix PEP8 E203 whitespace before ':' and whitespace before ','
Mon, 14 Aug 2017 23:27:15 +0300 Andrey Skvortsov clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Mon, 14 Aug 2017 22:23:17 +0300 Andrey Skvortsov clean-up: fix some PEP8 E228 missing whitespace around modulo operator
Mon, 14 Aug 2017 21:20:32 +0300 Andrey Skvortsov clean-up: fix PEP8 E401 multiple imports on one line
Mon, 14 Aug 2017 19:13:01 +0300 Andrey Skvortsov clean-up for PEP8: fix W291 trailing whitespace
Fri, 18 Nov 2016 13:57:42 +0300 Andrey Skvortsov fix license notices in source files and license files under GPLv2+
Tue, 08 Nov 2016 18:06:30 +0300 Andrey Skvortsov fix breaking non-latin description and comments in FBD, LD, SFC and
Wed, 27 Apr 2016 18:42:30 +0300 Andrey Skvortsov fix copying elements with non-latin content like comment element, or
Wed, 02 Apr 2014 21:07:35 +0200 Edouard Tisserant xmlclass : Ensured precedence of newly defined class in case of conflicting declaration
Sun, 19 Jan 2014 22:38:52 +0100 Edouard Tisserant Fixed xmlclass bug when enabling/disabling libraries in root CTN
Fri, 27 Sep 2013 16:22:40 +0200 Laurent Bessard Added support for loading XML file even if not following XSD schema (but still following XML syntax), warning user of errors in XML file
Tue, 24 Sep 2013 00:44:06 +0200 Laurent Bessard Fixed xmlclass for working with included files, adding support for SimpleType elements and solving ambiguity in extension class when different elements share the same name and parent name
Wed, 11 Sep 2013 23:48:41 +0200 Laurent Bessard Fixed Beremiz for working with new xmlclass support using lxml
Thu, 05 Sep 2013 10:36:33 +0200 Laurent Bessard Fixed xmlclass and plcopen using precompile xpath where possible
Tue, 03 Sep 2013 23:39:22 +0200 Laurent Bessard Fixed undo/redo with xmlclass refactoring
Tue, 03 Sep 2013 23:36:10 +0200 Laurent Bessard Removed obsolete functions for extracting values for xml dom tree and generating xml string
Mon, 02 Sep 2013 09:41:15 +0200 Laurent Bessard Removed namespaces declaration in subtree elements xml description when copy/paste
Thu, 29 Aug 2013 19:18:41 +0200 Laurent Bessard Fixed datatype and configuration editing in xmlclass refactoring
Thu, 29 Aug 2013 00:28:39 +0200 Laurent Bessard Fixed diagram editing in xmlclass refactoring
Wed, 28 Aug 2013 11:52:46 +0200 Laurent Bessard Second stage of xmlclass refactoring using lxml , project are loaded and displayed successfully