-
Hello, there is a new project "yav" (Yet Another Validator - YAV) with a name very similar to my original project (the acronym is the same). I think that is not good and confusing for users. What do you think about?
Best regards.
2008-10-28 08:31:33 UTC in SourceForge.net
-
The problem persists. I wait your response.
Best regards,
federico.
2008-04-17 09:31:06 UTC in SourceForge.net
-
The problem came out 10 days ago at least, so I think there is no latency issue.
Best regards.
Federico.
2008-04-15 15:53:23 UTC in SourceForge.net
-
Hello,
excuse me for my poor english.
I think there is some bug in your download count system.
For example, go here: http://sourceforge.net/project/showfiles.php?group_id=133036
total downloads are: 8971 (in this moment)
BUT, go here: http://sourceforge.net/search/?type_of_search=soft&type_of_search=soft&words=yav
total downloads: 9296
with a difference of 300+ downloads.
I...
2008-04-15 15:14:48 UTC in SourceForge.net
-
Major release.
2008-03-15 19:02:23 UTC in yav
-
Hello,
I use WinSCP to commit my web content in my project (yav.sourceforge.net). All ok in the past, but since yesterday I have this problem:
"network error. connection reset by peer."
No changes in my configuration, so I don't understand this error. Could you help me?
My credentials:
host name --> shell.sourceforge.net
port --> 22
username --> f_crivellaro
private key...
2008-02-25 07:12:58 UTC in SourceForge.net
-
new: some rules are configurable with a regular expression
new: error messages are displayed in span tags
bug fix: some rules don't work with radio button
bug fix: 'notequal' doesn't work with checkbox
bug fix: 'highlight' doesn't work with multiple class names.
2008-02-01 10:25:10 UTC in yav
-
Yav 2.0 will prevent internal errors with a straightforward message.
2008-01-25 07:25:24 UTC in yav
-
This bugfix in yav 2.0 soon available.
If you don't want your form be submitted on yav internal errors you could try to submit your form in a custom function, something as:
function checkForm() {
var retval = false;
if (performCheck('formName', rules, 'classic')) retval= true;
return retval;
}
.
2008-01-24 20:16:59 UTC in yav
-
The next release will fix this bug. At the moment replace this code:
/////
} else if (myRule.ruleName=='notequal') {
if ( !el.checked || el.value!=myRule.comparisonValue ) {
/////
with:
/////
} else if (myRule.ruleName=='notequal') {
if ( el.checked || el.value==myRule.comparisonValue ) {
/////.
2008-01-17 15:32:33 UTC in yav