From 53157165ed07fccdd2f5421debe2261e0e634d9c Mon Sep 17 00:00:00 2001 From: Sergey Linev Date: Fri, 25 Apr 2025 17:05:29 +0200 Subject: [PATCH 1/2] Use jsroot 7.9.0 in jupyter --- bindings/jupyroot/python/JupyROOT/helpers/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/jupyroot/python/JupyROOT/helpers/utils.py b/bindings/jupyroot/python/JupyROOT/helpers/utils.py index 82836a07951b3..98c191eb7968a 100644 --- a/bindings/jupyroot/python/JupyROOT/helpers/utils.py +++ b/bindings/jupyroot/python/JupyROOT/helpers/utils.py @@ -74,7 +74,7 @@ // We are in jupyter notebooks, use require.js which should be configured already requirejs.config({{ - paths: {{ 'JSRootCore' : [ 'build/jsroot', 'https://root.cern/js/7.7.4/build/jsroot', 'https://jsroot.gsi.de/7.7.4/build/jsroot' ] }} + paths: {{ 'JSRootCore' : [ 'build/jsroot', 'https://root.cern/js/7.9.0/build/jsroot', 'https://jsroot.gsi.de/7.9.0/build/jsroot' ] }} }})(['JSRootCore'], function(Core) {{ display_{jsDivId}(Core); }}); @@ -97,7 +97,7 @@ // Try loading a local version of requirejs and fallback to cdn if not possible. script_load_{jsDivId}(base_url + 'static/build/jsroot.js', function(){{ console.error('Fail to load JSROOT locally, please check your jupyter_notebook_config.py file'); - script_load_{jsDivId}('https://root.cern/js/7.7.4/build/jsroot.js', function(){{ + script_load_{jsDivId}('https://root.cern/js/7.9.0/build/jsroot.js', function(){{ document.getElementById("{jsDivId}").innerHTML = "Failed to load JSROOT"; }}); }}); From 0869b4d428593359dfa068970971a0510244d9dd Mon Sep 17 00:00:00 2001 From: Sergey Linev Date: Fri, 25 Apr 2025 17:05:55 +0200 Subject: [PATCH 2/2] Use jsroot 7.9.0 in http server comments --- net/http/src/THttpServer.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/http/src/THttpServer.cxx b/net/http/src/THttpServer.cxx index b5813c91cdf06..6f8f8a9155bdc 100644 --- a/net/http/src/THttpServer.cxx +++ b/net/http/src/THttpServer.cxx @@ -350,8 +350,8 @@ void THttpServer::AddLocation(const char *prefix, const char *path) /// /// One could specify address like: /// -/// * https://root.cern/js/7.6.0/ -/// * https://jsroot.gsi.de/7.6.0/ +/// * https://root.cern/js/7.9.0/ +/// * https://jsroot.gsi.de/7.9.0/ /// /// This allows to get new JSROOT features with old server, /// reduce load on THttpServer instance, also startup time can be improved