-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fileNamesCheck #19
base: master
Are you sure you want to change the base?
fileNamesCheck #19
Conversation
if (!dataFile.getFileName().matches("[^-_.A-Za-z0-9]")){ | ||
report.addMessage(new ValidationMessage(ValidationMessage.Type.WARNING, "POSIX compatible charset is NOT used in file name '" + actualFile.getName() + "'")); | ||
if (dataFile.getFileName().matches("[^-_.A-Za-z0-9]")){ | ||
report.addMessage(new ValidationMessage(ValidationMessage.Type.ERROR, "POSIX compatible charset is NOT used in file name '" + actualFile.getName() + "'")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How does this error appear to user in submission tool? if the user is going to see text then it should be a more easily understandable sentence like only .-_ are allowed in a filename
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this logic disallows user to submit files? or more changes are needed in submission tool code?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah makes sense will change it.
It will deny user to proceed |
users should be forced to download new version of the tool |
yeah i havent update submission tool yet , waiting for experimental type addition |
No description provided.