ChangeLog 2.7 KB

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