~ubuntu-branches/ubuntu/oneiric/libcommons-validator-java/oneiric

« back to all changes in this revision

Viewing changes to src/test/org/apache/commons/validator/EmailTest-config.xml

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath, Kumar Appaiah, Varun Hiremath
  • Date: 2007-09-16 00:57:46 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070916005746-r5xwnjm12ng9fbdf
Tags: 1:1.3.1-1
[ Kumar Appaiah ]
* New upstream release.
* New uploaders: Varun Hiremath and Kumar Appaiah, removed Wolfgang Baer
* Use upstream's conf directory for configuration and DTDs.
* Use a custom ant.properties to avoid downloads.
* Use DEB_UPSTREAM_VERSION in rules instead of versions in rules for symlinking.

[ Varun Hiremath ]
* debian/control:
  + Add rhino to Build-Depends-Indep and Depends.
  + Add XS-Vcs-{Svn, Browser} headers.
  + Depend on java-gcj-compat instead of kaffe.
* debian/compat: switch to 5
* Remove debian/patches and remove RELEASE-NOTES.txt in debian/rules.
* Add debian/orig-tar.sh to remove CRLF line terminators from upstream files.
* debian/rules: implement get-orig-source
* debian/watch: switch to version 3 and call debian/orig-tar.sh

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
 Licensed to the Apache Software Foundation (ASF) under one or more
 
3
 contributor license agreements.  See the NOTICE file distributed with
 
4
 this work for additional information regarding copyright ownership.
 
5
 The ASF licenses this file to You under the Apache License, Version 2.0
 
6
 (the "License"); you may not use this file except in compliance with
 
7
 the License.  You may obtain a copy of the License at
 
8
 
 
9
      http://www.apache.org/licenses/LICENSE-2.0
 
10
 
 
11
 Unless required by applicable law or agreed to in writing, software
 
12
 distributed under the License is distributed on an "AS IS" BASIS,
 
13
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
 See the License for the specific language governing permissions and
 
15
 limitations under the License.
 
16
-->
 
17
<!DOCTYPE form-validation PUBLIC
 
18
     "-//Apache Software Foundation//DTD Commons Validator Rules Configuration 1.3.0//EN"
 
19
     "http://jakarta.apache.org/commons/dtds/validator_1_3_0.dtd">
 
20
     
 
21
<form-validation>
 
22
   <global>
 
23
      <validator name="email"
 
24
                 classname="org.apache.commons.validator.TestValidator"
 
25
                 method="validateEmail"
 
26
                 methodParams="java.lang.Object,org.apache.commons.validator.Field"
 
27
                 msg=""/>
 
28
   </global>
 
29
   <formset>
 
30
      <form name="emailForm">
 
31
         <field property="value" depends="email"/>
 
32
      </form>
 
33
   </formset>   
 
34
</form-validation>