Stephen Crawley
Stephen Crawley
This utility allows you to parse and dump a "magic" config file. I had to add extra toString / toString2 methods to expose the full state of an entry and...
My recent problems with building the Ceylon website suggest that it would be a good idea to add a test to your CI server to do a fresh checkout and...
From what I can see, there is nothing in the current codebase to support the ORCID v3 APIs. Is anyone working on this? (I am kind of worried that they...
The documentation needs some instructions for running the test suite. It looks like you need to supply a bunch parameters via environment variables (a key, a secret, an email address...
We have a requirement to talk to the ORCID APIs via an http/https proxies. I am working on some changes to implement this ... by simply passing a 'requests' compatible...
I noticed this in `select2/Select2View.py` ``` try: page = int(page) except TypeError: raise InvalidParameter("Invalid page '%s' passed") else: if page < 1: raise InvalidParameter("Invalid page '%s' passed") ``` The value...
Fixes some bugs that I found when trying to implement select2 autocomplete with fixed choices.