svgui/pyjs/jsonrpc/web2py/jsonrpc.py
author |
Andrey Skvortsov <andrej.skvortzov@gmail.com> |
|
Fri, 25 Aug 2017 11:22:08 +0300 |
changeset 1789 |
492e2cd6157e |
parent 1748 |
ba5f64fe0e00
|
child 1869 |
49cdd843c006 |
permissions |
-rw-r--r-- |
fix problem when Beremiz is running without matiec installed
set matiec settings only once on first use of ProjectController class and give
user-friendly message on compilation about missing matiec
installation.
Traceback (most recent call last):
File "Beremiz.py", line 197, in <module>
beremiz.Start()
File "Beremiz.py", line 192, in Start
self.CreateApplication()
File "Beremiz.py", line 130, in CreateApplication
self.BackgroundInitialization()
File "Beremiz.py", line 137, in BackgroundInitialization
self.ImportModules()
File "Beremiz.py", line 176, in ImportModules
import BeremizIDE
File
"BeremizIDE.py", line 76, in <module>
from ProjectController import ProjectController, GetAddMenuItems,
MATIEC_ERROR_MODEL, ITEM_CONFNODE
File
"ProjectController.py", line 177, in <module>
iec2c_cfg = Iec2CSettings()
File
"ProjectController.py", line 101, in __init__
self.ieclib_c_path = self.findLibCPath()
File
"ProjectController.py", line 135, in findLibCPath
os.path.join(self.ieclib_path, "C"),
File "/usr/lib/python2.7/posixpath.py", line 70, in join
elif path == '' or path.endswith('/'):
AttributeError: 'NoneType' object has no attribute 'endswith'
371
|
1 |
from pyjs.jsonrpc import JSONRPCServiceBase
|
|
2 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
diff
changeset
|
3 |
|
371
|
4 |
class JSONRPCService(JSONRPCServiceBase):
|
|
5 |
|
|
6 |
def serve(self):
|
|
7 |
return self.process(request.body.read())
|
|
8 |
|
1740
b789b695b5c6
clean-up: fix PEP8 E231 missing whitespace after ':' or ','
Andrey Skvortsov <andrej.skvortzov@gmail.com>
diff
changeset
|
9 |
def __call__(self, func):
|
1742
92932cd370a4
clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
diff
changeset
|
10 |
self.methods[func.__name__] = func
|
371
|
11 |
return func
|