File: ChangeLog

package info (click to toggle)
mono 2.6.7-5.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 327,344 kB
  • ctags: 413,649
  • sloc: cs: 2,471,883; xml: 1,768,594; ansic: 350,665; sh: 13,644; makefile: 8,640; perl: 1,784; asm: 717; cpp: 209; python: 146; sql: 81; sed: 16
file content (76 lines) | stat: -rw-r--r-- 2,587 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
2009-10-23  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplate.cs, UriTemplateMatchException.cs, UriTemplateMatch.cs:
	  Add experimental monotouch build.

2009-09-22  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplate.cs : Fix method signatures. Take care of dictionary
	  case sensitivity.

2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplateTable.cs : do not raise an error when MatchSingle() did
	  not result in any match. Match methods should reject empty table.

2008-09-07  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplate.cs, UriTemplateMatch.cs : add support for wildcard.

2008-09-07  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplate.cs : implement IsEquivalentTo().
	* UriTemplateEquivalenceComparer.cs : implement.

2008-09-07  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplate.cs : add BindByName() overloads with Dictionary.

2008-09-07  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplate.cs : implemented Defaults and IgnoreTrailingSlash.

2008-09-07  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplate.cs : Fixed a couple of parse/match behavior to match
	  3.5 SP1 (except for Defaults which misses implementation).

2008-02-16  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplate.cs : the rewrite broke query parameter matching.
	  param name -> stored param name -> template name -> QueryVariable!

2008-02-16  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplateTable.cs : remove some MonoTODOs.

2008-02-16  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplate.cs : rewrote query parameter retrieval part. It did
	  not match order-independent input and lack of parameters.

2008-02-15  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplateMatch.cs : implement everything but WildcardPathSegments.
	* UriTemplate.cs : (Match) set RequestUri. Add match strings to
	  RelativePathSegments and QueryParameters.

2008-02-15  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplateTable.cs : key_value_pair was not set.
	* UriTemplate.cs : in Match(), template and candidate could start
	  from '/' which should not be compared.

2008-02-12  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplateMatch.cs : implemented some members.
	* UriTemplateTable.cs : implemented Match() and MatchSingle().
	* UriTemplate.cs : Do not expand template in non-path-query area.
	  Implemented Match().

2008-02-12  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplateTable.cs, UriTemplateEquivalenceComparer.cs : new stubs.
	* UriTemplateMatchException.cs : new.
	* UriTemplate.cs : implemented .ctor(), BindByName() and
	  BindByPosition().