Beremiz_service.py
Tue, 20 Feb 2018 14:46:12 +0100 Edouard Tisserant Attempt to make BitBuket's version of pep8 and pylint happy.
Tue, 20 Feb 2018 14:16:51 +0100 Edouard Tisserant PEP8 and PyLint conformance: whitespaces and stuff
Wed, 14 Feb 2018 15:39:27 +0100 Edouard Tisserant Changed meaning of -c commandline argument for Beremiz service : only gives DEFAULT wamp config.
Mon, 12 Feb 2018 13:18:53 +0100 Edouard Tisserant Fixed pyro timeout for runtime, was set too short and runtime was disconnecting when building PLC
Thu, 01 Feb 2018 14:51:18 +0100 Edouard Tisserant Another set of meaningless changes to satisfy PEP8 and PyLint.
Wed, 31 Jan 2018 15:20:42 +0100 Edouard Tisserant Small pep8 conformity enforcement.
Wed, 24 Jan 2018 16:12:49 +0100 Edouard Tisserant fixed erro introduced 2 commits ago (-e) : tuples have no reverse() method
Wed, 24 Jan 2018 15:44:36 +0100 Edouard Tisserant Trying to get better logging/display of exceptions at runtime's startup
Wed, 24 Jan 2018 14:48:49 +0100 Edouard Tisserant Changed way to deal with extensions arguments (-e) so that path and filename are stored independently and accessible for extensions themselves.
Thu, 11 Jan 2018 15:41:20 +0100 Edouard Tisserant Enforced check_source.sh pep8 and pylint rules.
Thu, 11 Jan 2018 15:39:58 +0100 Edouard Tisserant runtime/WAMP: Fixed secret loading into configuration. Fixed secret commandline switch handling.
Wed, 10 Jan 2018 13:21:42 +0100 Edouard Tisserant Fixed changes from dporopat and agregorcic about WAMP CRA and config.
Tue, 09 Jan 2018 15:08:08 +0100 Edouard Tisserant WAMP runtime : changes from dporopat and agregorcic, adding CRA (-s) and changed way to load WAMP conf (-c)
Tue, 09 Jan 2018 14:38:45 +0100 Edouard Tisserant whitespace cosmetic for pep8
Mon, 08 Jan 2018 11:09:02 +0100 Edouard Tisserant Added arbitrary timeout on Pyro, to force it to free memory after disconnect.
Fri, 05 Jan 2018 15:39:02 +0100 Edouard Tisserant Moved code from to Beremiz_service.py Server class Start method to Loop method to allow customisation by hot patching. Also renamed Stop method as _stop and use Restart instead of Stop from everywhere else to make it clear that _stop actually does restart...
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`"
Mon, 16 Oct 2017 17:20:31 +0300 Andrey Skvortsov fix pylint error "(undefined-variable) Undefined variable 'X'"
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
Mon, 02 Oct 2017 13:19:06 +0300 Andrey Skvortsov fix pylint warning '(global-variable-not-assigned) Using global for 'X' but no assignment is done'
Thu, 28 Sep 2017 17:20:31 +0300 Andrey Skvortsov fix ungrouped imports from package X
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 18:06:15 +0300 Andrey Skvortsov remove reimported modules
Fri, 22 Sep 2017 16:37:38 +0300 Andrey Skvortsov fix unnecessary parens after keyword
Fri, 22 Sep 2017 10:54:42 +0300 Andrey Skvortsov fix usage of python2-only print statement
Fri, 25 Aug 2017 12:01:23 +0300 Andrey Skvortsov don't check any particular wx version
Mon, 21 Aug 2017 22:41:37 +0300 Andrey Skvortsov clean-up: fix PEP8 E402 module level import not at top of file
Sat, 19 Aug 2017 18:12:20 +0300 Andrey Skvortsov clean-up: fix PEP8 E722 do not use bare except'
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 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
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
Wed, 16 Aug 2017 12:21:05 +0300 Andrey Skvortsov clean-up: fix PEP8 E201 whitespace after '{'
Wed, 16 Aug 2017 12:03:46 +0300 Andrey Skvortsov clean-up: fix PEP8 E202 whitespace before ')'
Wed, 16 Aug 2017 11:47:27 +0300 Andrey Skvortsov clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
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 16:48:49 +0300 Andrey Skvortsov clean-up: fix PEP8 E225 missing whitespace around operator
Tue, 15 Aug 2017 16:01:18 +0300 Andrey Skvortsov clean-up: fix PEP8 E303 too many blank lines
Tue, 15 Aug 2017 15:50:30 +0300 Andrey Skvortsov clean-up: fix PEP8 E231 missing whitespace after ':' or ','
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:38:28 +0300 Andrey Skvortsov clean-up: fix PEP8 E271 multiple spaces after keyword
Mon, 14 Aug 2017 23:34:22 +0300 Andrey Skvortsov clean-up: fix PEP8 E261 at least two spaces before inline comment
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
Thu, 20 Apr 2017 13:01:45 +0300 Andrey Skvortsov make run Beremiz and PLCOpen Editor, if full path contain non-lating
Wed, 07 Dec 2016 19:28:13 +0300 Andrey Skvortsov update PLC status after initialization
Wed, 07 Dec 2016 19:25:58 +0300 Andrey Skvortsov always load existing PLC program from the working directory
Wed, 07 Dec 2016 19:24:16 +0300 Andrey Skvortsov stop PLC before unloading
Wed, 07 Dec 2016 18:32:34 +0300 Andrey Skvortsov add internatialization support for Beremiz_service.py
Wed, 07 Dec 2016 18:25:37 +0300 Andrey Skvortsov fix issue with changing annonced Pyro service name via taskbar icon
Wed, 07 Dec 2016 18:23:59 +0300 Andrey Skvortsov don't crash on trying to change IP interface for Beremiz_service using taskbar icon if IP wasn't previously
Wed, 07 Dec 2016 18:15:04 +0300 Andrey Skvortsov start/stop from taskbar icon only if PLC is stopped/started
Wed, 07 Dec 2016 17:54:41 +0300 Andrey Skvortsov close Pyro socket after daemon stop
Wed, 07 Dec 2016 17:51:20 +0300 Andrey Skvortsov add python-wxgtk3.0 support to Beremiz_service.py
Fri, 18 Nov 2016 13:57:42 +0300 Andrey Skvortsov fix license notices in source files and license files under GPLv2+
Sat, 14 Mar 2015 11:32:23 +0100 Edouard Tisserant Fixed leftover typo