-
As [pulled from PEP 512](https://www.python.org/dev/peps/pep-0512/#handling-misc-news):
Traditionally the Misc/NEWS file [19] has been problematic for changes which spanned Python releases. Oftenti…
-
Triggering jobs via API requires the user to manually escape slashes into `%2F`.
It makes the URI harder to read, because escaping happens _only_ in the slug:
``` bash
curl --silent --request POS…
-
You might want to consider adding for the standard 6570 URI Templates. There are a number of pre-existing .net libraries that support a ton of functionality for parameter replacement (including one …
-
No map display when it’s omitted, so it should be required.
Also, do we have a complete list of house styles to use in the documentation? /cc @nvkelso.
Noticed in #138.
-
[RFC 2560](https://tools.ietf.org/html/rfc6570) defines a URI Template syntax widely used in RESTful frameworks (e.g. [JAX-RS](https://docs.oracle.com/cd/E19798-01/821-1841/ginpw/), [Restlet](http://r…
-
See #160 for a potential use case.
-
See https://tools.ietf.org/html/rfc6570 - much better than yet another custom format
Could that be implemented as a single route type?
-
I'm building a RESTful file server which supports listing a specified folder. To build such url template I need put folder path in url. I found the following things from `RFC 6570`:
```
{+path}/here…
-
I'd like to start a conversation and brainstorm about the future of gorilla/mux.
Background: gorilla/mux has evolved to be the most featureful router in Go, but this came with a price: the API feels …
-
When I have a query string that looks like this: `?fields[animal]=birthday,type`, its proper URI encoded form is: `?fields%5Banimal%5D=birthday%2Ctype`. The problem is that when I use de-substitution …