diff options
author | Alex Rudyy <orudyy@apache.org> | 2014-08-01 18:08:31 +0000 |
---|---|---|
committer | Alex Rudyy <orudyy@apache.org> | 2014-08-01 18:08:31 +0000 |
commit | 400d9be252bcc666fe43b1be582f34202faf23f7 (patch) | |
tree | 5fbf8cc572fa43c1aa319d2fb55edd845d8f10ba /qpid/java/broker-plugins/jdbc-provider-bone | |
parent | 290b63ca0be3e72432208c01887ac928ff7b8fe5 (diff) | |
download | qpid-python-400d9be252bcc666fe43b1be582f34202faf23f7.tar.gz |
QPID-5928: [Java Broker] Add UI into web management console for editing of virtual host nodes and virtual hosts
The work is done by Andrew MacBean and Alex Rudyy.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1615187 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker-plugins/jdbc-provider-bone')
3 files changed, 65 insertions, 0 deletions
diff --git a/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/js/qpid/management/store/pool/bonecp/edit.js b/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/js/qpid/management/store/pool/bonecp/edit.js new file mode 100644 index 0000000000..46345bca58 --- /dev/null +++ b/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/js/qpid/management/store/pool/bonecp/edit.js @@ -0,0 +1,55 @@ +/* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + */ +define(["dojo/_base/xhr", + "dojo/dom", + "dojo/dom-construct", + "dojo/_base/window", + "dijit/registry", + "dojo/parser", + "dojo/domReady!"], + function (xhr, dom, construct, win, registry, parser) { + var fieldNames = ["maxConnectionsPerPartition", "minConnectionsPerPartition", "partitionCount"]; + return { + show: function(data) { + var that = this; + xhr.get({url: "virtualhost/store/pool/bonecp/add.html", + sync: true, + load: function(template) { + for ( var i = 0 ; i < fieldNames.length; i++ ) + { + var widgetName = fieldNames[i]; + var widget = registry.byId("formAddVirtualHost.qpid.jdbcstore.bonecp." + widgetName); + if (widget) + { + widget.destroyRecursive(); + } + } + data.containerNode.innerHTML = template; + parser.parse(data.containerNode); + for ( var i = 0 ; i < fieldNames.length; i++ ) + { + var widgetName = fieldNames[i]; + registry.byId("formAddVirtualHost.qpid.jdbcstore.bonecp." + widgetName).set("value", data.data.context["qpid.jdbcstore.bonecp." + widgetName]); + } + }}); + } + }; + }); diff --git a/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/virtualhost/store/pool/bonecp/add.html b/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/virtualhost/store/pool/bonecp/add.html index 39fc3f617f..df35a3cce0 100644 --- a/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/virtualhost/store/pool/bonecp/add.html +++ b/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/virtualhost/store/pool/bonecp/add.html @@ -14,6 +14,9 @@ ~ See the License for the specific language governing permissions and ~ limitations under the License. --> +<div class="formBox" style="clear:both"> +<fieldset> +<legend>BoneCP Settings</legend> <table class="tableContainer-table tableContainer-table-horiz"> <tr> @@ -54,3 +57,5 @@ </tr> </table> +</fieldset> +</div>
\ No newline at end of file diff --git a/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/virtualhostnode/store/pool/bonecp/add.html b/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/virtualhostnode/store/pool/bonecp/add.html index dbaf8ea4ee..e4334e395f 100644 --- a/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/virtualhostnode/store/pool/bonecp/add.html +++ b/qpid/java/broker-plugins/jdbc-provider-bone/src/main/java/resources/virtualhostnode/store/pool/bonecp/add.html @@ -14,6 +14,9 @@ ~ See the License for the specific language governing permissions and ~ limitations under the License. --> +<div class="formBox" style="clear:both"> +<fieldset> +<legend>BoneCP Settings</legend> <table class="tableContainer-table tableContainer-table-horiz"> <tr> @@ -54,3 +57,5 @@ </tr> </table> +</fieldset> +</div>
\ No newline at end of file |