This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 5110154  Apply correct upstream JSZip/javadoc patch from JDK12
5110154 is described below

commit 5110154e7dbab40ddc5cb471504b1365b12f776a
Author: Christopher Tubbs <ctubb...@apache.org>
AuthorDate: Sun Aug 4 10:45:13 2019 -0400

    Apply correct upstream JSZip/javadoc patch from JDK12
---
 _docs-2/apidocs/script.js | 42 ++++++++++++++++++++++++++----------------
 1 file changed, 26 insertions(+), 16 deletions(-)

diff --git a/_docs-2/apidocs/script.js b/_docs-2/apidocs/script.js
index 9477769..7dc93c4 100644
--- a/_docs-2/apidocs/script.js
+++ b/_docs-2/apidocs/script.js
@@ -36,45 +36,55 @@ function loadScripts(doc, tag) {
         createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils-ie.js');
     }
     createElem(doc, tag, 'search.js');
-    
+
     $.get(pathtoroot + "module-search-index.zip")
             .done(function() {
                 JSZipUtils.getBinaryContent(pathtoroot + 
"module-search-index.zip", function(e, data) {
-                    var zip = new JSZip();
-                    zip.load(data);
-                    moduleSearchIndex = 
JSON.parse(zip.file("module-search-index.json").asText());
+                    JSZip.loadAsync(data).then(function(zip){
+                        
zip.file("module-search-index.json").async("text").then(function(content){
+                            moduleSearchIndex = JSON.parse(content);
+                        });
+                    });
                 });
             });
     $.get(pathtoroot + "package-search-index.zip")
             .done(function() {
                 JSZipUtils.getBinaryContent(pathtoroot + 
"package-search-index.zip", function(e, data) {
-                    var zip = new JSZip();
-                    zip.load(data);
-                    packageSearchIndex = 
JSON.parse(zip.file("package-search-index.json").asText());
+                    JSZip.loadAsync(data).then(function(zip){
+                        
zip.file("package-search-index.json").async("text").then(function(content){
+                            packageSearchIndex = JSON.parse(content);
+                        });
+                    });
                 });
             });
     $.get(pathtoroot + "type-search-index.zip")
             .done(function() {
                 JSZipUtils.getBinaryContent(pathtoroot + 
"type-search-index.zip", function(e, data) {
-                    var zip = new JSZip();
-                    zip.load(data);
-                    typeSearchIndex = 
JSON.parse(zip.file("type-search-index.json").asText());
+                    JSZip.loadAsync(data).then(function(zip){
+                        
zip.file("type-search-index.json").async("text").then(function(content){
+                            typeSearchIndex = JSON.parse(content);
+                        });
+                    });
                 });
             });
     $.get(pathtoroot + "member-search-index.zip")
             .done(function() {
                 JSZipUtils.getBinaryContent(pathtoroot + 
"member-search-index.zip", function(e, data) {
-                    var zip = new JSZip();
-                    zip.load(data);
-                    memberSearchIndex = 
JSON.parse(zip.file("member-search-index.json").asText());
+                    JSZip.loadAsync(data).then(function(zip){
+                        
zip.file("member-search-index.json").async("text").then(function(content){
+                            memberSearchIndex = JSON.parse(content);
+                        });
+                    });
                 });
             });
     $.get(pathtoroot + "tag-search-index.zip")
             .done(function() {
                 JSZipUtils.getBinaryContent(pathtoroot + 
"tag-search-index.zip", function(e, data) {
-                    var zip = new JSZip();
-                    zip.load(data);
-                    tagSearchIndex = 
JSON.parse(zip.file("tag-search-index.json").asText());
+                    JSZip.loadAsync(data).then(function(zip){
+                        
zip.file("tag-search-index.json").async("text").then(function(content){
+                            tagSearchIndex = JSON.parse(content);
+                        });
+                    });
                 });
             });
     if (!moduleSearchIndex) {

Reply via email to