Skip to content

Commit 0b02c5b

Browse files
author
Pavel Rappo
committedJun 5, 2020
8245981: Upgrade to jQuery 3.5.1
Reviewed-by: hannesw
1 parent 498b0e6 commit 0b02c5b

File tree

8 files changed

+767
-493
lines changed

8 files changed

+767
-493
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlDoclet.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ protected void generateOtherFiles(DocletEnvironment docEnv, ClassTree classtree)
219219

220220
private void copyJqueryFiles() throws DocletException {
221221
List<String> files = Arrays.asList(
222-
"jquery-3.4.1.min.js",
222+
"jquery-3.5.1.min.js",
223223
"jquery-ui.min.js",
224224
"jquery-ui.min.css",
225225
"jquery-ui.structure.min.css",

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/script-dir/jquery-3.4.1.min.js

-2
This file was deleted.

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/script-dir/jquery-3.4.1.js ‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/script-dir/jquery-3.5.1.js

+757-483
Large diffs are not rendered by default.

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/script-dir/jquery-3.5.1.min.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/DocPaths.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public static DocPath indexN(int n) {
104104
public static final DocPath JQUERY_FILES = DocPath.create("script-dir");
105105

106106
/** The name of the default jQuery javascript file. */
107-
public static final DocPath JQUERY_JS = DocPath.create("jquery-3.4.1.min.js");
107+
public static final DocPath JQUERY_JS = DocPath.create("jquery-3.5.1.min.js");
108108

109109
/** The name of the default jQuery UI stylesheet file. */
110110
public static final DocPath JQUERY_UI_CSS = DocPath.create("jquery-ui.min.css");

‎src/jdk.javadoc/share/legal/jquery.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## jQuery v3.4.1
1+
## jQuery v3.5.1
22

33
### jQuery License
44
```
5-
jQuery v 3.4.1
5+
jQuery v 3.5.1
66
Copyright JS Foundation and other contributors, https://js.foundation/
77
88
Permission is hereby granted, free of charge, to any person obtaining
@@ -26,7 +26,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2626
2727
******************************************
2828
29-
The jQuery JavaScript Library v3.4.1 also includes Sizzle.js
29+
The jQuery JavaScript Library v3.5.1 also includes Sizzle.js
3030
3131
Sizzle.js includes the following license:
3232

‎test/langtools/jdk/javadoc/doclet/testSearch/TestSearch.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ void checkSearchOutput(String fileName, boolean expectedOutput, boolean moduleDi
409409
<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
410410
""",
411411
"""
412-
<script type="text/javascript" src="script-dir/jquery-3.4.1.min.js"></script>
412+
<script type="text/javascript" src="script-dir/jquery-3.5.1.min.js"></script>
413413
""",
414414
"""
415415
<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>""",
@@ -690,7 +690,7 @@ void checkJqueryAndImageFiles(boolean expectedOutput) {
690690
checkFiles(expectedOutput,
691691
"search.js",
692692
"jquery-ui.overrides.css",
693-
"script-dir/jquery-3.4.1.min.js",
693+
"script-dir/jquery-3.5.1.min.js",
694694
"script-dir/jquery-ui.min.js",
695695
"script-dir/jquery-ui.min.css",
696696
"script-dir/jquery-ui.structure.min.css",

‎test/langtools/jdk/javadoc/tool/api/basic/APITest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ protected void error(String msg) {
197197
"help-doc.html",
198198
"index-all.html",
199199
"index.html",
200-
"script-dir/jquery-3.4.1.min.js",
200+
"script-dir/jquery-3.5.1.min.js",
201201
"script-dir/jquery-ui.min.js",
202202
"script-dir/jquery-ui.min.css",
203203
"script-dir/jquery-ui.structure.min.css",

0 commit comments

Comments
 (0)
Please sign in to comment.