From a8f5d8345278d27ddf5325d3977e460b86b6275f Mon Sep 17 00:00:00 2001
From: ludovicp <ludovicp@localhost>
Date: Tue, 27 Apr 2010 20:56:50 +0000
Subject: [PATCH] Fixing several issues with the Control Panel, the QuickSetup, Core server and Replication. Also improves unit, functional tests. More specifically this commit resolves the following open issues: 4385 - NPE when using ExtensibleMatch filter without a matching rule 4521 - dynamic lookup in attribut selection when selecting the sort order attribut while defining VLV index 4531 - Control Panel creates virtual static groups using groupOfURLs as objectclass 4533 - NullPointerException when configuring replication between 2 OpenDS 4539 - DSML Gateway - jaxb.properties Exception
---
opends/src/guitools/org/opends/guitools/controlpanel/ui/AbstractVLVIndexPanel.java | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/opends/src/guitools/org/opends/guitools/controlpanel/ui/AbstractVLVIndexPanel.java b/opends/src/guitools/org/opends/guitools/controlpanel/ui/AbstractVLVIndexPanel.java
index 92dcd11..3040957 100644
--- a/opends/src/guitools/org/opends/guitools/controlpanel/ui/AbstractVLVIndexPanel.java
+++ b/opends/src/guitools/org/opends/guitools/controlpanel/ui/AbstractVLVIndexPanel.java
@@ -72,6 +72,7 @@
import org.opends.guitools.controlpanel.ui.renderer.CustomListCellRenderer;
import org.opends.guitools.controlpanel.ui.renderer.IndexComboBoxCellRenderer;
import org.opends.guitools.controlpanel.ui.renderer.VLVSortOrderRenderer;
+import org.opends.guitools.controlpanel.util.LowerCaseComparator;
import org.opends.guitools.controlpanel.util.Utilities;
import org.opends.messages.Message;
import org.opends.server.admin.DefinedDefaultBehaviorProvider;
@@ -267,15 +268,18 @@
/**
* The list of standard attribute names.
*/
- protected TreeSet<String> standardAttrNames = new TreeSet<String>();
+ protected TreeSet<String> standardAttrNames =
+ new TreeSet<String>(new LowerCaseComparator());
/**
* The list of configuration attribute names.
*/
- protected TreeSet<String> configurationAttrNames = new TreeSet<String>();
+ protected TreeSet<String> configurationAttrNames =
+ new TreeSet<String>(new LowerCaseComparator());
/**
* The list of custom attribute names.
*/
- protected TreeSet<String> customAttrNames = new TreeSet<String>();
+ protected TreeSet<String> customAttrNames =
+ new TreeSet<String>(new LowerCaseComparator());
private int defaultVLVEntryLimitValue;
{
--
Gitblit v1.10.0