PLCControler.py
Thu, 10 Jun 2021 09:40:05 +0200 Edouard Tisserant Copy description when DnD variables from CodeFile CTN to POUs
Sun, 14 Jul 2019 08:43:12 +0200 Edouard Tisserant Fixed code quality according to pep8 and pylint.
Thu, 13 Jun 2019 15:49:48 +0200 Edouard Tisserant 'Change POU Type To' becomes 'Duplicate as...', avoiding side effects of type change when POU is already instanciated. Also remove leftover returType tag in ex-function POUs, triggering exceptions at build time.
Fri, 22 Mar 2019 13:45:19 +0100 Edouard Tisserant Make spaghetti-code-quality great again.
Fri, 22 Mar 2019 11:09:41 +0100 Edouard Tisserant Finished adding search in python and C files. Stripped debug code and useless comments. Close branch search_in_CTN
Fri, 15 Mar 2019 14:11:49 +0100 Edouard Tisserant WIP adding searching capabilities in python files: search_in_CTN
Tue, 05 Mar 2019 11:43:20 +0300 Andrey Skvortsov Fix backtrace on printing localized (non-ascii) error message in PLCGenerator.
Fri, 12 Oct 2018 13:24:47 +0300 Andrey Skvortsov python3 support: pylint, W1633 # (round-builtin) round built-in referenced
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
Thu, 11 Oct 2018 09:41:15 +0300 Andrey Skvortsov python3 support: pylint, W1645 # (exception-message-attribute) Exception.message removed in Python 3
Tue, 09 Oct 2018 11:56:45 +0300 Andrey Skvortsov Fix pep8 warning: W605 invalid escape sequence ?x?
Fri, 05 Oct 2018 14:22:01 +0300 Andrey Skvortsov python3 support: pylint, W1619 #(old-division) division w/o __future__ statement
Tue, 02 Oct 2018 18:08:49 +0300 Andrey Skvortsov Use python 3 compatible exception syntax everywhere
Fri, 02 Mar 2018 17:01:25 +0100 Edouard Tisserant merged Sergeys changes
Wed, 31 Jan 2018 16:31:01 +0300 Surkov Sergey add fields autocomplete when adding task or instance in resources
Thu, 01 Mar 2018 09:41:12 +0100 Edouard Tisserant pep8 and pylint hate me
Fri, 23 Feb 2018 11:16:25 +0100 Edouard Tisserant GetEditedElementInstancesInfos now optimized as well. Forgotten because not using [R.I.P]LibraryResolver, but still XSLT compiling was hapenning on each call.
Tue, 20 Feb 2018 14:24:30 +0100 Edouard Tisserant Removed dead slow code
Tue, 20 Feb 2018 14:16:51 +0100 Edouard Tisserant PEP8 and PyLint conformance: whitespaces and stuff
Tue, 20 Feb 2018 11:24:10 +0100 Edouard Tisserant GetVariableDictionary and GetPouInterfaceReturnType optimized with new VariableInfoCollector based on XSLTModelQuery. Moved corresponding definitions out of PLCControler.py.
Mon, 19 Feb 2018 15:46:50 +0100 Edouard Tisserant GetPouInstanceTagName optimized with XSLTModelQuery.
Mon, 19 Feb 2018 15:14:30 +0100 Edouard Tisserant Moved some definitions away from controller class, and adaped references them through all code.
Sun, 18 Feb 2018 21:30:48 +0100 Edouard Tisserant Moved some code from PLCController.py to other modules. Added necessary imports.
Sat, 17 Feb 2018 23:58:47 +0100 Edouard Tisserant GetPouVariables optimized with XSLTModelQuery
Sat, 17 Feb 2018 16:42:56 +0100 Edouard Tisserant Added /plcopen/InstancesPathCollector.py, to move more model xslt querying code away from PLCController.py.
Fri, 16 Feb 2018 18:24:55 +0100 Edouard Tisserant Moved XSLTModelQuery class to own module in plcopen package.
Fri, 16 Feb 2018 13:00:06 +0100 Edouard Tisserant Added a class to speedup all XSLT queries. WIP, now only for instances_path.xslt / GetInstanceList()
Fri, 16 Feb 2018 02:29:10 +0100 Edouard Tisserant This should really help GetInstanceList to perform better: resolver removed, no more deepcopy, no more useless xml serialization, no more node-set() calls.
Fri, 16 Feb 2018 01:38:34 +0100 Edouard Tisserant Prevent compiling XSLT on each call of GetInstanceList. To be continued. More optimization needed here. 100x would be fine...
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 13:33:01 +0300 Andrey Skvortsov fix pylint error '(unsubscriptable-object) Value 'X' is unsubscriptable'
Thu, 19 Oct 2017 11:03:03 +0300 Andrey Skvortsov fix pylint warning '(bad-continuation) Wrong hanging indentation before block'
Tue, 17 Oct 2017 11:29:20 +0300 Andrey Skvortsov fix pylint warning '(redefine-in-handler) Redefining name 'X' from outer scope (line Y) in exception handler'
Mon, 16 Oct 2017 17:20:31 +0300 Andrey Skvortsov fix pylint error "(undefined-variable) Undefined variable 'X'"
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:48:42 +0300 Andrey Skvortsov fix pylint warning '(unreachable) Unreachable code'
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
Tue, 22 Aug 2017 12:45:06 +0300 Andrey Skvortsov clean-up: fix PEP8 W503 line break before binary operator
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:17:54 +0300 Andrey Skvortsov clean-up: fix PEP8 E115 expected an indented block (comment)
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 17:25:17 +0300 Andrey Skvortsov clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
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 11:39:10 +0300 Andrey Skvortsov clean-up: fix PEP8 E731 do not assign a lambda expression, use a def
Wed, 16 Aug 2017 13:49:02 +0300 Andrey Skvortsov clean-up: fix most PEP8 E266 too many leading '#' for block comment
Wed, 16 Aug 2017 12:57:52 +0300 Andrey Skvortsov clean-up: fix PEP8 E301 expected 1 blank line, found 0
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:'