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.

Files changed (197) hide show
  1. {matlab-proxy-0.23.4/matlab_proxy.egg-info → matlab-proxy-0.24.2}/PKG-INFO +3 -3
  2. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/README.md +2 -2
  3. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/.eslintrc.json +10 -10
  4. matlab-proxy-0.24.2/gui/README.md +43 -0
  5. matlab-proxy-0.24.2/gui/eslint.config.js +57 -0
  6. matlab-proxy-0.24.2/gui/index.css +23 -0
  7. matlab-proxy-0.24.2/gui/index.html +20 -0
  8. matlab-proxy-0.24.2/gui/package-lock.json +9930 -0
  9. matlab-proxy-0.24.2/gui/package.json +54 -0
  10. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/actionCreators/actionCreators.spec.js +2 -2
  11. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/actionCreators/index.js +11 -11
  12. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/actions/index.js +1 -1
  13. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/css/bootstrap.min.css +3 -2
  14. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/css/site7.min.css +3 -1
  15. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/App.css +1 -1
  16. 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
  17. 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
  18. matlab-proxy-0.23.4/gui/src/components/App/index.js → matlab-proxy-0.24.2/gui/src/components/App/index.jsx +17 -6
  19. 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
  20. matlab-proxy-0.23.4/gui/src/components/Confirmation/index.js → matlab-proxy-0.24.2/gui/src/components/Confirmation/index.jsx +1 -1
  21. 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
  22. matlab-proxy-0.23.4/gui/src/components/Controls/index.js → matlab-proxy-0.24.2/gui/src/components/Controls/index.jsx +38 -24
  23. 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
  24. matlab-proxy-0.23.4/gui/src/components/EntitlementSelector/index.js → matlab-proxy-0.24.2/gui/src/components/EntitlementSelector/index.jsx +1 -1
  25. 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
  26. matlab-proxy-0.23.4/gui/src/components/Error/index.js → matlab-proxy-0.24.2/gui/src/components/Error/index.jsx +1 -1
  27. 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
  28. matlab-proxy-0.23.4/gui/src/components/Help/index.js → matlab-proxy-0.24.2/gui/src/components/Help/index.jsx +5 -2
  29. 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
  30. matlab-proxy-0.23.4/gui/src/components/Information/index.js → matlab-proxy-0.24.2/gui/src/components/Information/index.jsx +39 -13
  31. matlab-proxy-0.23.4/gui/src/components/LicensingGatherer/ExistingLicense.js → matlab-proxy-0.24.2/gui/src/components/LicensingGatherer/ExistingLicense.jsx +2 -1
  32. 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
  33. matlab-proxy-0.23.4/gui/src/components/LicensingGatherer/MHLM.js → matlab-proxy-0.24.2/gui/src/components/LicensingGatherer/MHLM.jsx +1 -1
  34. matlab-proxy-0.23.4/gui/src/components/LicensingGatherer/NLM.js → matlab-proxy-0.24.2/gui/src/components/LicensingGatherer/NLM.jsx +6 -2
  35. matlab-proxy-0.23.4/gui/src/components/LicensingGatherer/index.js → matlab-proxy-0.24.2/gui/src/components/LicensingGatherer/index.jsx +19 -7
  36. 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
  37. matlab-proxy-0.23.4/gui/src/components/MatlabJsd/index.js → matlab-proxy-0.24.2/gui/src/components/MatlabJsd/index.jsx +1 -1
  38. 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
  39. matlab-proxy-0.23.4/gui/src/components/Overlay/index.js → matlab-proxy-0.24.2/gui/src/components/Overlay/index.jsx +4 -2
  40. 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
  41. 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
  42. matlab-proxy-0.23.4/gui/src/components/OverlayTrigger/index.js → matlab-proxy-0.24.2/gui/src/components/OverlayTrigger/index.jsx +9 -5
  43. matlab-proxy-0.23.4/gui/src/components/ShutdownWarning/index.js → matlab-proxy-0.24.2/gui/src/components/ShutdownWarning/index.jsx +1 -1
  44. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/constants.js +1 -1
  45. matlab-proxy-0.24.2/gui/src/main.jsx +26 -0
  46. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/reducers/index.js +4 -2
  47. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/reducers/reducers.spec.js +1 -1
  48. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/selectors/index.js +16 -6
  49. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/selectors/selectors.spec.js +1 -1
  50. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/setupTests.js +6 -2
  51. 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
  52. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/test/utils/responses.js +1 -1
  53. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/test/utils/state.js +1 -1
  54. matlab-proxy-0.24.2/gui/vite.config.js +58 -0
  55. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/app_state.py +48 -29
  56. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/settings.py +136 -86
  57. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/embedded_connector/helpers.py +2 -2
  58. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/embedded_connector/request.py +1 -1
  59. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/logger.py +1 -2
  60. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/validators.py +19 -11
  61. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2/matlab_proxy.egg-info}/PKG-INFO +3 -3
  62. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/SOURCES.txt +34 -35
  63. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/lib/api.py +21 -18
  64. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/storage/server.py +26 -1
  65. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/setup.py +1 -1
  66. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/conftest.py +1 -2
  67. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_app_state.py +30 -3
  68. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_settings.py +190 -11
  69. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/test_logger.py +1 -2
  70. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/test_validators.py +12 -7
  71. matlab-proxy-0.23.4/gui/README.md +0 -68
  72. matlab-proxy-0.23.4/gui/package-lock.json +0 -32456
  73. matlab-proxy-0.23.4/gui/package.json +0 -62
  74. matlab-proxy-0.23.4/gui/public/index.html +0 -21
  75. matlab-proxy-0.23.4/gui/src/index.css +0 -23
  76. matlab-proxy-0.23.4/gui/src/index.js +0 -32
  77. matlab-proxy-0.23.4/gui/src/jest.config.json +0 -16
  78. matlab-proxy-0.23.4/gui/src/logo.svg +0 -7
  79. matlab-proxy-0.23.4/gui/src/serviceWorker.js +0 -143
  80. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/LICENSE.md +0 -0
  81. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/MANIFEST.in +0 -0
  82. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/.gitignore +0 -0
  83. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/public/favicon.ico +0 -0
  84. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/public/manifest.json +0 -0
  85. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/public/robots.txt +0 -0
  86. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.eot +0 -0
  87. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.svg +0 -0
  88. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.ttf +0 -0
  89. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff +0 -0
  90. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff2 +0 -0
  91. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-eps.svg +0 -0
  92. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-eps.ttf +0 -0
  93. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-eps.woff +0 -0
  94. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-pictograms.svg +0 -0
  95. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-pictograms.ttf +0 -0
  96. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks-pictograms.woff +0 -0
  97. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks.svg +0 -0
  98. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks.ttf +0 -0
  99. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/fonts/mathworks.woff +0 -0
  100. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/images/bug_reports/workaround.gif +0 -0
  101. {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
  102. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/images/responsive/global/ico-header-account.svg +0 -0
  103. {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
  104. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/images/responsive/global/ico-header-contact.svg +0 -0
  105. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/3p/images/responsive/global/ico-sprite.png +0 -0
  106. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/App/MATLAB-env-blur.png +0 -0
  107. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/Controls.css +0 -0
  108. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/feedback.svg +0 -0
  109. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/help.svg +0 -0
  110. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/restart.svg +0 -0
  111. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/sign-out.svg +0 -0
  112. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/start.svg +0 -0
  113. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/stop.svg +0 -0
  114. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Controls/terminate.svg +0 -0
  115. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Error/Error.css +0 -0
  116. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Help/Help.css +0 -0
  117. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Information/Information.css +0 -0
  118. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/LicensingGatherer/ExistingLicense.css +0 -0
  119. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/LicensingGatherer/LicensingGatherer.css +0 -0
  120. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/MatlabJsd/MatlabJsd.css +0 -0
  121. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/Overlay/Overlay.css +0 -0
  122. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/OverlayTrigger/OverlayTrigger.css +0 -0
  123. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/OverlayTrigger/arrow.svg +0 -0
  124. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/OverlayTrigger/gripper.svg +0 -0
  125. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/OverlayTrigger/trigger-error.svg +0 -0
  126. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/OverlayTrigger/trigger-ok.svg +0 -0
  127. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/gui/src/components/ShutdownWarning/ShutdownWarning.css +0 -0
  128. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/__init__.py +0 -0
  129. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/app.py +0 -0
  130. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/constants.py +0 -0
  131. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/default_configuration.py +0 -0
  132. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/devel.py +0 -0
  133. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/icons/matlab.svg +0 -0
  134. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/matlab/evaluateUserMatlabCode.m +0 -0
  135. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/matlab/startup.m +0 -0
  136. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/__init__.py +0 -0
  137. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/event_loop.py +0 -0
  138. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/list_servers.py +0 -0
  139. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mw.py +0 -0
  140. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/__init__.py +0 -0
  141. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/custom_http_headers.py +0 -0
  142. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/download.py +0 -0
  143. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/embedded_connector/__init__.py +0 -0
  144. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/environment_variables.py +0 -0
  145. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/exceptions.py +0 -0
  146. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/mwi/token_auth.py +0 -0
  147. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/system.py +0 -0
  148. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy/util/windows.py +0 -0
  149. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/dependency_links.txt +0 -0
  150. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/entry_points.txt +0 -0
  151. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/not-zip-safe +0 -0
  152. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/requires.txt +0 -0
  153. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy.egg-info/top_level.txt +0 -0
  154. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/__init__.py +0 -0
  155. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/lib/__init__.py +0 -0
  156. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/storage/__init__.py +0 -0
  157. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/storage/file_repository.py +0 -0
  158. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/storage/interface.py +0 -0
  159. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/__init__.py +0 -0
  160. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/auth.py +0 -0
  161. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/constants.py +0 -0
  162. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/environment_variables.py +0 -0
  163. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/helpers.py +0 -0
  164. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/utils/logger.py +0 -0
  165. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/web/__init__.py +0 -0
  166. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/web/app.py +0 -0
  167. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/web/monitor.py +0 -0
  168. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/matlab_proxy_manager/web/watcher.py +0 -0
  169. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/setup.cfg +0 -0
  170. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/__init__.py +0 -0
  171. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_with_license/__init__.py +0 -0
  172. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_with_license/conftest.py +0 -0
  173. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_with_license/test_http_end_points.py +0 -0
  174. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_without_license/__init__.py +0 -0
  175. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/integration_tests_without_license/conftest.py +0 -0
  176. {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
  177. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/utils/__init__.py +0 -0
  178. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/utils/integration_tests_utils.py +0 -0
  179. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/integration/utils/licensing.py +0 -0
  180. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/__init__.py +0 -0
  181. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_app.py +0 -0
  182. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_constants.py +0 -0
  183. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_ddux.py +0 -0
  184. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_devel.py +0 -0
  185. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/test_non_dev_mode.py +0 -0
  186. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/__init__.py +0 -0
  187. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/__init__.py +0 -0
  188. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/embedded_connector/__init__.py +0 -0
  189. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/embedded_connector/test_helpers.py +0 -0
  190. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/embedded_connector/test_request.py +0 -0
  191. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/test_custom_http_headers.py +0 -0
  192. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/test_download.py +0 -0
  193. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/mwi/test_token_auth.py +0 -0
  194. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/test_mw.py +0 -0
  195. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/unit/util/test_util.py +0 -0
  196. {matlab-proxy-0.23.4 → matlab-proxy-0.24.2}/tests/utils/__init__.py +0 -0
  197. {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.23.4
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 16 or higher. [Click here to install Node.js](https://nodejs.org/en/)
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-2024 The MathWorks, Inc.
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 16 or higher. [Click here to install Node.js](https://nodejs.org/en/)
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-2024 The MathWorks, Inc.
190
+ Copyright 2020-2025 The MathWorks, Inc.
191
191
 
192
192
  ---
@@ -5,18 +5,18 @@
5
5
  ],
6
6
  "plugins": [
7
7
  "react",
8
- "jest",
9
- "testing-library"
8
+ "testing-library",
9
+ "node"
10
10
  ],
11
11
  "env": {
12
- "jest/globals": true,
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": "warn",
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
- "n/no-callback-literal": "warn",
31
+ "node/no-callback-literal": "warn",
32
32
  "no-useless-catch": "warn",
33
- "n/handle-callback-err": "warn",
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-unused-vars": "warn",
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>