dfs 01/06/12 18:49:29
Modified: . CHANGES TODO
Log:
Updated CHANGES to reflect latest bug fixes. Updated TODO to reflect
feeling that MatchAction stuff should not be removed but needs to be
improved upon.
Revision Changes Path
1.12 +12 -1 jakarta-oro/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/jakarta-oro/CHANGES,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- CHANGES 2001/05/20 23:56:41 1.11
+++ CHANGES 2001/06/13 01:49:27 1.12
@@ -1,4 +1,15 @@
-$Id: CHANGES,v 1.11 2001/05/20 23:56:41 dfs Exp $
+$Id: CHANGES,v 1.12 2001/06/13 01:49:27 dfs Exp $
+
+Version 2.0.x
+
+o Added code to Perl5Matcher to handle bytecode generated for [[:alpha:]].
+ [[:alpha:]] would compile but not be interpreted.
+
+o Fixed problem whereby MatchActionProcessor would never set
+ MatchActionInfo.pattern before calling MatchAction.processAction.
+ Also changed MatchActionInfo.fields from Vector to List.
+
+o Added semicolon.txt input file for the semicolon.java example program.
Version 2.0.3
1.7 +3 -3 jakarta-oro/TODO
Index: TODO
===================================================================
RCS file: /home/cvs/jakarta-oro/TODO,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- TODO 2001/05/21 00:20:27 1.6
+++ TODO 2001/06/13 01:49:28 1.7
@@ -1,4 +1,4 @@
-$Id: TODO,v 1.6 2001/05/21 00:20:27 dfs Exp $
+$Id: TODO,v 1.7 2001/06/13 01:49:28 dfs Exp $
o Optimize/improve Unicode character classes.
@@ -15,8 +15,8 @@
potential cases of redundant String/char[] conversions.
o The MatchAction, MatchActionInfo, and MatchActionProcessor classes
- were just a bad idea because that sort of thing is very inefficient
- in Java. The class should probably be removed.
+ need to be updated and improved upon. Even though they were probably
+ a bad idea to have created in the first place, people do use them.
o Reduce the memory overhead of case insensitive matching in Perl5Matcher.