2
0

ChangeLog 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. 2004-05-27 Gonzalo Paniagua Javier <[email protected]>
  2. * category.cs: added LastValue field to mark the end of enum Category.
  3. * syntax.cs: in CharacterClass, use Category.LastValue to get the size
  4. of the array needed. Use a BitArray instead of bool[].
  5. In AddCategory(), don't set the opposite category as false. Fixes
  6. bug #59150. All tests pass.
  7. 2004-05-25 Jackson Harper <[email protected]>
  8. * parser.cs: Allow creating a regular expression using {,n} as the
  9. specified. The min bounds is set to -1, I am not completely sure
  10. if that is what it is supposed to be but MS does not set it to 0
  11. based on testing. Patch by [email protected]. Fixes bug #56761.
  12. 2004-05-12 Dick Porter <[email protected]>
  13. * regex.cs:
  14. * quicksearch.cs:
  15. * RegexRunnerFactory.cs:
  16. * RegexRunner.cs: More public API difference fixes.
  17. * GroupCollection.cs:
  18. * MatchCollection.cs:
  19. * CaptureCollection.cs: Moved GroupCollection, MatchCollection and
  20. CaptureCollection so that they no longer inherit from the
  21. non-standard RegexCollectionBase class. Fixes the API difference.
  22. 2004-04-19 Gonzalo Paniagua Javier <[email protected]>
  23. * arch.cs:
  24. * compiler.cs:
  25. * interpreter.cs:
  26. * parser.cs:
  27. * syntax.cs:
  28. Patch by Eric Durand Tremblay.
  29. 1) Capture inner group when named.
  30. 2) Resolved parse error caused by not capturing inner group
  31. 3) Resolved incorrect capture group
  32. 4) Now, not capturing anything when unnamed ( correct behavior)
  33. 2004-04-19 Gonzalo Paniagua Javier <[email protected]>
  34. * arch.cs:
  35. * compiler.cs:
  36. * interpreter.cs:
  37. * parser.cs:
  38. * syntax.cs: converted to unix line endings.
  39. 2004-03-30 Lluis Sanchez Gual <[email protected]>
  40. * collections.cs: In the indexer, return an empty group if the requested
  41. group is not found.
  42. * match.cs: Added default constructor for Group.
  43. 2004-03-24 Gonzalo Paniagua Javier <[email protected]>
  44. * parser.cs: fixed group numbering.
  45. 2004-03-22 Jackson Harper <[email protected]>
  46. * parser.cs: Use the group number as the name in mapping. Patch by
  47. Gert Driesen.
  48. * regex.cs: Fix off by one error. Patch by Gert Driesen.
  49. 2004-03-17 Francois Beauchemin <[email protected]>
  50. * syntax.cs, interpreter.cs, quicksearch.cs, regex.cs, compiler.cs :
  51. Revised support for RigthToLeft.
  52. quicksearch has now an reverse option.
  53. This fixes bug #54537
  54. * regex.cs, compiler.cs :
  55. Some code to support CILCompiler.
  56. * regex.cs :
  57. Added some undocumented of MS.
  58. 2004-03-16 Gonzalo Paniagua Javier <[email protected]>
  59. * parser.cs: allow a @"\0" escape sequence. Fixes bug #54797.
  60. 2004-02-01 Miguel de Icaza <[email protected]>
  61. * syntax.cs, interval.cs: Applied patch from Marco Cravairo
  62. through Francois Beauchemin who reviewed on the mailing list.
  63. This fixes bug #45976
  64. 2004-01-16 Gonzalo Paniagua Javier <[email protected]>
  65. * parser.cs: an opening brace without a
  66. quantifier do not cause a parse error. Fixes bug #52924.
  67. 2004-01-07 Lluis Sanchez Gual <[email protected]>
  68. * regex.cs: In Split(), if the last match is at the end of the string,
  69. an empty string must be added to the array of results.
  70. 2003-12-15 Sanjay Gupta <[email protected]>
  71. * match.cs: Check for null value before Substring method call.
  72. Fixes bug #52034.
  73. 2003-11-21 Juraj Skripsky <[email protected]>
  74. * quicksearch.cs: Create and use hashtable only for "long" search
  75. strings.
  76. (Search): Use simple scan for a single-character search strings.
  77. (GetChar): Simplify case sensitivity handling.
  78. 2003-11-27 Gonzalo Paniagua Javier <[email protected]>
  79. * interpreter.cs: when evaluating a degenerate match, restore the
  80. RepeatContext if fail. Fixes bug #42529.
  81. 2003-11-22 Jackson Harper <[email protected]>
  82. * regex.cs: Add CultureInvariant flag to RegexOptions.
  83. 2003-11-20 Juraj Skripsky <[email protected]>
  84. * quicksearch.cs: Use a hashtable instead of an array for the
  85. shift table to improve the memory usage.
  86. 2003-11-19 Gonzalo Paniagua Javier <[email protected]>
  87. * regex.cs:
  88. (Split): include capture groups in the results, if any. Fixes bug
  89. #51146.
  90. 2003-07-09 Gonzalo Paniagua Javier <[email protected]>
  91. * regex.cs: patch from Eric Lindvall <[email protected]> that fixes bug
  92. #44830.
  93. 2003-03-05 Miguel de Icaza <[email protected]>
  94. * category.cs (CategoryUtils.CategoryFromName): Use StartsWith
  95. ("Is") instead of a substring for (0,2) which was throwing an
  96. exception causing Category.None to be returned
  97. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  98. * collections.cs: fixed bug #30091.
  99. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  100. * regex.cs: fixed little mistake (closes #35860).
  101. 2002-11-12 Jackson Harper <[email protected]>
  102. * arch.cs compiler.cs regex.cs: Added mapping attribute to MachineFactories
  103. 2002-11-06 Gonzalo Paniagua Javier <[email protected]>
  104. * parser.cs: detect illegal \ at end of pattern. Fixes 31334.
  105. 2002-10-25 Gonzalo Paniagua Javier <[email protected]>
  106. * parser.cs: applied fix from Tim Haynes ([email protected]) to
  107. solve bug #32807. Also modified GetMapping to return the same as MS.
  108. 2002-08-28 Juli Mallett <[email protected]>
  109. * arch.cs, compiler.cs: Give the interpreter machine a property
  110. for the retrieval of the group count.
  111. * regex.cs: Use the new GroupCount property of the factory to
  112. initialise the current group count, and restructure code to compile
  113. the pattern only the first time it is needed (essentially backing
  114. out the previous revision of regex.cs, to use the new code.)
  115. 2002-08-14 Cesar Octavio Lopez Nataren <[email protected]>
  116. * regex.cs: Added the ctr for ISerializable implementation and
  117. implemented the GetObjectData function.
  118. 2002-07-30 Juli Mallett <[email protected]>
  119. * regex.cs: Fixed bug where the expression would not be
  120. re-evaluated for grouping purposes when factory caches were
  121. used, resulting in no groups being recognised after one call
  122. with a given pattern and no change in options.
  123. 2002-05-13 Dan Lewis <[email protected]>
  124. * regex.cs: Fixed bug in split.
  125. 2002-05-08 Dan Lewis <[email protected]>
  126. * interpreter.cs: Moved to an array-based stack representation
  127. for faster captures.
  128. * match.cs, collections.cs: Decoupled capture representation from
  129. interpreter internals.
  130. * cache.cs: Changed Key type from struct to class for speed.
  131. 2002-04-06 Dan Lewis <[email protected]>
  132. * cache.cs: Object methods should be overridden with "override".
  133. 2002-04-04 Dan Lewis <[email protected]>
  134. * RegexRunner.cs, RegexRunnerFactory.cs: MS support classes. Stubs
  135. added for completeness.
  136. * regex.cs, match.cs, collections.cs: Serializable attribute.
  137. 2002-04-04 Dan Lewis <[email protected]>
  138. * regex.cs: Added static Matches and IsMatch methods.
  139. 2002-04-03 Dan Lewis <[email protected]>
  140. * ChangeLog: Added changelog.
  141. * cache.cs: Fixed bug in MRUList.Evict.