matlab-proxy 0.20.0__py3-none-any.whl → 0.22.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of matlab-proxy might be problematic. Click here for more details.
- matlab_proxy/app.py +1 -1
- matlab_proxy/constants.py +1 -0
- matlab_proxy/gui/asset-manifest.json +6 -6
- matlab_proxy/gui/index.html +1 -1
- matlab_proxy/gui/static/css/main.6cd0caba.css +13 -0
- matlab_proxy/gui/static/css/main.6cd0caba.css.map +1 -0
- matlab_proxy/gui/static/js/main.77e6cbaf.js +3 -0
- matlab_proxy/gui/static/js/{main.9c68c75c.js.LICENSE.txt → main.77e6cbaf.js.LICENSE.txt} +0 -2
- matlab_proxy/gui/static/js/main.77e6cbaf.js.map +1 -0
- matlab_proxy/settings.py +1 -1
- {matlab_proxy-0.20.0.dist-info → matlab_proxy-0.22.0.dist-info}/METADATA +2 -1
- {matlab_proxy-0.20.0.dist-info → matlab_proxy-0.22.0.dist-info}/RECORD +34 -17
- {matlab_proxy-0.20.0.dist-info → matlab_proxy-0.22.0.dist-info}/entry_points.txt +1 -0
- matlab_proxy-0.22.0.dist-info/top_level.txt +3 -0
- matlab_proxy_manager/__init__.py +6 -0
- matlab_proxy_manager/lib/__init__.py +1 -0
- matlab_proxy_manager/lib/api.py +295 -0
- matlab_proxy_manager/storage/__init__.py +1 -0
- matlab_proxy_manager/storage/file_repository.py +144 -0
- matlab_proxy_manager/storage/interface.py +62 -0
- matlab_proxy_manager/storage/server.py +144 -0
- matlab_proxy_manager/utils/__init__.py +1 -0
- matlab_proxy_manager/utils/auth.py +77 -0
- matlab_proxy_manager/utils/constants.py +5 -0
- matlab_proxy_manager/utils/environment_variables.py +46 -0
- matlab_proxy_manager/utils/helpers.py +286 -0
- matlab_proxy_manager/utils/logger.py +73 -0
- matlab_proxy_manager/web/__init__.py +1 -0
- matlab_proxy_manager/web/app.py +447 -0
- matlab_proxy_manager/web/monitor.py +45 -0
- matlab_proxy_manager/web/watcher.py +54 -0
- tests/unit/test_app.py +1 -1
- matlab_proxy/gui/static/css/main.da9c4eb8.css +0 -13
- matlab_proxy/gui/static/css/main.da9c4eb8.css.map +0 -1
- matlab_proxy/gui/static/js/main.9c68c75c.js +0 -3
- matlab_proxy/gui/static/js/main.9c68c75c.js.map +0 -1
- matlab_proxy-0.20.0.dist-info/top_level.txt +0 -2
- {matlab_proxy-0.20.0.dist-info → matlab_proxy-0.22.0.dist-info}/LICENSE.md +0 -0
- {matlab_proxy-0.20.0.dist-info → matlab_proxy-0.22.0.dist-info}/WHEEL +0 -0
matlab_proxy/app.py
CHANGED
|
@@ -429,7 +429,7 @@ async def shutdown_integration_delete(req):
|
|
|
429
429
|
"""
|
|
430
430
|
state = req.app["state"]
|
|
431
431
|
|
|
432
|
-
logger.info(f"
|
|
432
|
+
logger.info(f"Shutting down {state.settings['integration_name']}...")
|
|
433
433
|
|
|
434
434
|
# Send response manually because this has to happen before the application exits
|
|
435
435
|
res = create_status_response(req.app, "../")
|
matlab_proxy/constants.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
|
-
"main.css": "./static/css/main.
|
|
4
|
-
"main.js": "./static/js/main.
|
|
3
|
+
"main.css": "./static/css/main.6cd0caba.css",
|
|
4
|
+
"main.js": "./static/js/main.77e6cbaf.js",
|
|
5
5
|
"static/media/mathworks-pictograms.svg?20181009": "./static/media/mathworks-pictograms.f6f087b008b5a9435f26.svg",
|
|
6
6
|
"static/media/MATLAB-env-blur.png": "./static/media/MATLAB-env-blur.4fc94edbc82d3184e5cb.png",
|
|
7
7
|
"static/media/mathworks.svg?20181004": "./static/media/mathworks.80a3218e1ba29f0573fb.svg",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"index.html": "./index.html",
|
|
35
35
|
"static/media/gripper.svg": "./static/media/gripper.9defbc5e76d0de8bb6e0.svg",
|
|
36
36
|
"static/media/arrow.svg": "./static/media/arrow.0c2968b90bd9a64c8c3f.svg",
|
|
37
|
-
"main.
|
|
38
|
-
"main.
|
|
37
|
+
"main.6cd0caba.css.map": "./static/css/main.6cd0caba.css.map",
|
|
38
|
+
"main.77e6cbaf.js.map": "./static/js/main.77e6cbaf.js.map"
|
|
39
39
|
},
|
|
40
40
|
"entrypoints": [
|
|
41
|
-
"static/css/main.
|
|
42
|
-
"static/js/main.
|
|
41
|
+
"static/css/main.6cd0caba.css",
|
|
42
|
+
"static/js/main.77e6cbaf.js"
|
|
43
43
|
]
|
|
44
44
|
}
|
matlab_proxy/gui/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="MATLAB"/><meta name="internal_mw_identifier" content="MWI_MATLAB_PROXY_IDENTIFIER"/><link rel="manifest" href="./manifest.json"/><title>MATLAB</title><script defer="defer" src="./static/js/main.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="MATLAB"/><meta name="internal_mw_identifier" content="MWI_MATLAB_PROXY_IDENTIFIER"/><link rel="manifest" href="./manifest.json"/><title>MATLAB</title><script defer="defer" src="./static/js/main.77e6cbaf.js"></script><link href="./static/css/main.6cd0caba.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|