You are viewing a plain text version of this content. The canonical link for it is here.
Posted to regexp-dev@jakarta.apache.org by vg...@apache.org on 2003/05/02 03:04:22 UTC

cvs commit: jakarta-regexp/docs RETest.txt changes.html index.html

vgritsenko    2003/05/01 18:04:22

  Modified:    docs     RETest.txt changes.html index.html
  Log:
  update docs
  
  Revision  Changes    Path
  1.8       +213 -1    jakarta-regexp/docs/RETest.txt
  
  Index: RETest.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-regexp/docs/RETest.txt,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- RETest.txt	13 Dec 2002 18:40:16 -0000	1.7
  +++ RETest.txt	2 May 2003 01:04:22 -0000	1.8
  @@ -1066,4 +1066,216 @@
   [a-z]{0,3}
   123abcdefg123
   YES
  -abc
  +
  +#175
  +ab{0,1}a
  +aa
  +YES
  +aa
  +
  +#176
  +ab{0,1}a
  +aba
  +YES
  +aba
  +
  +#177
  +ab{0,1}a
  +abba
  +NO
  +
  +#178
  +ab{0,2}a
  +aa
  +YES
  +aa
  +
  +#179
  +ab{0,2}a
  +aba
  +YES
  +aba
  +
  +#180
  +ab{0,2}a
  +abba
  +YES
  +abba
  +
  +#181
  +ab{0,2}a
  +abbba
  +NO
  +
  +#182
  +ab{1,1}a
  +aa
  +NO
  +
  +#183
  +ab{1,1}a
  +aba
  +YES
  +aba
  +
  +#184
  +ab{1,1}a
  +abba
  +NO
  +
  +#185
  +ab{1,2}a
  +aa
  +NO
  +
  +#186
  +ab{1,2}a
  +aba
  +YES
  +aba
  +
  +#187
  +ab{1,2}a
  +abba
  +YES
  +abba
  +
  +#188
  +ab{1,2}a
  +abbba
  +NO
  +
  +#189
  +ab{0,}a
  +aa
  +YES
  +aa
  +
  +#190
  +ab{0,}a
  +aba
  +YES
  +aba
  +
  +#191
  +ab{0,}a
  +abba
  +YES
  +abba
  +
  +#192
  +ab{1,}a
  +aa
  +NO
  +
  +#193
  +ab{1,}a
  +aba
  +YES
  +aba
  +
  +#194
  +ab{1,}a
  +abba
  +YES
  +abba
  +
  +#195
  +ab{1}a
  +aa
  +NO
  +
  +#196
  +ab{1}a
  +aba
  +YES
  +aba
  +
  +#197
  +ab{1}a
  +abba
  +NO
  +
  +#198
  +ab{0}a
  +aa
  +YES
  +aa
  +
  +#199
  +ab{0}a
  +aba
  +NO
  +
  +#200
  +ab{2}a
  +aa
  +NO
  +
  +#201
  +ab{2}a
  +aba
  +NO
  +
  +#202
  +ab{2}a
  +abba
  +YES
  +abba
  +
  +#203
  +ab{2}a
  +abbba
  +NO
  +
  +#204
  +[ \-]
  + -
  +YES
  + -
  +
  +#205
  +[a-z0-9\.\-]+
  +{regexp-1.2}
  +YES
  +regexp-1.2
  +
  +#206
  +[a-z0-9\-\.]+
  +{regexp-1.2}
  +YES
  +regexp-1.2
  +
  +#207
  +[a-z\-0-9\.]+
  +{regexp-1.2}
  +YES
  +regexp-1.2
  +
  +#208
  +\w+
  +a_b
  +YES
  +a_b
  +
  +#209
  +([0123])??((((1st)|(2nd))|(3rd))|(\dth))
  +1st
  +YES
  +1st
  +
  +1st
  +1st
  +1st
  +1st
  +
  +#210
  +[^\s\]'<>(),;:\.\[]
  +-
  +YES
  +-
  +
  +#211
  +^\(?(\d{3})\)?[\- ]?(\d{3})[\- ]?(\d{4})$
  +(425) 576+1202
  +NO
  
  
  
  1.6       +33 -1     jakarta-regexp/docs/changes.html
  
  Index: changes.html
  ===================================================================
  RCS file: /home/cvs/jakarta-regexp/docs/changes.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- changes.html	3 Dec 2002 21:34:55 -0000	1.5
  +++ changes.html	2 May 2003 01:04:22 -0000	1.6
  @@ -5,6 +5,7 @@
           
   <!-- start the processing -->
       <!-- ====================================================================== -->
  +    <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
       <!-- Main Page Section -->
       <!-- ====================================================================== -->
       <html>
  @@ -13,9 +14,12 @@
   
                                                       <meta name="author" value="Jon S. Stevens">
               <meta name="email" value="jon@latchkey.com">
  +                                        <meta name="author" value="Vadim Gritsenko">
  +            <meta name="email" value="vgritsenko@apache.org">
               
              
                                       
  +                        
               <title>Jakarta Regexp - Regexp Changes</title>
           </head>
   
  @@ -78,6 +82,34 @@
   </p>
                                                   <h3>Version 1.3-dev</h3>
                                                   <ul>
  +<li>Fixed Bug 
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5212">5212</a>, aka
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14954">14954</a>:
  +    A bug caused by '-' in character class definition ('[...]') (VG)</li>
  +<li>Fixed Bug 
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4057">4057</a>:
  +    \w does not match underscore (VG)</li>
  +<li>Fixed Bug 
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1030">1030</a>, aka
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10893">10893</a>:
  +    {n.m} notation work incorrect if n=0 (VG)</li>
  +<li>Re-visited Bug
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3879">3879</a>:
  +    Expressions using {0,n} match 0 to n+1 times instead of 0 to n times.
  +    Now, expression "[a-z]{0,3}" matches "123abcdefg123" resulting in ""
  +    (empty string).(VG)</li>
  +<li>Fixed Bug 
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=306">306</a>:
  +    Why is the RE class not Serializable? (VG)</li>
  +
  +<li>Applied patches for Bug 
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3879">3879</a>. (JSS)</li>
  +<li>Applied patches for Bug 
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7288">7288</a>. (JSS)</li>
  +<li>Applied patches for Bug 
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=986">986</a>. (JSS)</li>
  +<li>Applied patches for Bug 
  +    <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3877">3877</a>. (JSS)</li>
   <li>Applied patches for Bug 
       <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8467">8467</a>. (JSS)</li>
   <li>Fixed RE.grep() documentation to reflect a String[] is returned
  @@ -137,7 +169,7 @@
                   </td></tr>
                   <tr><td colspan="2">
                       <div align="center"><font color="#525D76" size="-1"><em>
  -                    Copyright &#169; 1999-2002, Apache Software Foundation
  +                    Copyright &#169; 1999-2003, Apache Software Foundation
                       </em></font></div>
                   </td></tr>
               </table>
  
  
  
  1.6       +3 -1      jakarta-regexp/docs/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/jakarta-regexp/docs/index.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- index.html	3 Dec 2002 21:34:55 -0000	1.5
  +++ index.html	2 May 2003 01:04:22 -0000	1.6
  @@ -5,6 +5,7 @@
           
   <!-- start the processing -->
       <!-- ====================================================================== -->
  +    <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
       <!-- Main Page Section -->
       <!-- ====================================================================== -->
       <html>
  @@ -16,6 +17,7 @@
               
              
                                       
  +                        
               <title>Jakarta Regexp - Regexp</title>
           </head>
   
  @@ -133,7 +135,7 @@
                   </td></tr>
                   <tr><td colspan="2">
                       <div align="center"><font color="#525D76" size="-1"><em>
  -                    Copyright &#169; 1999-2002, Apache Software Foundation
  +                    Copyright &#169; 1999-2003, Apache Software Foundation
                       </em></font></div>
                   </td></tr>
               </table>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: regexp-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: regexp-dev-help@jakarta.apache.org