sjv0

Results 6 comments of sjv0

> @sjv0 Use `JsonWebKey.import_key` instead. > > https://docs.authlib.org/en/v0.15/jose/jwk.html As mentioned in my bug report, that doesn't work either: ``` >>> from pathlib import Path >>> from authlib.jose import JsonWebKey >>>...

``` >>> from pathlib import Path >>> from authlib.jose import JsonWebKey >>> key_data = Path('my_key.pub').read_text(encoding='utf-8') >>> key = JsonWebKey.import_key(key_data, {'kty': 'RSA', 'kid': 'my_id', 'use': 'sig', 'alg': 'RS256'}) >>> jwk =...

OK pull request created. Hope I did it correctly - I haven't done it before.

> @sjv0 - can you provide me with the details of your dokuwiki folder structure and what was your initial config that did not work ? Sure, @mhoffrog. My dokuwiki...

Hi @mhoffrog, not a stupid question at all - I didn't even know about git worktrees until I read this comment from you. I have only ever used git branches....

Thank you for the clarification, @mhoffrog. If you were going to omit the `--work-tree` argument, wouldn't you still need to at least provide `-C repoPath`? Otherwise I don't see how...