matlab-proxy 0.23.4__tar.gz → 0.24.2__tar.gz
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-0.23.4/matlab_proxy.egg-info → matlab-proxy-0.24.2}/PKG-INFO +3 -3
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/README.md +2 -2
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/.eslintrc.json +10 -10
- matlab-proxy-0.24.2/gui/README.md +43 -0
- matlab-proxy-0.24.2/gui/eslint.config.js +57 -0
- matlab-proxy-0.24.2/gui/index.css +23 -0
- matlab-proxy-0.24.2/gui/index.html +20 -0
- matlab-proxy-0.24.2/gui/package-lock.json +9930 -0
- matlab-proxy-0.24.2/gui/package.json +54 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/actionCreators/actionCreators.spec.js +2 -2
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/actionCreators/index.js +11 -11
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/actions/index.js +1 -1
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/css/bootstrap.min.css +3 -2
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/css/site7.min.css +3 -1
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/App.css +1 -1
- matlab-proxy-0.23.4/gui/src/components/App/App.spec.js → matlab-proxy-0.24.2/gui/src/components/App/App.spec.jsx +26 -11
- matlab-proxy-0.23.4/gui/src/components/App/IdleBufferTimeouts.spec.js → matlab-proxy-0.24.2/gui/src/components/App/IdleBufferTimeouts.spec.jsx +12 -10
- matlab-proxy-0.23.4/gui/src/components/App/index.js → matlab-proxy-0.24.2/gui/src/components/App/index.jsx +17 -6
- matlab-proxy-0.23.4/gui/src/components/Confirmation/Confirmation.spec.js → matlab-proxy-0.24.2/gui/src/components/Confirmation/Confirmation.spec.jsx +20 -6
- matlab-proxy-0.23.4/gui/src/components/Confirmation/index.js → matlab-proxy-0.24.2/gui/src/components/Confirmation/index.jsx +1 -1
- matlab-proxy-0.23.4/gui/src/components/Controls/Controls.spec.js → matlab-proxy-0.24.2/gui/src/components/Controls/Controls.spec.jsx +15 -4
- matlab-proxy-0.23.4/gui/src/components/Controls/index.js → matlab-proxy-0.24.2/gui/src/components/Controls/index.jsx +38 -24
- matlab-proxy-0.23.4/gui/src/components/EntitlementSelector/EntitlementSelector.spec.js → matlab-proxy-0.24.2/gui/src/components/EntitlementSelector/EntitlementSelector.spec.jsx +17 -1
- matlab-proxy-0.23.4/gui/src/components/EntitlementSelector/index.js → matlab-proxy-0.24.2/gui/src/components/EntitlementSelector/index.jsx +1 -1
- matlab-proxy-0.23.4/gui/src/components/Error/Error.spec.js → matlab-proxy-0.24.2/gui/src/components/Error/Error.spec.jsx +3 -3
- matlab-proxy-0.23.4/gui/src/components/Error/index.js → matlab-proxy-0.24.2/gui/src/components/Error/index.jsx +1 -1
- matlab-proxy-0.23.4/gui/src/components/Help/Help.spec.js → matlab-proxy-0.24.2/gui/src/components/Help/Help.spec.jsx +10 -5
- matlab-proxy-0.23.4/gui/src/components/Help/index.js → matlab-proxy-0.24.2/gui/src/components/Help/index.jsx +5 -2
- matlab-proxy-0.23.4/gui/src/components/Information/Information.spec.js → matlab-proxy-0.24.2/gui/src/components/Information/Information.spec.jsx +11 -6
- matlab-proxy-0.23.4/gui/src/components/Information/index.js → matlab-proxy-0.24.2/gui/src/components/Information/index.jsx +39 -13
- matlab-proxy-0.23.4/gui/src/components/LicensingGatherer/ExistingLicense.js → matlab-proxy-0.24.2/gui/src/components/LicensingGatherer/ExistingLicense.jsx +2 -1
- matlab-proxy-0.23.4/gui/src/components/LicensingGatherer/LicenseGatherer.spec.js → matlab-proxy-0.24.2/gui/src/components/LicensingGatherer/LicenseGatherer.spec.jsx +10 -4
- matlab-proxy-0.23.4/gui/src/components/LicensingGatherer/MHLM.js → matlab-proxy-0.24.2/gui/src/components/LicensingGatherer/MHLM.jsx +1 -1
- matlab-proxy-0.23.4/gui/src/components/LicensingGatherer/NLM.js → matlab-proxy-0.24.2/gui/src/components/LicensingGatherer/NLM.jsx +6 -2
- matlab-proxy-0.23.4/gui/src/components/LicensingGatherer/index.js → matlab-proxy-0.24.2/gui/src/components/LicensingGatherer/index.jsx +19 -7
- matlab-proxy-0.23.4/gui/src/components/MatlabJsd/MatlabJsd.spec.js → matlab-proxy-0.24.2/gui/src/components/MatlabJsd/MatlabJsd.spec.jsx +6 -6
- matlab-proxy-0.23.4/gui/src/components/MatlabJsd/index.js → matlab-proxy-0.24.2/gui/src/components/MatlabJsd/index.jsx +1 -1
- matlab-proxy-0.23.4/gui/src/components/Overlay/Overlay.spec.js → matlab-proxy-0.24.2/gui/src/components/Overlay/Overlay.spec.jsx +2 -2
- matlab-proxy-0.23.4/gui/src/components/Overlay/index.js → matlab-proxy-0.24.2/gui/src/components/Overlay/index.jsx +4 -2
- matlab-proxy-0.23.4/gui/src/components/OverlayTrigger/OverlayTrigger.spec.js → matlab-proxy-0.24.2/gui/src/components/OverlayTrigger/OverlayTrigger.spec.jsx +4 -4
- matlab-proxy-0.23.4/gui/src/components/OverlayTrigger/ResizeOverlayTrigger.spec.js → matlab-proxy-0.24.2/gui/src/components/OverlayTrigger/ResizeOverlayTrigger.spec.jsx +8 -8
- matlab-proxy-0.23.4/gui/src/components/OverlayTrigger/index.js → matlab-proxy-0.24.2/gui/src/components/OverlayTrigger/index.jsx +9 -5
- matlab-proxy-0.23.4/gui/src/components/ShutdownWarning/index.js → matlab-proxy-0.24.2/gui/src/components/ShutdownWarning/index.jsx +1 -1
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/constants.js +1 -1
- matlab-proxy-0.24.2/gui/src/main.jsx +26 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/reducers/index.js +4 -2
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/reducers/reducers.spec.js +1 -1
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/selectors/index.js +16 -6
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/selectors/selectors.spec.js +1 -1
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/setupTests.js +6 -2
- matlab-proxy-0.23.4/gui/src/test/utils/react-test.js → matlab-proxy-0.24.2/gui/src/test/utils/react-test.jsx +2 -3
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/test/utils/responses.js +1 -1
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/test/utils/state.js +1 -1
- matlab-proxy-0.24.2/gui/vite.config.js +58 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/app_state.py +48 -29
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/settings.py +136 -86
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/embedded_connector/helpers.py +2 -2
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/embedded_connector/request.py +1 -1
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/logger.py +1 -2
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/validators.py +19 -11
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2/matlab_proxy.egg-info}/PKG-INFO +3 -3
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/SOURCES.txt +34 -35
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/lib/api.py +21 -18
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/storage/server.py +26 -1
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/setup.py +1 -1
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/conftest.py +1 -2
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_app_state.py +30 -3
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_settings.py +190 -11
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/test_logger.py +1 -2
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/test_validators.py +12 -7
- matlab-proxy-0.23.4/gui/README.md +0 -68
- matlab-proxy-0.23.4/gui/package-lock.json +0 -32456
- matlab-proxy-0.23.4/gui/package.json +0 -62
- matlab-proxy-0.23.4/gui/public/index.html +0 -21
- matlab-proxy-0.23.4/gui/src/index.css +0 -23
- matlab-proxy-0.23.4/gui/src/index.js +0 -32
- matlab-proxy-0.23.4/gui/src/jest.config.json +0 -16
- matlab-proxy-0.23.4/gui/src/logo.svg +0 -7
- matlab-proxy-0.23.4/gui/src/serviceWorker.js +0 -143
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/LICENSE.md +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/MANIFEST.in +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/.gitignore +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/public/favicon.ico +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/public/manifest.json +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/public/robots.txt +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.eot +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.ttf +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff2 +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-eps.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-eps.ttf +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-eps.woff +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-pictograms.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-pictograms.ttf +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-pictograms.woff +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks.ttf +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks.woff +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/images/bug_reports/workaround.gif +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/images/responsive/global/ico-header-account-hover.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/images/responsive/global/ico-header-account.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/images/responsive/global/ico-header-contact-hover.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/images/responsive/global/ico-header-contact.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/images/responsive/global/ico-sprite.png +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/MATLAB-env-blur.png +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/Controls.css +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/feedback.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/help.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/restart.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/sign-out.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/start.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/stop.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/terminate.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Error/Error.css +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Help/Help.css +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Information/Information.css +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/LicensingGatherer/ExistingLicense.css +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/LicensingGatherer/LicensingGatherer.css +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/MatlabJsd/MatlabJsd.css +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Overlay/Overlay.css +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/OverlayTrigger/OverlayTrigger.css +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/OverlayTrigger/arrow.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/OverlayTrigger/gripper.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/OverlayTrigger/trigger-error.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/OverlayTrigger/trigger-ok.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/ShutdownWarning/ShutdownWarning.css +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/app.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/constants.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/default_configuration.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/devel.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/icons/matlab.svg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/matlab/evaluateUserMatlabCode.m +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/matlab/startup.m +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/event_loop.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/list_servers.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mw.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/custom_http_headers.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/download.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/embedded_connector/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/environment_variables.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/exceptions.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/token_auth.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/system.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/windows.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/dependency_links.txt +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/entry_points.txt +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/not-zip-safe +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/requires.txt +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/top_level.txt +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/lib/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/storage/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/storage/file_repository.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/storage/interface.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/auth.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/constants.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/environment_variables.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/helpers.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/logger.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/web/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/web/app.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/web/monitor.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/web/watcher.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/setup.cfg +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_with_license/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_with_license/conftest.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_with_license/test_http_end_points.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_without_license/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_without_license/conftest.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_without_license/test_matlab_is_down_if_unlicensed.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/utils/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/utils/integration_tests_utils.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/utils/licensing.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_app.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_constants.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_ddux.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_devel.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_non_dev_mode.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/embedded_connector/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/embedded_connector/test_helpers.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/embedded_connector/test_request.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/test_custom_http_headers.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/test_download.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/test_token_auth.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/test_mw.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/test_util.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/utils/__init__.py +0 -0
- {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/utils/logging_util.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: matlab-proxy
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.24.2
|
|
4
4
|
Summary: Python® package enables you to launch MATLAB® and access it from a web browser.
|
|
5
5
|
Home-page: https://github.com/mathworks/matlab-proxy/
|
|
6
6
|
Author: The MathWorks, Inc.
|
|
@@ -72,7 +72,7 @@ Description: # MATLAB Proxy
|
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
### Building From Sources
|
|
75
|
-
Building from sources requires Node.js® version
|
|
75
|
+
Building from sources requires Node.js® version 18 or higher. [Click here to install Node.js](https://nodejs.org/en/)
|
|
76
76
|
|
|
77
77
|
```bash
|
|
78
78
|
git clone https://github.com/mathworks/matlab-proxy.git
|
|
@@ -195,7 +195,7 @@ Description: # MATLAB Proxy
|
|
|
195
195
|
|
|
196
196
|
---
|
|
197
197
|
|
|
198
|
-
Copyright 2020-
|
|
198
|
+
Copyright 2020-2025 The MathWorks, Inc.
|
|
199
199
|
|
|
200
200
|
---
|
|
201
201
|
|
|
@@ -64,7 +64,7 @@ python -m pip install matlab-proxy
|
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
### Building From Sources
|
|
67
|
-
Building from sources requires Node.js® version
|
|
67
|
+
Building from sources requires Node.js® version 18 or higher. [Click here to install Node.js](https://nodejs.org/en/)
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
70
|
git clone https://github.com/mathworks/matlab-proxy.git
|
|
@@ -187,6 +187,6 @@ If you encounter a technical issue or have an enhancement request, create an iss
|
|
|
187
187
|
|
|
188
188
|
---
|
|
189
189
|
|
|
190
|
-
Copyright 2020-
|
|
190
|
+
Copyright 2020-2025 The MathWorks, Inc.
|
|
191
191
|
|
|
192
192
|
---
|
|
@@ -5,18 +5,18 @@
|
|
|
5
5
|
],
|
|
6
6
|
"plugins": [
|
|
7
7
|
"react",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
8
|
+
"testing-library",
|
|
9
|
+
"node"
|
|
10
10
|
],
|
|
11
11
|
"env": {
|
|
12
|
-
"
|
|
12
|
+
"vitest/globals": true,
|
|
13
13
|
"browser": true
|
|
14
14
|
},
|
|
15
15
|
"rules": {
|
|
16
16
|
"indent": ["error", 4, {"SwitchCase": 1}],
|
|
17
17
|
"semi": ["error", "always"],
|
|
18
18
|
"no-extra-semi": "error",
|
|
19
|
-
"quote-props": "
|
|
19
|
+
"quote-props": ["error", "as-needed"],
|
|
20
20
|
"dot-notation": "warn",
|
|
21
21
|
"object-curly-newline": "warn",
|
|
22
22
|
"multiline-ternary": "warn",
|
|
@@ -24,20 +24,20 @@
|
|
|
24
24
|
"no-prototype-builtins": "warn",
|
|
25
25
|
"array-callback-return": "warn",
|
|
26
26
|
"array-bracket-spacing": "warn",
|
|
27
|
-
"quotes": "warn",
|
|
27
|
+
"quotes": ["warn", "single"],
|
|
28
28
|
"lines-between-class-members": "warn",
|
|
29
29
|
"no-empty": "warn",
|
|
30
30
|
"prefer-regex-literals": "warn",
|
|
31
|
-
"
|
|
31
|
+
"node/no-callback-literal": "warn",
|
|
32
32
|
"no-useless-catch": "warn",
|
|
33
|
-
"
|
|
33
|
+
"node/handle-callback-err": "warn",
|
|
34
34
|
"no-case-declarations": "warn",
|
|
35
35
|
"computed-property-spacing": "warn",
|
|
36
36
|
"no-async-promise-executor": "warn",
|
|
37
|
-
"no-
|
|
38
|
-
"n/no-deprecated-api": "warn",
|
|
37
|
+
"node/no-deprecated-api": "warn",
|
|
39
38
|
"no-unreachable-loop": "warn",
|
|
40
|
-
"no-void": "warn"
|
|
39
|
+
"no-void": "warn",
|
|
40
|
+
"no-unused-vars": ["error", { "varsIgnorePattern": "React" }]
|
|
41
41
|
},
|
|
42
42
|
"ignorePatterns": ["build/**"],
|
|
43
43
|
"settings": {
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
This project contains the source code for the react app served by `matlab-proxy`
|
|
2
|
+
|
|
3
|
+
## Available Scripts
|
|
4
|
+
|
|
5
|
+
In the project directory, you can run:
|
|
6
|
+
|
|
7
|
+
### `npm run dev`
|
|
8
|
+
|
|
9
|
+
Runs the app in the development mode.<br />
|
|
10
|
+
Open [http://localhost:5173](http://localhost:5173) to view it in the browser.
|
|
11
|
+
|
|
12
|
+
The page will reload if you make edits.<br />
|
|
13
|
+
You will also see any lint errors in the console.
|
|
14
|
+
|
|
15
|
+
### `npm test`
|
|
16
|
+
|
|
17
|
+
Launches the test runner in the interactive watch mode.<br />
|
|
18
|
+
|
|
19
|
+
### `npm run test:coverage`
|
|
20
|
+
|
|
21
|
+
Launches the test runner and generates code coverage based on configuration specified in `vite.config.js`.
|
|
22
|
+
|
|
23
|
+
### `npm run build`
|
|
24
|
+
|
|
25
|
+
Builds the app for production to the `build` folder.<br />
|
|
26
|
+
It correctly bundles React in production mode and optimizes the build for the best performance.
|
|
27
|
+
|
|
28
|
+
The build is minified and the filenames include the hashes.<br />
|
|
29
|
+
Your app is ready to be deployed!
|
|
30
|
+
|
|
31
|
+
### `npm run eslint`
|
|
32
|
+
|
|
33
|
+
Runs lint checks on the source code based on `eslint.config.js` file
|
|
34
|
+
|
|
35
|
+
### `npm run eslint:fix`
|
|
36
|
+
|
|
37
|
+
Attempts to automatically correct problems in the source code according to the rules specified in `eslint.config.js`.
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
Copyright 2020-2025 The MathWorks, Inc.
|
|
42
|
+
|
|
43
|
+
---
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
// Copyright 2025 The MathWorks, Inc.
|
|
2
|
+
|
|
3
|
+
import globals from 'globals';
|
|
4
|
+
import react from 'eslint-plugin-react';
|
|
5
|
+
import reactHooks from 'eslint-plugin-react-hooks';
|
|
6
|
+
import reactRefresh from 'eslint-plugin-react-refresh';
|
|
7
|
+
import nodePlugin from 'eslint-plugin-node';
|
|
8
|
+
import vitestPlugin from 'eslint-plugin-vitest';
|
|
9
|
+
import fs from 'fs';
|
|
10
|
+
|
|
11
|
+
const eslintrcJson = JSON.parse(fs.readFileSync('./.eslintrc.json', 'utf8'));
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
function cleanGlobals(globalsObject) {
|
|
15
|
+
return Object.fromEntries(
|
|
16
|
+
Object.entries(globalsObject).map(([key, value]) => [key.trim(), value])
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default [
|
|
21
|
+
{ ignores: ['build'] },
|
|
22
|
+
{
|
|
23
|
+
files: ['**/*.{js,jsx}'],
|
|
24
|
+
languageOptions: {
|
|
25
|
+
ecmaVersion: 2020,
|
|
26
|
+
globals: {
|
|
27
|
+
...cleanGlobals(globals.browser),
|
|
28
|
+
...eslintrcJson.env
|
|
29
|
+
},
|
|
30
|
+
parserOptions: {
|
|
31
|
+
ecmaVersion: 'latest',
|
|
32
|
+
ecmaFeatures: { jsx: true },
|
|
33
|
+
sourceType: 'module',
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
settings: eslintrcJson.settings,
|
|
37
|
+
plugins: {
|
|
38
|
+
...Object.fromEntries(eslintrcJson.plugins.map(plugin => [plugin, import(`eslint-plugin-${plugin}`)])),
|
|
39
|
+
react,
|
|
40
|
+
node: nodePlugin,
|
|
41
|
+
vitest: vitestPlugin,
|
|
42
|
+
'react-hooks': reactHooks,
|
|
43
|
+
'react-refresh': reactRefresh,
|
|
44
|
+
},
|
|
45
|
+
rules: {
|
|
46
|
+
...react.configs.recommended.rules,
|
|
47
|
+
...react.configs['jsx-runtime'].rules,
|
|
48
|
+
...reactHooks.configs.recommended.rules,
|
|
49
|
+
'react/jsx-no-target-blank': 'off',
|
|
50
|
+
'react-refresh/only-export-components': [
|
|
51
|
+
'warn',
|
|
52
|
+
{ allowConstantExport: true },
|
|
53
|
+
],
|
|
54
|
+
...eslintrcJson.rules,
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
];
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* Copyright 2020-2025 The MathWorks, Inc. */
|
|
2
|
+
|
|
3
|
+
html {
|
|
4
|
+
height: 100%;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
#root {
|
|
8
|
+
height: 100%;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
body {
|
|
12
|
+
margin: 0;
|
|
13
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
14
|
+
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
15
|
+
sans-serif;
|
|
16
|
+
-webkit-font-smoothing: antialiased;
|
|
17
|
+
-moz-osx-font-smoothing: grayscale;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
code {
|
|
21
|
+
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
22
|
+
monospace;
|
|
23
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!-- Copyright 2025 The MathWorks, Inc. -->
|
|
2
|
+
|
|
3
|
+
<!doctype html>
|
|
4
|
+
<html lang="en">
|
|
5
|
+
<head>
|
|
6
|
+
<meta charset="UTF-8" />
|
|
7
|
+
<link rel="icon" href="./favicon.ico" />
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
9
|
+
<meta name="theme-color" content="#000000" />
|
|
10
|
+
<meta name="description" content="MATLAB" />
|
|
11
|
+
<meta name="internal_mw_identifier" content="MWI_MATLAB_PROXY_IDENTIFIER" />
|
|
12
|
+
<link rel="manifest" href="./manifest.json" />
|
|
13
|
+
<link rel="stylesheet" href="./index.css">
|
|
14
|
+
<title>MATLAB</title>
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<div id="root"></div>
|
|
18
|
+
<script type="module" src="./src/main.jsx"></script>
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|