Geoff
Geoff
Looking to add support for the optional `response_mode=form_post`. In this case, after authorization, instead of a redirect to the `redirect_uri` with the params in the query string, a page is...
Instead of appending a ? or # (implicit), parse the query string and fragment for parameters. Add our parameters and rebuild the redirect uri. This also changes `%20` to `+`...
When the `redirect_uri` already contains a query string, if there is an error with the authorization request then an additional `?` is appended to the `redirect_uri` with the error query...
It appears Django 1.8-1.10 are not actually supported because `LogoutView` wasn't created until [Django 1.11](https://docs.djangoproject.com/en/1.11/topics/auth/default/#django.contrib.auth.views.LogoutView). So either the docs could be updated or we can add support for that class...
Completes #332 - Adds `OIDC_CLAIMS_SUPPORTED` option to oidc `settings.py`, which defaults to empty list - Adds `claims_supported` entry to `ProviderInfoEndpoint`, retrieved from `settings.py` - Added tests for this in `test_provider_info_endpoint.py`...
Implements #335 * Handles the response_mode="form_post" case. * Does not handle the fragment or query response modes. * Honors the form_post response mode on success or errors. * Test cases...
Is it possible to always host this application in the local environment as opposed to the remote host? I frequently work on many remote systems and in the current case...
Hey this is really great stuff! Do you have a license in mind for this, or do you think you could add one?
I've got a `RichLog` that is often hidden and I write text to it. I'm using a `Rich.Table` to left/right justify two pieces of text on a single line. This...
Add a simple `Help` page to the `File` menu that's some simple instructions or image or something that tells the user about being able to edit values by double clicking,...