From 84023bc4ff86c86543e3010dbb60a98ffb162bdb Mon Sep 17 00:00:00 2001 From: Bruno Sinou Date: Sun, 1 Jul 2012 11:35:12 +0000 Subject: [PATCH] Remove regexp check in the define authorization regexp wizard page git-svn-id: https://svn.argeo.org/slc/trunk@5407 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- .../slc/client/ui/dist/wizards/ChooseRightsPage.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/eclipse/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/ChooseRightsPage.java b/eclipse/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/ChooseRightsPage.java index 9c3572e18..251ea6126 100644 --- a/eclipse/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/ChooseRightsPage.java +++ b/eclipse/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/ChooseRightsPage.java @@ -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; } } -- 2.39.2