ChangeLog 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  2. * regex.cs: fixed little mistake (closes #35860).
  3. 2002-11-12 Jackson Harper <[email protected]>
  4. * arch.cs compiler.cs regex.cs: Added mapping attribute to MachineFactories
  5. 2002-11-06 Gonzalo Paniagua Javier <[email protected]>
  6. * parser.cs: detect illegal \ at end of pattern. Fixes 31334.
  7. 2002-10-25 Gonzalo Paniagua Javier <[email protected]>
  8. * parser.cs: applied fix from Tim Haynes ([email protected]) to
  9. solve bug #32807. Also modified GetMapping to return the same as MS.
  10. 2002-08-28 Juli Mallett <[email protected]>
  11. * arch.cs, compiler.cs: Give the interpreter machine a property
  12. for the retrieval of the group count.
  13. * regex.cs: Use the new GroupCount property of the factory to
  14. initialise the current group count, and restructure code to compile
  15. the pattern only the first time it is needed (essentially backing
  16. out the previous revision of regex.cs, to use the new code.)
  17. 2002-08-14 Cesar Octavio Lopez Nataren <[email protected]>
  18. * regex.cs: Added the ctr for ISerializable implementation and
  19. implemented the GetObjectData function.
  20. 2002-07-30 Juli Mallett <[email protected]>
  21. * regex.cs: Fixed bug where the expression would not be
  22. re-evaluated for grouping purposes when factory caches were
  23. used, resulting in no groups being recognised after one call
  24. with a given pattern and no change in options.
  25. 2002-05-13 Dan Lewis <[email protected]>
  26. * regex.cs: Fixed bug in split.
  27. 2002-05-08 Dan Lewis <[email protected]>
  28. * interpreter.cs: Moved to an array-based stack representation
  29. for faster captures.
  30. * match.cs, collections.cs: Decoupled capture representation from
  31. interpreter internals.
  32. * cache.cs: Changed Key type from struct to class for speed.
  33. 2002-04-06 Dan Lewis <[email protected]>
  34. * cache.cs: Object methods should be overridden with "override".
  35. 2002-04-04 Dan Lewis <[email protected]>
  36. * RegexRunner.cs, RegexRunnerFactory.cs: MS support classes. Stubs
  37. added for completeness.
  38. * regex.cs, match.cs, collections.cs: Serializable attribute.
  39. 2002-04-04 Dan Lewis <[email protected]>
  40. * regex.cs: Added static Matches and IsMatch methods.
  41. 2002-04-03 Dan Lewis <[email protected]>
  42. * ChangeLog: Added changelog.
  43. * cache.cs: Fixed bug in MRUList.Evict.