Fixed error message

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/statistical-algorithms-importer@158708 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2017-11-20 14:15:00 +00:00
parent a805217072
commit 4bf8783918
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ public class ProjectInfoPanel extends ContentPanel {
algorithmName = new TextField(); algorithmName = new TextField();
algorithmName.setAllowBlank(false); algorithmName.setAllowBlank(false);
algorithmName.addValidator( algorithmName.addValidator(
new RegExValidator("^[a-zA-Z0-9_]*$", "Attention only characters a-z,A-Z,0-9 are allowed")); new RegExValidator("^[a-zA-Z0-9_]*$", "Attention only characters a-z,A-Z,0-9 and _ are allowed"));
algorithmName.addValidator(new RegExValidator("^((?!(TEST|test|Test)).)*$", algorithmName.addValidator(new RegExValidator("^((?!(TEST|test|Test)).)*$",
"Attention the words that contain TEST are invalid names")); "Attention the words that contain TEST are invalid names"));
@ -87,7 +87,7 @@ public class ProjectInfoPanel extends ContentPanel {
algorithmCategory.setAllowBlank(false); algorithmCategory.setAllowBlank(false);
algorithmCategory.setEmptyText("Enter description..."); algorithmCategory.setEmptyText("Enter description...");
algorithmCategory.addValidator( algorithmCategory.addValidator(
new RegExValidator("^[a-zA-Z0-9_]*$", "Attention only characters a-z,A-Z,0-9 are allowed")); new RegExValidator("^[a-zA-Z0-9_]*$", "Attention only characters a-z,A-Z,0-9 and _ are allowed"));
algorithmCategory.addValidator(new RegExValidator("^((?!(TEST|test|Test)).)*$", algorithmCategory.addValidator(new RegExValidator("^((?!(TEST|test|Test)).)*$",
"Attention the words that contain TEST are invalid names")); "Attention the words that contain TEST are invalid names"));
algorithmCategory.addValidator(new MaxLengthValidator(32)); algorithmCategory.addValidator(new MaxLengthValidator(32));