You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kw...@apache.org on 2018/03/09 12:21:33 UTC

qpid-broker-j git commit: QPID-8014: [Broker-J] [Web Management Console] Prevent synchronous XMLHttpRequest warning logged to the console when loading the footer

Repository: qpid-broker-j
Updated Branches:
  refs/heads/master a3c59c14b -> cfeabcce7


QPID-8014: [Broker-J] [Web Management Console] Prevent synchronous XMLHttpRequest warning logged to the console when loading the footer


Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/cfeabcce
Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/cfeabcce
Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/cfeabcce

Branch: refs/heads/master
Commit: cfeabcce7efcefa361b4b2e583378dcf01b964bb
Parents: a3c59c1
Author: Keith Wall <kw...@apache.org>
Authored: Fri Mar 9 12:21:09 2018 +0000
Committer: Keith Wall <kw...@apache.org>
Committed: Fri Mar 9 12:21:09 2018 +0000

----------------------------------------------------------------------
 .../java/resources/js/qpid/management/store/pool/bonecp/show.js     | 1 -
 .../src/main/java/resources/js/qpid/common/footer.js                | 1 -
 .../src/main/java/resources/js/qpid/common/grid/GridUpdater.js      | 1 -
 .../management-http/src/main/java/resources/js/qpid/common/util.js  | 1 -
 .../resources/js/qpid/management/accesscontrolprovider/AclFile.js   | 1 -
 5 files changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/cfeabcce/broker-plugins/jdbc-provider-bone/src/main/java/resources/js/qpid/management/store/pool/bonecp/show.js
----------------------------------------------------------------------
diff --git a/broker-plugins/jdbc-provider-bone/src/main/java/resources/js/qpid/management/store/pool/bonecp/show.js b/broker-plugins/jdbc-provider-bone/src/main/java/resources/js/qpid/management/store/pool/bonecp/show.js
index b8fb30e..14e4ff0 100644
--- a/broker-plugins/jdbc-provider-bone/src/main/java/resources/js/qpid/management/store/pool/bonecp/show.js
+++ b/broker-plugins/jdbc-provider-bone/src/main/java/resources/js/qpid/management/store/pool/bonecp/show.js
@@ -30,7 +30,6 @@ define(["dojo/_base/xhr", "dojo/parser", "dojox/html/entities", "dojo/query", "d
             var that = this;
             xhr.get({
                 url: "store/pool/bonecp/show.html",
-                sync: true,
                 load: function (template)
                 {
                     containerNode.innerHTML = template;

http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/cfeabcce/broker-plugins/management-http/src/main/java/resources/js/qpid/common/footer.js
----------------------------------------------------------------------
diff --git a/broker-plugins/management-http/src/main/java/resources/js/qpid/common/footer.js b/broker-plugins/management-http/src/main/java/resources/js/qpid/common/footer.js
index 827181c..5814824 100644
--- a/broker-plugins/management-http/src/main/java/resources/js/qpid/common/footer.js
+++ b/broker-plugins/management-http/src/main/java/resources/js/qpid/common/footer.js
@@ -25,7 +25,6 @@ define(["dojo/_base/xhr", "dojo/query", "dojo/domReady!"], function (xhr, query)
         {
             xhr.get({
                 url: "footer.html",
-                sync: true,
                 load: function (data)
                 {
                     node.innerHTML = data;

http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/cfeabcce/broker-plugins/management-http/src/main/java/resources/js/qpid/common/grid/GridUpdater.js
----------------------------------------------------------------------
diff --git a/broker-plugins/management-http/src/main/java/resources/js/qpid/common/grid/GridUpdater.js b/broker-plugins/management-http/src/main/java/resources/js/qpid/common/grid/GridUpdater.js
index 1e83638..b291543 100644
--- a/broker-plugins/management-http/src/main/java/resources/js/qpid/common/grid/GridUpdater.js
+++ b/broker-plugins/management-http/src/main/java/resources/js/qpid/common/grid/GridUpdater.js
@@ -170,7 +170,6 @@ define(["dojo/_base/xhr",
                 var requestUrl = lang.isFunction(this.serviceUrl) ? this.serviceUrl() : this.serviceUrl;
                 xhr.get({
                         url: requestUrl,
-                        sync: true,
                         handleAs: "json"
                     })
                     .then(processData, util.xhrErrorHandler);

http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/cfeabcce/broker-plugins/management-http/src/main/java/resources/js/qpid/common/util.js
----------------------------------------------------------------------
diff --git a/broker-plugins/management-http/src/main/java/resources/js/qpid/common/util.js b/broker-plugins/management-http/src/main/java/resources/js/qpid/common/util.js
index 5de759f..948129b 100644
--- a/broker-plugins/management-http/src/main/java/resources/js/qpid/common/util.js
+++ b/broker-plugins/management-http/src/main/java/resources/js/qpid/common/util.js
@@ -529,7 +529,6 @@ define(["dojo/_base/xhr",
         {
             xhr.get({
                 url: htmlTemplateLocation,
-                sync: true,
                 load: function (template)
                 {
                     util.parse(containerNode, template, postParseCallback);

http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/cfeabcce/broker-plugins/management-http/src/main/java/resources/js/qpid/management/accesscontrolprovider/AclFile.js
----------------------------------------------------------------------
diff --git a/broker-plugins/management-http/src/main/java/resources/js/qpid/management/accesscontrolprovider/AclFile.js b/broker-plugins/management-http/src/main/java/resources/js/qpid/management/accesscontrolprovider/AclFile.js
index 6c1fbbb..c9064a1 100644
--- a/broker-plugins/management-http/src/main/java/resources/js/qpid/management/accesscontrolprovider/AclFile.js
+++ b/broker-plugins/management-http/src/main/java/resources/js/qpid/management/accesscontrolprovider/AclFile.js
@@ -75,7 +75,6 @@ define(["dojo/_base/xhr",
             this.name = aclProviderObj.name;
             xhr.get({
                 url: "accesscontrolprovider/showAclFile.html",
-                sync: true,
                 load: function (data)
                 {
                     node.innerHTML = data;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org