Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.ServiceModel.Web/System/ChangeLog')
-rw-r--r--mcs/class/System.ServiceModel.Web/System/ChangeLog80
1 files changed, 0 insertions, 80 deletions
diff --git a/mcs/class/System.ServiceModel.Web/System/ChangeLog b/mcs/class/System.ServiceModel.Web/System/ChangeLog
deleted file mode 100644
index f4b7f244e94..00000000000
--- a/mcs/class/System.ServiceModel.Web/System/ChangeLog
+++ /dev/null
@@ -1,80 +0,0 @@
-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().