ChangeLog 2.0 KB

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