X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=plugins%2Forg.argeo.slc.client.ui.dist%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2Fdist%2Fwizards%2FChooseRightsPage.java;h=2c4f477fba7c167b78cd295d309c860016058ed1;hb=3c03bb5b3b75ca4822c62930f3c4569fbdf96de2;hp=251ea6126c3615ffdff8b0c8a37deb277dedc1a0;hpb=651d33e13bfa9a7b46464be412023ee747e612e8;p=gpl%2Fargeo-slc.git diff --git a/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/ChooseRightsPage.java b/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/ChooseRightsPage.java index 251ea6126..2c4f477fb 100644 --- a/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/ChooseRightsPage.java +++ b/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/wizards/ChooseRightsPage.java @@ -1,7 +1,20 @@ +/* + * Copyright (C) 2007-2012 Argeo GmbH + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.argeo.slc.client.ui.dist.wizards; -import java.util.regex.Pattern; - import javax.jcr.security.Privilege; import org.eclipse.jface.wizard.WizardPage; @@ -22,7 +35,7 @@ public class ChooseRightsPage extends WizardPage implements ModifyListener { private Combo authorizationCmb; // Define acceptable chars for the technical name - private static Pattern p = Pattern.compile("^[A-Za-z0-9]+$"); + // private static Pattern p = Pattern.compile("^[A-Za-z0-9]+$"); // USABLE SHORTCUTS protected final static String[] validAuthType = { Privilege.JCR_READ, @@ -30,7 +43,7 @@ public class ChooseRightsPage extends WizardPage implements ModifyListener { public ChooseRightsPage() { super("Main"); - setTitle("Manange authorizations on the current workspace"); + setTitle("Manage authorizations on the current workspace"); } public void createControl(Composite parent) { @@ -67,9 +80,9 @@ public class ChooseRightsPage extends WizardPage implements ModifyListener { return authorizationCmb.getItem(authorizationCmb.getSelectionIndex()); } - private static boolean match(String s) { - return p.matcher(s).matches(); - } + // private static boolean match(String s) { + // return p.matcher(s).matches(); + // } public void modifyText(ModifyEvent event) { String message = checkComplete();