Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api
Submodule api updated 46 files
+34 −2 .github/workflows/php.yml
+12 −65 docroot/index.php
+11 −3 docroot/schema/event_layers.schema.json
+4 −4 docroot/schema/image_layer.schema.json
+1 −1 docroot/schema/post_movie.schema.json
+15 −2 docroot/schema/post_screenshot.schema.json
+1 −0 docroot/statistics/bokeh/coverages/index.html
+5 −4 docs/src/requirements.txt
+15 −15 docs/src/source/api/api_groups/jpeg2000/getJpxClosestToMidpoint.rst
+956 −0 install/__test__/mocked_requests/vso_sunpy_download.yaml
+16 −23 install/__test__/test_vso_sunpy_download.py
+20 −0 install/database/2025_05_30_ccor.sql
+17 −9 install/helioviewer/db.py
+2 −0 install/helioviewer/hvpull/net/daemon.py
+16 −0 install/helioviewer/hvpull/servers/ccor1.py
+23 −0 install/helioviewer/hvpull/servers/ccor2.py
+1 −1 install/helioviewer/hvpull/servers/iris.py
+42 −8 install/helioviewer/jp2parser.py
+66 −45 install/test_requirements.txt
+30 −0 management/events/patch_basedifftime.php
+263 −0 management/events/update_events.php
+3 −3 management/schema/image_layer.schema.template.json
+0 −1 scripts/availability_feed/gen_feed.py
+9 −9 scripts/availability_feed/requirements.txt
+1 −1 scripts/movie_queue.tcsh
+53 −0 src/Actions.php
+51 −0 src/Database/ClientState.php
+1 −0 src/Database/DbConnection.php
+8 −12 src/Database/ImgIndex.php
+7 −7 src/Database/MovieDatabase.php
+5 −2 src/Event/EventsStateManager.php
+0 −38 src/Event/HEKAdapter.php
+5 −1 src/Helper/HelioviewerLayers.php
+1 −8 src/Helper/SciScript.php
+4 −1 src/Image/JPEG2000/HelioviewerJPXImage.php
+34 −30 src/Module/JHelioviewer.php
+28 −19 src/Module/Movies.php
+47 −27 src/Module/SolarBodies.php
+19 −30 src/Module/SolarEvents.php
+51 −80 src/Module/WebClient.php
+181 −47 src/Validation/InputValidator.php
+122 −0 tests/unit_tests/events/EventManagerRegressionTest.php
+80 −0 tests/unit_tests/module/ValidateParametersTest.php
+392 −0 tests/unit_tests/validation/LegacyEventStringTest.php
+74 −0 tests/unit_tests/validation/ValidatorTest.php
+62 −0 tests/unit_tests/validation/test_data/post_screenshot/valid/post_screenshot_regression_1.json
2 changes: 1 addition & 1 deletion helioviewer.org
Submodule helioviewer.org updated 37 files
+35 −2 .github/workflows/ci.yml
+3 −3 dialogs/glossary.html
+81 −22 index.php
+8 −2 package-lock.json
+4 −3 package.json
+2 −2 resources/build/build.xml
+16 −1 resources/build/webpack.config.js
+1 −2 resources/css/accordions.css
+1 −1 resources/css/helioviewer-web.css
+1 −1 resources/js/3d/coordinates/horizons.js
+0 −31 resources/js/Events/EventFeatureRecognitionMethod.js
+1,508 −0 resources/js/Events/EventGlossary.js
+0 −39 resources/js/Events/EventLayerManager.js
+272 −0 resources/js/Events/EventLoader.js
+0 −640 resources/js/Events/EventManager.js
+1,005 −869 resources/js/Events/EventMarker.js
+0 −344 resources/js/Events/EventTree.js
+0 −42 resources/js/Events/EventType.js
+61 −43 resources/js/Events/EventViewer.js
+308 −0 resources/js/Events/FullEventLoader.js
+0 −42 resources/js/Events/HelioviewerEventLayer.js
+0 −71 resources/js/Events/HelioviewerEventLayerManager.js
+71 −59 resources/js/Events/JsonViewer.js
+178 −0 resources/js/Events/MinimalEventLoader.js
+0 −95 resources/js/Events/SelectedEventsCache.js
+3 −5 resources/js/HelioviewerWebClient.js
+5 −5 resources/js/Media/MovieManagerUI.js
+0 −503 resources/js/UI/EventLayerAccordion.js
+52 −111 resources/js/UI/ImagePresets.js
+2 −2 resources/js/UI/TileLayerAccordion.js
+11 −6 resources/js/UI/Timeline.js
+17 −15 resources/js/UI/TimelineEvents.js
+15 −12 resources/js/Utility/SettingsLoader.js
+12 −5 resources/js/Utility/UserSettings.js
+3 −4 resources/js/Viewport/CelestialBodiesSatellites.js
+0 −17 resources/js/Viewport/HelioviewerViewport.js
+4 −2 resources/js/index.js
Loading