David D Lowe

Results 77 issues of David D Lowe

### Is there an existing issue for this? - [X] I have searched the existing issues ### What happened? I visited this page: https://pypi.org/project/desktop-parser/ I clicked on the "Homepage" link,...

bug

This is a small patch to documentation. It isn't clear how `set_unusable_password` marks a user's password as unusable. This commit clarifies that the `password` field itself contains metadata marking a...

## Information **VIM version** NVIM v0.10.0 Build type: Release Operating System: Ubuntu 24.04 ## What went wrong I'm running the ruff formatter for Python files. Ruff was installed using pipenv....

bug

Previously, the code would check to see if ACCOUNT_ADAPTER equalled "invitations.models.InvitationsAdapter". But this would cause it to reject subclasses of InvitationsAdapter. Instead, it is enough to check to see if...

I wanted to see what you thought about this, before I attempted to implement it. If a user tries to create an invitation to an email address, they may receive...

I would like to add this `invitee` field to `AbstractBaseInvitation` model: ``` class AbstractBaseInvitation(models.Model): invitee = models.ForeignKey( settings.AUTH_USER_MODEL, verbose_name=_("inviter"), null=True, blank=True, on_delete=models.CASCADE, ) ``` This `invitee` field would be null...

# Summary: I propose that the `Invitation` be modified like this: - Remove the case-sensitive unique constraint on `email` - Create a new unique constraint on the composed key (`inviter`,...

I would like to disable completely user passwords, without requiring that users use a social account. If users do not want to use a social account, they can use a...

Feature request

Take this code: ``` >>> from django.contrib.postgres.search import SearchHeadline, SearchQuery >>> query = SearchQuery("red tomato") >>> entry = Entry.objects.annotate( ... headline=SearchHeadline( ... "body_text", ... query, ... ), ... ).get() >>>...

If there are two or more links pointing to the same URL, and I press `f` on the keyboard, Tridactyl will display a letter next to each link. If there...