ChangeLog 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. 2008-09-07 Atsushi Enomoto <[email protected]>
  2. * UriTemplate.cs : implement IsEquivalentTo().
  3. * UriTemplateEquivalenceComparer.cs : implement.
  4. 2008-09-07 Atsushi Enomoto <[email protected]>
  5. * UriTemplate.cs : add BindByName() overloads with Dictionary.
  6. 2008-09-07 Atsushi Enomoto <[email protected]>
  7. * UriTemplate.cs : implemented Defaults and IgnoreTrailingSlash.
  8. 2008-09-07 Atsushi Enomoto <[email protected]>
  9. * UriTemplate.cs : Fixed a couple of parse/match behavior to match
  10. 3.5 SP1 (except for Defaults which misses implementation).
  11. 2008-02-16 Atsushi Enomoto <[email protected]>
  12. * UriTemplate.cs : the rewrite broke query parameter matching.
  13. param name -> stored param name -> template name -> QueryVariable!
  14. 2008-02-16 Atsushi Enomoto <[email protected]>
  15. * UriTemplateTable.cs : remove some MonoTODOs.
  16. 2008-02-16 Atsushi Enomoto <[email protected]>
  17. * UriTemplate.cs : rewrote query parameter retrieval part. It did
  18. not match order-independent input and lack of parameters.
  19. 2008-02-15 Atsushi Enomoto <[email protected]>
  20. * UriTemplateMatch.cs : implement everything but WildcardPathSegments.
  21. * UriTemplate.cs : (Match) set RequestUri. Add match strings to
  22. RelativePathSegments and QueryParameters.
  23. 2008-02-15 Atsushi Enomoto <[email protected]>
  24. * UriTemplateTable.cs : key_value_pair was not set.
  25. * UriTemplate.cs : in Match(), template and candidate could start
  26. from '/' which should not be compared.
  27. 2008-02-12 Atsushi Enomoto <[email protected]>
  28. * UriTemplateMatch.cs : implemented some members.
  29. * UriTemplateTable.cs : implemented Match() and MatchSingle().
  30. * UriTemplate.cs : Do not expand template in non-path-query area.
  31. Implemented Match().
  32. 2008-02-12 Atsushi Enomoto <[email protected]>
  33. * UriTemplateTable.cs, UriTemplateEquivalenceComparer.cs : new stubs.
  34. * UriTemplateMatchException.cs : new.
  35. * UriTemplate.cs : implemented .ctor(), BindByName() and
  36. BindByPosition().