David Notik
David Notik
I want this too. For now, maybe fork the repo and modify some code somewhere? Point us in the right direction? EDIT: Ahh, https://github.com/tjmehta/atom-term/blob/master/stylesheets/term.less.
I believe the issue I'm struggling w/ is related. ``` print('Debug1: ' + request.handlerPath); // => / print('Debug2: ' + request.url.path); // => (empty string) request = request.change(path: "foo”); //...
I want! :+1: Moving from HttpServer and the http_server package to Shelf, and hit with the lack of cookie support, where before I was doing e.g. `var sessionCookie = request.cookies.firstWhere((cookie)...
See: https://github.com/justinfagnani/route/issues/78
Never mind! I had it wrong. What I wanted was `iterations`, not `duration`. If I set `duration` to `Infinity` that meant that the change (color change in my case) would...
Thanks for the help. Finally done refactoring for Shelf. Alas, still doesn't gzip. ``` io.serve(_handler, address, port).then((server) { server.autoCompress = true; server.sessionTimeout = new DateTime.now() .add(new Duration(days: 365)) .toUtc() .millisecondsSinceEpoch...
Ok, got it working. I had to set chunked `transfer-encoding` in the headers. So I change the `Response` wherever I return files, e.g.: ``` Future _handleFile(shelf.Request request) async { shelf.Response...