Jaap Roes

Results 60 comments of Jaap Roes

Older python versions were recently removed from the tests matrix, so a PR that uses `unittest.mock` instead of the `mock` library should now be feasible.

Imho this is not for django-email-bandit to solve. Subclassing `CeleryEmailBackend` and "fixing" `send_messages` is a much neater solution and doesn't burden this project with a kludgy workaround. e.g.: ``` class...

[Hijacking Arbitrary Backends](https://github.com/caktus/django-email-bandit/blob/develop/docs/backends.rst#hijacking-arbitrary-backends) would be the right place to document this. Or you could introduce another [backend](https://github.com/caktus/django-email-bandit/tree/develop/bandit/backends) using the example I gave (would need some docs as well).

It is in the [ViteJS section fo the README](https://github.com/MrBin99/django-vite?tab=readme-ov-file#vitejs)

I came up with a solution similar to @svengt, but this way skips hashing the vite files alltogether (based on https://github.com/TomAnthony/django-flexible-manifest-staticfiles): (in our case all vite output is identifiable by...

Something like this does what you want. You probably want to special case some things in order to get the output you wish... ``` function toHTML(nodeSet, asArray) { var html...

There range by which the playback rate is adjustable is different between browsers. I believe Firefox allows for the least amount of adjustment, take that as the max. in order...

Yeah, this should probably be closed. Writing diagnostics, logging and errors to stderr is absolutely the right thing to do.

We currently don't require unidecode in setup.py so a small shim could be added to define it conditionally.

Unidecode might also be too aggressive in transliteration, i.e. '北亰' converts to 'Bei Jing'. This might be unexpected behaviour for people trying to search using non latin characters.