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