blob: 6bbdb8450f9d718e5c46d6ed6ff0605a0613ace5 [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.
urlFormatMessage: Message to display if the field value is not a valid URL.
urlRegexpProtocols: The regexp to check that the protocol is one of the allowed protocols.
urlDisallowedProtocolMessage: Message to display if the field value does not use an allowed protocol.
-->
<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.UrlValidator" required="yes" />
<input-symbol key="requiredMessage" class="java.lang.String" />
<input-symbol key="minimumLengthMessage" class="java.lang.String" />
<input-symbol key="urlFormatMessage" class="java.lang.String" />
<input-symbol key="urlRegexpProtocols" class="java.lang.String" />
<input-symbol key="urlDisallowedProtocolMessage" class="java.lang.String" />
<let key="function" unique="yes">validate_${field.name}</let>
<body>
<unique><![CDATA[
function regexpTestUrl(sUrl) {
var regexp = /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/
return regexp.test(sUrl);
}
]]></unique>
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 true;
</if-not>
<if expression="validator.minimumLength">
if (strValue.length &lt; ${validator.minimumLength}) {
Tapestry.invalid_field(field, "${minimumLengthMessage}");
dojo.event.browser.stopEvent(event);
return;
}
</if>
if(!regexpTestUrl(strValue)) {
Tapestry.invalid_field(field, "${urlFormatMessage}");
dojo.event.browser.stopEvent(event);
return;
}
<if expression="null != urlRegexpProtocols">
var protoRegExp = ${urlRegexpProtocols};
if(!protoRegExp.test(strValue)) {
Tapestry.invalid_field(field, "${urlDisallowedProtocolMessage}");
dojo.event.browser.stopEvent(event);
return;
}
</if>
}
</body>
<initialization>
Tapestry.onsubmit('${form.name}', ${function});
</initialization>
</script>