Gareth Ari Aye

Results 19 issues of Gareth Ari Aye

Not sure why but when trying to build v1.7.7 to publish to npm, I found that babel wasn't outputting stuff in `build/` although it's not complaining either...

Right now using the WebDAV bits looks like ``` var dav = require('dav'); var client = new dav.Client( new dav.transport.Basic( new dav.Credentials({ username: 'xxx', password: 'xxx' }) ), { baseUrl:...

The dav public api is documented in the README and also on the public parts of the codebase. I usually write the docs to both places, but it would be...

internal

http://tools.ietf.org/html/rfc3744

enhancement
help wanted

Currently we use nodejs polyfills for `DOMParser` and `XMLHttpRequest` to run and test on nodejs. Before I was doing something like ``` js var Native; if (typeof window !== 'undefined')...

enhancement
help wanted

Right now all of our testing happens in nodejs and we assume that browserify will transform our nodejs stuff to correctly functioning browser stuff. We should have [at the very...

help wanted
internal

Right now, when you run dav in the browser, the debug logs get written through `localStorage` which is perf-unacceptable for firefox os. Perhaps we should hack `debug` to buffer things...

help wanted
internal

Here is my `Tupfile`. ``` : package.json |> npm install |> node_modules ``` And my `package.json` ``` { "name": "some-package", "version": "0.0.1", "author": "Gareth Aye [:gaye] ", "devDependencies": { "chai":...