ChangeLog 8.2 KB

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