martinc     2002/10/06 16:57:50

  Modified:    validator project.xml
  Added:       validator/xdocs index.xml
  Log:
  Add basic Maven-generated web site; fix some issues in project.xml.
  
  Revision  Changes    Path
  1.3       +30 -4     jakarta-commons/validator/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/validator/project.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.xml       25 Jul 2002 02:36:46 -0000      1.2
  +++ project.xml       6 Oct 2002 23:57:50 -0000       1.3
  @@ -7,17 +7,41 @@
     <currentVersion>1.0-dev</currentVersion>
     <inceptionYear>2002</inceptionYear>
     <gumpRepositoryId>jakarta</gumpRepositoryId>
  -  <shortDescription>Commons Database Connection Pooling</shortDescription>
  +  <shortDescription>Commons Validator</shortDescription>
   
     <description>
  -    Commons Database Connection Pooling
  +    Commons Validator component.
     </description>
     
  +  <url>http://jakarta.apache.org/commons/validator/</url>
  +  <issueTrackingUrl>http://nagoya.apache.org/bugzilla/</issueTrackingUrl>
  +  <siteAddress>jakarta.apache.org</siteAddress>
  +  <siteDirectory>/www/jakarta.apache.org/commons/validator/</siteDirectory>
  +  
<distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/validator/</distributionDirectory>
  +
     <developers>
       <developer>
  +      <name>David Winterfeldt</name>
  +      <id>dwinterfeldt</id>
  +      <email>[EMAIL PROTECTED]</email>
  +      <organization></organization>
  +    </developer>
  +    <developer>
         <name>Craig McClanahan</name>
  -      <id></id>
  -      <email></email>
  +      <id>craigmcc</id>
  +      <email>[EMAIL PROTECTED]</email>
  +      <organization></organization>
  +    </developer>
  +    <developer>
  +      <name>James Turner</name>
  +      <id>turner</id>
  +      <email>[EMAIL PROTECTED]</email>
  +      <organization></organization>
  +    </developer>
  +    <developer>
  +      <name>Martin Cooper</name>
  +      <id>martinc</id>
  +      <email>[EMAIL PROTECTED]</email>
         <organization></organization>
       </developer>
     </developers>
  @@ -62,6 +86,8 @@
     </dependencies>
   
     <build>
  +
  +    <nagEmailAddress>[EMAIL PROTECTED]</nagEmailAddress>
   
       <sourceDirectory>src/share</sourceDirectory>
   
  
  
  
  1.1                  jakarta-commons/validator/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <document>
  
    <properties>
      <title>Home</title>
      <author email="[EMAIL PROTECTED]">Martin Cooper</author>
    </properties>
  
    <body>
  
      <section name="Introduction">
  
        <p>
          A common issue when receiving data either electronically or from 
          user input is verifying the integrity of the data. This work is 
          repetitive and becomes even more complicated when different sets 
          of validation rules need to be applied to the same set of data based 
          on locale for example. Error messages may also vary by locale.  
          This package attempts to address some of these issues and 
          speed development and maintenance of validation rules.
        </p>
  
        <p>
          In order to use the Validator, the following basic steps are required:
          <ul>
            <li>
              Create a new instance of the
              <code>org.apache.commons.validator.Validator</code> class. Currently
              Validator instances may be safely reused if the current
              ValidatorResources are the same, as long as you have completed any
              previous validation, and you do not try to utilize a particular
              Validator instance from more than one thread at a time.
            </li>
            <li>
              Add any resources needed to perform the validations, such as the
              JavaBean to validate.
            </li>
            <li>
              Call the validate method on
              <code>org.apache.commons.validator.Validator</code>.
            </li>
          </ul>
        </p>
  
        <p>
          For more information, see the <a href="apidocs/index.html">JavaDocs</a>.
        </p>
  
      </section>
  
    </body>
  
  </document>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to