Bob Jackman
Bob Jackman
I've played with this for a couple hours today trying to get it to colorize my dart server output logs, but couldn't get it do to anything at all. Is...
```dart // test.dart var client = new amqp.Client(settings: amqp.ConnectionSettings( host : 'localhost', port : 5672, maxConnectionAttempts: 99999, // -- "infinite" retries because setting this to 0 or -1 isn't supported...
# CanonicalizedMap.cast() throws _CastError ## Example: ```dart try { var sourceMap = {'a': 'A'}; var canonicalized = new CanonicalizedMap.from(sourceMap, (String key) => key.toLowerCase()); var badResult = canonicalized.cast(); var goodResult =...
As a team manager, I need to interact with issues other than just mine. It doesn't seem there is a way to list all open issues. Even better (for me...
I don't have time to create a full PR with tests, but here's a repro and a patch if someone has the time to integrate them. I believe this is...
When using `decode()` to decode custom types, the class can't be instantiated. Example: ```dart import 'dart:io'; class Foo { static final Foo one = Foo._('one'); static final Foo two =...
This is a bare-minimum fix for [#26](https://github.com/dart-lang/shelf_proxy/issues/26)
Expected Behavior: Proxied requests should be enriched by setting one or more of the following standard headers: * `Forwarded` (preferred) * `X-Forwarded-For` * `X-Forwarded-Host` * `X-Forwarded-Proto` * `X-Forwarded-Protocol`
I don't have time to create a full PR with tests, but here's a repro and a patch if someone has the time to integrate them. I believe this is...