blob: d8c11ea2ae28c821b7b213b75725a12eb84d370b [file] [log] [blame]
<?xml version="1.0"?>
<!--
Copyright 2005 The Apache Software Foundation
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.
-->
<!DOCTYPE script PUBLIC
"-//Apache Software Foundation//Tapestry Script Specification 3.0//EN"
"http://tapestry.apache.org/dtd/Script_3_0.dtd">
<!--
Creates a script for validating that a field is required and/or has a minimum
field length.
Input symbols:
field, form, validator: As normal for a validation script.
requiredMessage: Message to display if the field is required yet blank.
minimumLengthMessage: Message to display if the field length is too short.
-->
<script>
<input-symbol key="field" class="org.apache.tapestry.valid.ValidField" required="yes"/>
<input-symbol key="form" class="org.apache.tapestry.IForm" required="yes"/>
<input-symbol key="validator" class="org.apache.tapestry.valid.EmailValidator" required="yes"/>
<input-symbol key="requiredMessage" class="java.lang.String"/>
<input-symbol key="minimumLengthMessage" class="java.lang.String"/>
<input-symbol key="emailFormatMessage" class="java.lang.String"/>
<let key="function" unique="yes">
validate_${field.name}
</let>
<body>
function ${function}(event)
{
var field = dojo.byId("${field.name}");
strValue = field.value.replace(/ /g,"");
field.value = strValue;
<if expression="validator.required">
if (strValue.length == 0)
{
Tapestry.invalid_field(field, "${requiredMessage}");
dojo.event.browser.stopEvent(event);
return;
}
</if>
<if-not expression="validator.required">
if (strValue.length == 0)
return;
</if-not>
<if expression="validator.minimumLength">
if (strValue.length &lt; ${validator.minimumLength})
{
Tapestry.invalid_field(field, "${minimumLengthMessage}");
dojo.event.browser.stopEvent(event);
return;
}
</if>
atIndex = strValue.indexOf("@");
if ((atIndex == -1) || (atIndex == 0) || (atIndex == strValue.length -1)) {
Tapestry.invalid_field(field, "${emailFormatMessage}");
dojo.event.browser.stopEvent(event);
}
}
</body>
<initialization>
Tapestry.onsubmit('${form.name}', ${function});
</initialization>
</script>