diff options
author | Robert Gemmell <robbie@apache.org> | 2013-05-07 10:31:30 +0000 |
---|---|---|
committer | Robert Gemmell <robbie@apache.org> | 2013-05-07 10:31:30 +0000 |
commit | 5de896a95f63013ca31a1900a8eee104f5c3da33 (patch) | |
tree | 28b63a9788ccd322eacaa1903635390918066e54 | |
parent | c015bffd9e80ed4982afbb9024d010cc730b0a8a (diff) | |
download | qpid-python-5de896a95f63013ca31a1900a8eee104f5c3da33.tar.gz |
QPID-4747: we no longer need the 'default' column in the authentication provider grid as we removed the functionality
merged from trunk r1479839
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/0.22@1479843 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js index 9074c1b43c..7a338476c4 100644 --- a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js +++ b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js @@ -389,7 +389,7 @@ define(["dojo/_base/xhr", that.brokerUpdater, that.brokerUpdater.vhostsGrid.grid, "rest/virtualhost", - "Deletion of virtual will delete the message store data.\n\n Are you sure you want to delete virtual host"); + "Deletion of virtual host will delete the message store data.\n\n Are you sure you want to delete virtual host"); } ); @@ -576,19 +576,14 @@ define(["dojo/_base/xhr", that.authenticationProvidersGrid = new UpdatableStore(that.brokerData.authenticationproviders, query(".broker-authentication-providers")[0], - [ { name: "Name", field: "name", width: "30%"}, + [ { name: "Name", field: "name", width: "40%"}, { name: "State", field: "state", width: "20%"}, { name: "Type", field: "type", width: "20%"}, { name: "User Management", field: "type", width: "20%", formatter: function(val){ return "<input type='radio' disabled='disabled' "+(util.isProviderManagingUsers(val)?"checked='checked'": "")+" />"; } - }, - { name: "Default", field: "name", width: "10%", - formatter: function(val){ - return "<input type='radio' disabled='disabled' "+(val == that.brokerData.defaultAuthenticationProvider ? "checked='checked'": "")+" />"; - } - } + } ], function(obj) { connect.connect(obj.grid, "onRowDblClick", obj.grid, function(evt){ |