]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - eclipse/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/ChooseRightsPage.java
Remove regexp check in the define authorization regexp wizard page
[gpl/argeo-slc.git] / 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;
        }
 }