You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mc...@apache.org on 2015/01/13 21:32:14 UTC

[1/2] incubator-nifi git commit: NIFI-256: - Hiding the context menu when opening the shell if possible.

Repository: incubator-nifi
Updated Branches:
  refs/heads/develop 95b22a0ae -> b142d7a9b


NIFI-256:
- Hiding the context menu when opening the shell if possible.

Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/549c97d3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/549c97d3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/549c97d3

Branch: refs/heads/develop
Commit: 549c97d3f4f69a2f04e877bc7b74095fd4a5b0d3
Parents: 95b22a0
Author: Matt Gilman <ma...@gmail.com>
Authored: Tue Jan 13 15:17:58 2015 -0500
Committer: Matt Gilman <ma...@gmail.com>
Committed: Tue Jan 13 15:17:58 2015 -0500

----------------------------------------------------------------------
 .../web/nifi-web-ui/src/main/webapp/js/nf/nf-shell.js     | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/549c97d3/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-shell.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-shell.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-shell.js
index b0793a9..85ca0bf 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-shell.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-shell.js
@@ -53,6 +53,11 @@ nf.Shell = (function () {
          * @argument {boolean} canUndock        Whether or not the shell is undockable
          */
         showPage: function (uri, canUndock) {
+            // if the context menu is on this page, attempt to close
+            if (nf.Common.isDefinedAndNotNull(nf.ContextMenu)) {
+                nf.ContextMenu.hide();
+            }
+            
             return $.Deferred(function (deferred) {
                 var shell = $('#shell');
 
@@ -108,6 +113,11 @@ nf.Shell = (function () {
          * @argument {string} domId             The id of the element to show in the shell
          */
         showContent: function (domId) {
+            // if the context menu is on this page, attempt to close
+            if (nf.Common.isDefinedAndNotNull(nf.ContextMenu)) {
+                nf.ContextMenu.hide();
+            }
+            
             return $.Deferred(function (deferred) {
                 var content = $(domId);
                 if (content.length) {


[2/2] incubator-nifi git commit: NIFI-257: - Using the target URI as specified.

Posted by mc...@apache.org.
NIFI-257:
- Using the target URI as specified.

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

Branch: refs/heads/develop
Commit: b142d7a9bdecee96bcc7c1b920b3c2dbb748b5e9
Parents: 549c97d
Author: Matt Gilman <ma...@gmail.com>
Authored: Tue Jan 13 15:21:42 2015 -0500
Committer: Matt Gilman <ma...@gmail.com>
Committed: Tue Jan 13 15:21:42 2015 -0500

----------------------------------------------------------------------
 .../web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/b142d7a9/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js
index dc8ca31..5fc94e1 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-actions.js
@@ -167,7 +167,7 @@ nf.Actions = (function () {
                 var uri = selectionData.component.targetUri;
 
                 if (!nf.Common.isBlank(uri)) {
-                    window.open(encodeURI(uri + '/nifi'));
+                    window.open(encodeURI(uri));
                 } else {
                     nf.Dialog.showOkDialog({
                         dialogContent: 'No target URI defined.'