Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
89709c7
add a convenience CORS backdoor for dev environments
mudhoney Aug 22, 2025
034f289
implement eventsapi client and the exceptions, use them for CCMC data…
mudhoney Aug 22, 2025
8804f16
use default eventsapi url
mudhoney Oct 9, 2025
e984b39
add tests for eventsapi integration
mudhoney Oct 10, 2025
5f83263
default URL for eventsapi in API config
mudhoney Oct 22, 2025
393782d
use events api for movie generation and screenshots
mudhoney Oct 30, 2025
f9f0413
set a default timeout configuration for timeout(s) of eventsapi reque…
mudhoney Feb 21, 2026
60e4197
reduce code dublication, also remove db and event_interface reading o…
mudhoney Feb 21, 2026
d599718
use psr4 naming for module interface
mudhoney Feb 21, 2026
5626921
move events to legacyevents
mudhoney Feb 23, 2026
4781611
do a cleaning to simplify getDataCoverageEndpoints,
mudhoney Feb 25, 2026
886f0ec
simplification and more comments for eventscoverage
mudhoney Feb 25, 2026
6c5fd65
updated eventsapi tests
mudhoney Mar 18, 2026
956fce8
remove old eventtimeline function from statistics
mudhoney Mar 19, 2026
dc6f6c1
make lineendings windows to linux for my sanity
mudhoney Mar 20, 2026
63108aa
use local api url to fix tests , using production url to report api e…
mudhoney Mar 20, 2026
50ab7df
bring abstract module to reduce code dublication, also remove params …
mudhoney Mar 20, 2026
78cf776
remove trailing space , remove legacy event-interface test, add conne…
mudhoney Mar 20, 2026
09aff09
add missing inclusion of namespaces
mudhoney Mar 23, 2026
a6ad7c1
move movies to work with new EventsApi per frame, still way to go
mudhoney Mar 23, 2026
ac024d0
fix double sentry sending
mudhoney Mar 23, 2026
87ac9b3
centralize eventsapi and implement timeline for events
mudhoney Mar 24, 2026
ec842f2
add additional destructs to be sure, we are closing all mysql connect…
mudhoney Mar 27, 2026
e5065c5
continue to use single instance of EventsApi
mudhoney Mar 27, 2026
c43bf18
movie making, use eventsapi batchEvents query endpoint to receive all…
mudhoney Mar 27, 2026
d513fd7
tests for helper functions getSources and filterSources
mudhoney Mar 27, 2026
7c2b3a4
distribute tests to multiple files
mudhoney Mar 27, 2026
c90507f
create seperate object for legacy event response, to be able to test …
mudhoney Mar 27, 2026
66d48be
test batch event query endpoints in api client
mudhoney Mar 30, 2026
432c16e
minor bugs for events strings doesn't start end with []
mudhoney Mar 30, 2026
0b3841d
events selections tests for different cases
mudhoney Mar 30, 2026
a1478ce
testibility improvements
mudhoney Mar 31, 2026
4aa8932
Merge branch 'main' into feature/events-api
mudhoney Apr 3, 2026
1912aa8
fix bug prevent individual events to be processed in movies
mudhoney Apr 6, 2026
d75445f
create missing event pins
mudhoney Apr 7, 2026
40b49e7
remove intermediate event timeline
mudhoney Apr 7, 2026
6ce6cf1
events timeline port with tests
mudhoney Apr 7, 2026
bce148e
implement showInLegend functionality
mudhoney Apr 7, 2026
b99160c
add timeline coverate strategies tests
mudhoney Apr 7, 2026
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ docroot/statistics/bokeh/Jhv_movies
docroot/statistics/bokeh/service_usage
docroot/resources/JSON/celestial-objects*
docroot/resources/JSON/celestial-bodies*
docroot/docs/v2
docroot/docs/v2/*
!docroot/docs/v2/api_definitions.xml
docroot/status.xml
py_env
py_venv_local_sunpy
Expand Down
2 changes: 1 addition & 1 deletion docroot/docs/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


function import_xml($api_version, &$api_xml_path, &$xml) {
$api_xml_url = sprintf("%s/docs/%s/api_definitions.xml", "https://api.helioviewer.org", $api_version);
$api_xml_url = sprintf("%s/docs/%s/api_definitions.xml", HV_WEB_ROOT_URL, $api_version);
$xml = simplexml_load_file($api_xml_url);
$api_xml_path = dirname(realpath(__FILE__)) . '/' . $api_version. '/api_definitions.xml';
}
Expand Down
4,638 changes: 4,638 additions & 0 deletions docroot/docs/v2/api_definitions.xml

Large diffs are not rendered by default.

Loading
Loading