-
I have it in my head that query parameters are declared like
```
GET [/my/resource{?color,flavor,ethnicity}]
```
That works in the parser, but so also do some other arrangements, like
```
GET [/my/…
jrep updated
10 years ago
-
It is not unusual (at least in PHP world) to have URL parameters with brackets, as they are mapped on server side to an array.
This is currently impossible to describe in Blueprint. There are two op…
Almad updated
10 years ago
-
Consider the example from the Gist API:
```
## Gists Collection [/gists{?since}]
Collection of all Gists.
### List All Gists [GET]
+ Parameters
+ since (optional, string) ... Timestamp in ISO 86…
-
I'd like to float a proposal that comes from considering points raised by @ahacking, @ethanresnick, @wvteijlingen, and others in #238, #262, #276, and other recent issues. It represents a breaking cha…
-
At http://tools.ietf.org/idnits?url=http://tools.ietf.org/id/draft-zyp-json-schema-03.txt the following problems were reported for I-D(3) or draft 3 which should be resolved going forward.
idnits 2.1…
-
A Riak Test should be written to verify that Yokozuna works with types, buckets, and keys which contain non-latin characters. There are tests for non-latin object values in `yz_languages.erl` but AFAI…
-
``` ocaml
# Uri.(to_string (of_string "/foo%2Fbar"));;
- : string = "/foo/bar"
```
Result should be:
``` ocaml
# Uri.(to_string (of_string "/foo%2Fbar"));;
- : string = "/foo%2Fbar"
```
It seems th…
-
Are there any plans to help clients determine whether or not certain types of requests can be made on links? For example, with something similar to [HTTP Link Hints](https://tools.ietf.org/html/draft-…
-
Following from discussion with @ghhenry from issue #28
> The restriction on variable names comes from section 2.3. It allows pct-encoded triplets, but also says "A varname containing pct-encoded char…
-
I am using addressable for resolving URLs on restful APIs and attempting to expand the following:
``` ruby
template = Addressable::Template.new('http://example.com/{test}')
url = template.expand(:tes…