summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2013-05-07 10:17:45 +0000
committerRobert Gemmell <robbie@apache.org>2013-05-07 10:17:45 +0000
commitcc74814fd8106d63f2493989ca3e680e9651e89a (patch)
tree610977f1545850df7c5844bd9287514f641a2450 /qpid/java
parent8f5063250612445832fb2e9d41cb0b2916b114f9 (diff)
downloadqpid-python-cc74814fd8106d63f2493989ca3e680e9651e89a.tar.gz
QPID-4747: we no longer need the 'default' column in the authentication provider grid as we removed the functionality
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1479839 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js11
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){