<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,36 @@
+/*
+ * Modification History:
+ *   06/19/2008 - JM
+ *    - Ported from prototype.js to YUI and added server-side validation.
+ *  01/15/2007 - JM
+ *    - Added mod10 function
+ *  03/08/2002 - JM
+ *    - Fixed bug associated with using in_array and replaced certain in_array w/ array_search
+ *  02/26/2002 - JM
+ *    - Converted from cfml to php
+ *  07/26/2001 - JM
+ *    - Added streamline feature so only needed validation is sent to browser.
+ *  06/30/2001 - JM
+ *    - Added variable name for function for more than one use on a page.
+ *  03/15/2001 - JM
+ *    - Added option to output debugging information.  Useful when the tag is throwing javascript errors.
+ *    - Added maxElementsToDisplay to keep alert box from becoming too large (vertically).
+ *  03/06/2001 - JM
+ *    - Added ability to validate for minimum and maximum checkboxes
+ *    - Added ability to validate using regular expressions
+ *  03/05/2001 - JM
+ *    - Added minimumlength, maximumlength, and exact length
+ *    - Modified theseFields to replace single quotes with &quot;\'&quot;
+ *  02/23/2001 - JM
+ *    - Added ability to validate against selection lists
+ *  02/20/2001 - JM
+ *    - Added ability to accept field names in addition to field numbers
+ *    - Modified javascript variable to be assigned form object instead of name/number of form
+ *  02/16/2001 - JM
+ *    - Added minimumdate and maximumdate validation types
+ *  02/15/2001 - JM
+ *    - Added minimumnumber and maximumnumber validation types
+*/
 var EpiForm = Class.create();
 EpiForm.prototype = 
 {</diff>
      <filename>htdocs/javascript/prototype/EpiForm.js</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,36 @@
+/*
+ * Modification History:
+ *   06/19/2008 - JM
+ *    - Ported from prototype.js to YUI and added server-side validation.
+ *  01/15/2007 - JM
+ *    - Added mod10 function
+ *  03/08/2002 - JM
+ *    - Fixed bug associated with using in_array and replaced certain in_array w/ array_search
+ *  02/26/2002 - JM
+ *    - Converted from cfml to php
+ *  07/26/2001 - JM
+ *    - Added streamline feature so only needed validation is sent to browser.
+ *  06/30/2001 - JM
+ *    - Added variable name for function for more than one use on a page.
+ *  03/15/2001 - JM
+ *    - Added option to output debugging information.  Useful when the tag is throwing javascript errors.
+ *    - Added maxElementsToDisplay to keep alert box from becoming too large (vertically).
+ *  03/06/2001 - JM
+ *    - Added ability to validate for minimum and maximum checkboxes
+ *    - Added ability to validate using regular expressions
+ *  03/05/2001 - JM
+ *    - Added minimumlength, maximumlength, and exact length
+ *    - Modified theseFields to replace single quotes with &quot;\'&quot;
+ *  02/23/2001 - JM
+ *    - Added ability to validate against selection lists
+ *  02/20/2001 - JM
+ *    - Added ability to accept field names in addition to field numbers
+ *    - Modified javascript variable to be assigned form object instead of name/number of form
+ *  02/16/2001 - JM
+ *    - Added minimumdate and maximumdate validation types
+ *  02/15/2001 - JM
+ *    - Added minimumnumber and maximumnumber validation types
+*/
 //YAHOO.widget.Logger.enableBrowserConsole();
 YAHOO.namespace(&quot;formValidator&quot;);
 YAHOO.formValidator = function()</diff>
      <filename>htdocs/javascript/yui/EpiForm.js</filename>
    </modified>
    <modified>
      <diff>@@ -254,36 +254,36 @@ class EpiFormServer
   }
 }
 /*
-	Modification History:
-    06/19/2008 - JM
-      - Ported from prototype.js to YUI and added server-side validation.
-    01/15/2007 - JM
-      - Added mod10 function
-     03/08/2002 - JM
-      - Fixed bug associated with using in_array and replaced certain in_array w/ array_search
-     02/26/2002 - JM
-      - Converted from cfml to php
-		07/26/2001 - JM
-			- Added streamline feature so only needed validation is sent to browser.
-		06/30/2001 - JM
-			- Added variable name for function for more than one use on a page.
-		03/15/2001 - JM
-			- Added option to output debugging information.  Useful when the tag is throwing javascript errors.
-			- Added maxElementsToDisplay to keep alert box from becoming too large (vertically).
-		03/06/2001 - JM
-			- Added ability to validate for minimum and maximum checkboxes
-			- Added ability to validate using regular expressions
-		03/05/2001 - JM
-			- Added minimumlength, maximumlength, and exact length
-			- Modified theseFields to replace single quotes with &quot;\'&quot;
-		02/23/2001 - JM
-			- Added ability to validate against selection lists
-		02/20/2001 - JM
-			- Added ability to accept field names in addition to field numbers
-			- Modified javascript variable to be assigned form object instead of name/number of form
-		02/16/2001 - JM
-			- Added minimumdate and maximumdate validation types
-		02/15/2001 - JM
-			- Added minimumnumber and maximumnumber validation types
- */
+ * Modification History:
+ *   06/19/2008 - JM
+ *    - Ported from prototype.js to YUI and added server-side validation.
+ *  01/15/2007 - JM
+ *    - Added mod10 function
+ *  03/08/2002 - JM
+ *    - Fixed bug associated with using in_array and replaced certain in_array w/ array_search
+ *  02/26/2002 - JM
+ *    - Converted from cfml to php
+ *  07/26/2001 - JM
+ *    - Added streamline feature so only needed validation is sent to browser.
+ *  06/30/2001 - JM
+ *    - Added variable name for function for more than one use on a page.
+ *  03/15/2001 - JM
+ *    - Added option to output debugging information.  Useful when the tag is throwing javascript errors.
+ *    - Added maxElementsToDisplay to keep alert box from becoming too large (vertically).
+ *  03/06/2001 - JM
+ *    - Added ability to validate for minimum and maximum checkboxes
+ *    - Added ability to validate using regular expressions
+ *  03/05/2001 - JM
+ *    - Added minimumlength, maximumlength, and exact length
+ *    - Modified theseFields to replace single quotes with &quot;\'&quot;
+ *  02/23/2001 - JM
+ *    - Added ability to validate against selection lists
+ *  02/20/2001 - JM
+ *    - Added ability to accept field names in addition to field numbers
+ *    - Modified javascript variable to be assigned form object instead of name/number of form
+ *  02/16/2001 - JM
+ *    - Added minimumdate and maximumdate validation types
+ *  02/15/2001 - JM
+ *    - Added minimumnumber and maximumnumber validation types
+*/
 ?&gt;</diff>
      <filename>php/EpiForm.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>ede775f235a6dcb38f667837b9caa4979a0458b0</id>
    </parent>
  </parents>
  <author>
    <name>Jaisen Mathai</name>
    <email>jaisen@jmathai.com</email>
  </author>
  <url>http://github.com/jmathai/epicode/commit/1aa129df9e68814cfd2ba94e371e3d2cc387fa95</url>
  <id>1aa129df9e68814cfd2ba94e371e3d2cc387fa95</id>
  <committed-date>2008-09-05T20:58:11-07:00</committed-date>
  <authored-date>2008-09-05T20:58:11-07:00</authored-date>
  <message>Not sure why the last commit didn't update the files but here goes again.</message>
  <tree>e44410986f84061eef5a43a7c7bee7784671daab</tree>
  <committer>
    <name>Jaisen Mathai</name>
    <email>jaisen@jmathai.com</email>
  </committer>
</commit>
