| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- 2010-05-25 Atsushi Enomoto <[email protected]>
- * UriTemplate.cs : safe-unescape template parameters.
- 2009-10-23 Atsushi Enomoto <[email protected]>
- * UriTemplate.cs, UriTemplateMatchException.cs, UriTemplateMatch.cs:
- Add experimental monotouch build.
- 2009-09-22 Atsushi Enomoto <[email protected]>
- * UriTemplate.cs : Fix method signatures. Take care of dictionary
- case sensitivity.
- 2009-09-17 Atsushi Enomoto <[email protected]>
- * UriTemplateTable.cs : do not raise an error when MatchSingle() did
- not result in any match. Match methods should reject empty table.
- 2008-09-07 Atsushi Enomoto <[email protected]>
- * UriTemplate.cs, UriTemplateMatch.cs : add support for wildcard.
- 2008-09-07 Atsushi Enomoto <[email protected]>
- * UriTemplate.cs : implement IsEquivalentTo().
- * UriTemplateEquivalenceComparer.cs : implement.
- 2008-09-07 Atsushi Enomoto <[email protected]>
- * UriTemplate.cs : add BindByName() overloads with Dictionary.
- 2008-09-07 Atsushi Enomoto <[email protected]>
- * UriTemplate.cs : implemented Defaults and IgnoreTrailingSlash.
- 2008-09-07 Atsushi Enomoto <[email protected]>
- * UriTemplate.cs : Fixed a couple of parse/match behavior to match
- 3.5 SP1 (except for Defaults which misses implementation).
- 2008-02-16 Atsushi Enomoto <[email protected]>
- * UriTemplate.cs : the rewrite broke query parameter matching.
- param name -> stored param name -> template name -> QueryVariable!
- 2008-02-16 Atsushi Enomoto <[email protected]>
- * UriTemplateTable.cs : remove some MonoTODOs.
- 2008-02-16 Atsushi Enomoto <[email protected]>
- * UriTemplate.cs : rewrote query parameter retrieval part. It did
- not match order-independent input and lack of parameters.
- 2008-02-15 Atsushi Enomoto <[email protected]>
- * UriTemplateMatch.cs : implement everything but WildcardPathSegments.
- * UriTemplate.cs : (Match) set RequestUri. Add match strings to
- RelativePathSegments and QueryParameters.
- 2008-02-15 Atsushi Enomoto <[email protected]>
- * UriTemplateTable.cs : key_value_pair was not set.
- * UriTemplate.cs : in Match(), template and candidate could start
- from '/' which should not be compared.
- 2008-02-12 Atsushi Enomoto <[email protected]>
- * UriTemplateMatch.cs : implemented some members.
- * UriTemplateTable.cs : implemented Match() and MatchSingle().
- * UriTemplate.cs : Do not expand template in non-path-query area.
- Implemented Match().
- 2008-02-12 Atsushi Enomoto <[email protected]>
- * UriTemplateTable.cs, UriTemplateEquivalenceComparer.cs : new stubs.
- * UriTemplateMatchException.cs : new.
- * UriTemplate.cs : implemented .ctor(), BindByName() and
- BindByPosition().
|