File: ChangeLog

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (80 lines) | stat: -rw-r--r-- 2,694 bytes parent folder | download | duplicates (3)
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
77
78
79
80
2010-05-25  Atsushi Enomoto  <atsushi@ximian.com>

	* UriTemplate.cs : safe-unescape template parameters.

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().