ChangeLog 2.6 KB

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