Export: Cleanup jqplot Module References.

Clean up references to the jqplot modules that were overlooked in #4350.

Signed-off-by: Michael Keller <mikeller@042.ch>
This commit is contained in:
Michael Keller 2024-10-21 10:04:18 +13:00
parent 364c776ff1
commit 2244f3f528
4 changed files with 12 additions and 11 deletions

5
.gitattributes vendored
View file

@ -1,8 +1,9 @@
.gitignore export-ignore
.gitattributes export-ignore
Documentation/*.html.git text=auto
theme/jqplot.canvasAxisTickRenderer.min.js binary
theme/jqplot.highlighter.min.js binary
theme/jqplot.canvasAxisTickRenderer.js binary
theme/jqplot.canvasTextRenderer.js binary
theme/jqplot.highlighter.js binary
theme/jquery.jqplot.min.js binary
theme/jquery.min.js binary
CHANGELOG.md -text merge=union

View file

@ -155,10 +155,10 @@ void exportHtmlInitLogic(const QString &filename, struct htmlExportSetting &hes)
file_copy_and_overwrite(searchPath + "dive_export.html", filename);
file_copy_and_overwrite(searchPath + "list_lib.js", exportFiles + "list_lib.js");
file_copy_and_overwrite(searchPath + "poster.png", exportFiles + "poster.png");
file_copy_and_overwrite(searchPath + "jqplot.highlighter.min.js", exportFiles + "jqplot.highlighter.min.js");
file_copy_and_overwrite(searchPath + "jquery.jqplot.min.js", exportFiles + "jquery.jqplot.min.js");
file_copy_and_overwrite(searchPath + "jqplot.canvasAxisTickRenderer.min.js", exportFiles + "jqplot.canvasAxisTickRenderer.min.js");
file_copy_and_overwrite(searchPath + "jqplot.canvasTextRenderer.min.js", exportFiles + "jqplot.canvasTextRenderer.min.js");
file_copy_and_overwrite(searchPath + "jqplot.canvasAxisTickRenderer.js", exportFiles + "jqplot.canvasAxisTickRenderer.js");
file_copy_and_overwrite(searchPath + "jqplot.canvasTextRenderer.js", exportFiles + "jqplot.canvasTextRenderer.js");
file_copy_and_overwrite(searchPath + "jqplot.highlighter.js", exportFiles + "jqplot.highlighter.js");
file_copy_and_overwrite(searchPath + "jquery.min.js", exportFiles + "jquery.min.js");
file_copy_and_overwrite(searchPath + "jquery.jqplot.min.css", exportFiles + "jquery.jqplot.min.css");
file_copy_and_overwrite(searchPath + hes.themeFile, exportFiles + "theme.css");

View file

@ -1,7 +1,7 @@
# We use the package
subsurface source: source-is-missing theme/jqplot.canvasAxisTickRenderer.min.js
subsurface source: source-is-missing theme/jqplot.canvasTextRenderer.min.js
subsurface source: source-is-missing theme/jqplot.highlighter.min.js
subsurface source: source-is-missing theme/jqplot.canvasAxisTickRenderer.js
subsurface source: source-is-missing theme/jqplot.canvasTextRenderer.js
subsurface source: source-is-missing theme/jqplot.highlighter.js
subsurface source: source-is-missing theme/jquery.jqplot.min.js
subsurface source: source-is-missing theme/jquery.min.js
subsurface source: source-is-missing theme/list_lib.js

View file

@ -49,9 +49,9 @@ function load_scripts()
load_script_sync("list_lib.js");
load_script_sync("jquery.min.js");
load_script_sync("jquery.jqplot.min.js");
load_script_sync("jqplot.highlighter.min.js");
load_script_sync("jqplot.canvasAxisTickRenderer.min.js");
load_script_sync("jqplot.canvasTextRenderer.min.js");
load_script_sync("jqplot.canvasAxisTickRenderer.js");
load_script_sync("jqplot.canvasTextRenderer.js");
load_script_sync("jqplot.highlighter.js");
}
var advanced_shown=false;