ChangeLog 2.2 KB

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