ChangeLog 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. 2008-02-16 Atsushi Enomoto <[email protected]>
  2. * UriTemplate.cs : the rewrite broke query parameter matching.
  3. param name -> stored param name -> template name -> QueryVariable!
  4. 2008-02-16 Atsushi Enomoto <[email protected]>
  5. * UriTemplateTable.cs : remove some MonoTODOs.
  6. 2008-02-16 Atsushi Enomoto <[email protected]>
  7. * UriTemplate.cs : rewrote query parameter retrieval part. It did
  8. not match order-independent input and lack of parameters.
  9. 2008-02-15 Atsushi Enomoto <[email protected]>
  10. * UriTemplateMatch.cs : implement everything but WildcardPathSegments.
  11. * UriTemplate.cs : (Match) set RequestUri. Add match strings to
  12. RelativePathSegments and QueryParameters.
  13. 2008-02-15 Atsushi Enomoto <[email protected]>
  14. * UriTemplateTable.cs : key_value_pair was not set.
  15. * UriTemplate.cs : in Match(), template and candidate could start
  16. from '/' which should not be compared.
  17. 2008-02-12 Atsushi Enomoto <[email protected]>
  18. * UriTemplateMatch.cs : implemented some members.
  19. * UriTemplateTable.cs : implemented Match() and MatchSingle().
  20. * UriTemplate.cs : Do not expand template in non-path-query area.
  21. Implemented Match().
  22. 2008-02-12 Atsushi Enomoto <[email protected]>
  23. * UriTemplateTable.cs, UriTemplateEquivalenceComparer.cs : new stubs.
  24. * UriTemplateMatchException.cs : new.
  25. * UriTemplate.cs : implemented .ctor(), BindByName() and
  26. BindByPosition().