Mark Feltner
Mark Feltner
I had some troubles getting django-git working. I made some changes, and it works great now. Maybe they would be useful for others. Specifically, I... ...fixed the requirements. It appears...
Right now our documentation is generated via [docfu](https://github.com/feltnerm/docfu). The main reason for doing this doc generator being written in Python rather than JS is the documentation server host does not...
According to the [XMLHttpRequest2 spec](http://www.w3.org/TR/XMLHttpRequest2/#the-withcredentials-attribute), `xhr.withCredentials` should be initially `false`. http-browserify sets this flag to `true` by default which disobeys the spec. This leads to browser errors when making CORS...
According to README: > All file operations are asynchronous. Love your callbacks. I count 4 occurrences of synchronous operations in `File.js`. I understand it makes the code easier to understand...