2003-11-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System / System.Text.RegularExpressions / ChangeLog
1 2003-11-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2
3         * regex.cs:
4         (Split): include capture groups in the results, if any. Fixes bug
5         #51146.
6
7 2003-07-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8
9         * regex.cs: patch from Eric Lindvall <eric@5stops.com> that fixes bug
10         #44830.
11
12 2003-03-05  Miguel de Icaza  <miguel@ximian.com>
13
14         * category.cs (CategoryUtils.CategoryFromName): Use StartsWith
15         ("Is") instead of a substring for (0,2) which was throwing an
16         exception causing Category.None to be returned
17
18 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19
20         * collections.cs: fixed bug #30091.
21
22 2002-12-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23
24         * regex.cs: fixed little mistake (closes #35860).
25
26 2002-11-12 Jackson Harper <jackson@latitudegeo.com>
27
28         * arch.cs compiler.cs regex.cs: Added mapping attribute to MachineFactories
29
30 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31
32         * parser.cs: detect illegal \ at end of pattern. Fixes 31334.
33
34 2002-10-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35
36         * parser.cs: applied fix from Tim Haynes (thaynes@openlinksw.com) to
37         solve bug #32807. Also modified GetMapping to return the same as MS.
38
39 2002-08-28  Juli Mallett  <jmallett@FreeBSD.org>
40
41         * arch.cs, compiler.cs: Give the interpreter machine a property
42         for the retrieval of the group count.
43
44         * regex.cs: Use the new GroupCount property of the factory to
45         initialise the current group count, and restructure code to compile
46         the pattern only the first time it is needed (essentially backing
47         out the previous revision of regex.cs, to use the new code.)
48
49 2002-08-14  Cesar Octavio Lopez Nataren <cesar@ciencias.unam.mx>
50
51         * regex.cs: Added the ctr for ISerializable implementation and
52         implemented the GetObjectData function.
53
54 2002-07-30  Juli Mallett  <jmallett@FreeBSD.org>
55
56         * regex.cs: Fixed bug where the expression would not be
57         re-evaluated for grouping purposes when factory caches were
58         used, resulting in no groups being recognised after one call
59         with a given pattern and no change in options.
60
61 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
62
63         * regex.cs: Fixed bug in split.
64
65 2002-05-08  Dan Lewis  <dihlewis@yahoo.co.uk>
66
67         * interpreter.cs: Moved to an array-based stack representation
68         for faster captures.
69
70         * match.cs, collections.cs: Decoupled capture representation from
71         interpreter internals.
72
73         * cache.cs: Changed Key type from struct to class for speed.
74
75 2002-04-06  Dan Lewis  <dihlewis@yahoo.co.uk>
76
77         * cache.cs: Object methods should be overridden with "override".
78
79 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
80
81         * RegexRunner.cs, RegexRunnerFactory.cs: MS support classes. Stubs
82         added for completeness.
83
84         * regex.cs, match.cs, collections.cs: Serializable attribute.
85
86 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
87
88         * regex.cs: Added static Matches and IsMatch methods.
89
90 2002-04-03  Dan Lewis  <dihlewis@yahoo.co.uk>
91
92         * ChangeLog: Added changelog.
93
94         * cache.cs: Fixed bug in MRUList.Evict.