2
0

ChangeLog 2.4 KB

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