ChangeLog 2.7 KB

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