You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jb...@apache.org on 2008/12/19 15:41:04 UTC

svn commit: r728035 - /geronimo/server/branches/2.1/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/repository/normal.jsp

Author: jbohn
Date: Fri Dec 19 06:41:04 2008
New Revision: 728035

URL: http://svn.apache.org/viewvc?rev=728035&view=rev
Log:
GERONIMO-4473 correct message

Modified:
    geronimo/server/branches/2.1/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/repository/normal.jsp

Modified: geronimo/server/branches/2.1/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/repository/normal.jsp
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.1/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/repository/normal.jsp?rev=728035&r1=728034&r2=728035&view=diff
==============================================================================
--- geronimo/server/branches/2.1/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/repository/normal.jsp (original)
+++ geronimo/server/branches/2.1/plugins/console/console-base-portlets/src/main/webapp/WEB-INF/view/repository/normal.jsp Fri Dec 19 06:41:04 2008
@@ -48,16 +48,16 @@
       alert("File, Group, Artifact, Version, and Type are all required fields");
       return false;
    } else if (document.<portlet:namespace/>fileSelect.group.value.match(illegalChars)) {
-       alert("Group contains invalid characters - must only contain letters, numbers, and underscores");
+       alert("Group contains invalid characters");
        return false;
    } else if (document.<portlet:namespace/>fileSelect.artifact.value.match(illegalChars)) {
-       alert("Artifact contains invalid characters - must only contain letters, numbers, and underscores");
+       alert("Artifact contains invalid characters");
        return false;
    } else if (document.<portlet:namespace/>fileSelect.version.value.match(illegalChars)) {
-       alert("Version contains invalid characters - must only contain letters, numbers, and underscores");
+       alert("Version contains invalid characters");
        return false;
    } else if (document.<portlet:namespace/>fileSelect.fileType.value.match(illegalChars)) {
-       alert("File type contains invalid characters - must only contain letters, numbers, and underscores");
+       alert("File type contains invalid characters");
        return false;
    }
 }