googleapis / google-http-java-client

Google HTTP Client Library for Java
Apache License 2.0
1.39k stars 451 forks source link

Update UriTemplate to RFC 6570 #189

Closed wonderfly closed 9 years ago

wonderfly commented 9 years ago

From yan...@google.com on January 10, 2013 14:25:35

External references, such as a standards document, or specification? http://tools.ietf.org/html/rfc6570 http://javadoc.google-http-java-client.googlecode.com/hg/1.13.1-beta/com/google/api/client/http/UriTemplate.html Java environments (e.g. Java 6, Android 2.3, App Engine, or All)? All Please describe the feature requested. Current implementation of UriTemplate was based on draft 7, but by now it is RFC 6570. We should check if there are any changes to the specification and update the JavaDoc to link to the RFC. We don't necessarily need to support all of the functionality in the specification, but the existing functionality must be correct based on the final standard.

Original issue: http://code.google.com/p/google-http-java-client/issues/detail?id=189

wonderfly commented 9 years ago

From yan...@google.com on January 10, 2013 15:53:48

Some things that have changed: {?list}, {;list}, {?list}, and {&list}

wonderfly commented 9 years ago

From rmis...@google.com on March 06, 2013 09:40:13

Three expansions appear to have changed: {;list} ;list=red;list=green;list=blue {?list} ?list=red&list=green&list=blue {&list*} &list=red&list=green&list=blue

wonderfly commented 9 years ago

From rmis...@google.com on March 06, 2013 10:30:29

https://codereview.appspot.com/7521043/

Status: Started
Cc: yan...@google.com

wonderfly commented 9 years ago

From rmis...@google.com on March 14, 2013 05:59:46

Status: Fixed