Jens W. Klein
Jens W. Klein
The whole portrait handling in the backend is a PITA and I would like to see `plone.api` and `plone.restapi` to abstract this away from the existing tools and to not...
`pkg_resources` as part of setuptools and is used for [legacy namespace declaration](https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#legacy-namespace-packages) here: https://github.com/zopefoundation/zope.interface/blob/master/src/zope/__init__.py#L1 I am confused with the multiple ways of namespace declarations and why/when legacy needs to be...
it uses requests, so yes, because requets does.
mea culpa. I was confused.
Thanks for the work! Do you think you can provide a Pull-Request with a fixed provider?
@rcarmo Are you able to provide a pull request and check then if it works? We are a volunteer driven project. If merged we can release a 1.1.0 with the...
This could fix it: ```python # ... import sys PY2 = sys.version_info < (3, 0) # ... assoc = association.serialize() if PY2 assoc = assoc.decode('latin-1') # ... ```
Following up here. I wrote a customer specific OpenID Connect Provider for Helmholtz AAI. I do not have paid nor volunteer resources to turn this into an official generic plugin,...
Thanks, this is great! Could you provide an example usage with test? like here: https://github.com/authomatic/authomatic/tree/master/examples
I am not ok to merge without adding a test, except if it would be exhausting difficult. @fmigneault do you think you can add a test or is this not...