You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2014/10/02 00:58:08 UTC

[1/3] git commit: Topology visualization should not block ui

Repository: storm
Updated Branches:
  refs/heads/master 3f2eec5ff -> 0390891b5


Topology visualization should not block ui


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/3c18fd76
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/3c18fd76
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/3c18fd76

Branch: refs/heads/master
Commit: 3c18fd76971f00a1c691d1c1b74f320115c4bc72
Parents: cfcedcf
Author: Kishor Patil <kp...@yahoo-inc.com>
Authored: Thu Sep 25 13:33:38 2014 -0500
Committer: Kishor Patil <kp...@yahoo-inc.com>
Committed: Thu Sep 25 13:33:38 2014 -0500

----------------------------------------------------------------------
 storm-core/src/ui/public/topology.html | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/3c18fd76/storm-core/src/ui/public/topology.html
----------------------------------------------------------------------
diff --git a/storm-core/src/ui/public/topology.html b/storm-core/src/ui/public/topology.html
index 9d53144..477d3b0 100644
--- a/storm-core/src/ui/public/topology.html
+++ b/storm-core/src/ui/public/topology.html
@@ -59,7 +59,9 @@
 <script>
 $(document).ajaxStop($.unblockUI);
 $(document).ajaxStart(function(){
-    $.blockUI({ message: '<img src="images/spinner.gif" /> <h3>Loading topology summary...</h3>'});
+    if ($("#topology-visualization").children().size() == 0) {
+        $.blockUI({ message: '<img src="images/spinner.gif" /> <h3>Loading topology summary...</h3>'});
+    }
 });
 $(document).ready(function() {
     var topologyId = $.url().param("id");


[3/3] git commit: update changelog for STORM-507

Posted by pt...@apache.org.
update changelog for STORM-507


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/0390891b
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/0390891b
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/0390891b

Branch: refs/heads/master
Commit: 0390891b5178919bc0b92ca27a0a25b314a7e3a6
Parents: a49aebb
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Wed Oct 1 15:58:01 2014 -0700
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Wed Oct 1 15:58:01 2014 -0700

----------------------------------------------------------------------
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/0390891b/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c6371a6..dc7ff8e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 0.9.3-incubating
+ * STORM-507: Topology visualization should not block ui
  * STORM-504: Class used by `repl` command is deprecated.
  * STORM-330: Implement storm exponential backoff stategy for netty client and curator
  * STORM-461: exit-process! does not always exit the process, but throws an exception


[2/3] git commit: Merge branch 'storm-507' of github.com:kishorvpatil/incubator-storm

Posted by pt...@apache.org.
Merge branch 'storm-507' of github.com:kishorvpatil/incubator-storm


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/a49aebb9
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/a49aebb9
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/a49aebb9

Branch: refs/heads/master
Commit: a49aebb930847c4e5b76228464758ec4125aea63
Parents: 3f2eec5 3c18fd7
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Wed Oct 1 15:56:43 2014 -0700
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Wed Oct 1 15:56:43 2014 -0700

----------------------------------------------------------------------
 storm-core/src/ui/public/topology.html | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------