ChangeLog 2.5 KB

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