Remove regexp check in the define authorization regexp wizard page
authorBruno Sinou <bsinou@argeo.org>
Sun, 1 Jul 2012 11:35:12 +0000 (11:35 +0000)
committerBruno Sinou <bsinou@argeo.org>
Sun, 1 Jul 2012 11:35:12 +0000 (11:35 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@5407 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

eclipse/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/ChooseRightsPage.java

index 9c3572e18c7761e57147319b71fee708b9ad0b28..251ea6126c3615ffdff8b0c8a37deb277dedc1a0 100644 (file)
@@ -85,10 +85,11 @@ public class ChooseRightsPage extends WizardPage implements ModifyListener {
        protected String checkComplete() {
                String groupStr = groupNameTxt.getText();
                if (groupStr == null || "".equals(groupStr))
-                       return "Please enter a short technical name for the new repository.";
-               else if (!match(groupStr))
-                       return "Please use only alphanumerical chars for the short technical name.";
-
+                       return "Please enter the name of the corresponding group.";
+               // Remove regexp check for the time being.
+               // else if (!match(groupStr))
+               // return
+               // "Please use only alphanumerical chars for the short technical name.";
                return null;
        }
 }