Paul Jimenez
Paul Jimenez
I think ``` def __enter__(self): self.acquire(self.ttl) return self ``` is wrong because `ttl` is how long to hold the lock, whereas the argument to `acquire()` is how long to _wait...
I submitted a fix, but the code changed out from under me so it no longer cleanly applies. I'm no longer using etcd, but feel free to take my changes...
I like the idea - it puts control where it should be, in the page. What I don't like is More Magic Names. Can we namespace it somehow? what about...
So, two conflicting takes on this: 1) [RFC 2396](http://www.ietf.org/rfc/rfc2396.txt) says that URI path separator is a single slash. 2) [POSIX path definition](http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap03.html#tag_03_266) says that "Multiple successive slashes are considered to...
Okay, so the issue I see with this is: what if there are files: /.spt and /index.html.spt , and someone hits / ? which do they get? is there an...
I think this is fine as-is. If you really want to differentiate you can make a wildcard sptfile.
what if there are files: /.spt and /index.html.spt , and someone hits / ? which do they get? is there an implied empty string after every / ? and it...
If the only way to 'catch' that kind of filename is with a wildcard, I think we shouldn't do it.
_sigh_ write me some failing tests into an issue170 branch and I'll see about making the dispatcher work correctly.
...so if autoindex is on, should a request for `//` give 404? or give the autoindex('//') -> autoindex('/') ? There's no possible way to make it give anything else without...