Sascha Ißbrücker

Results 310 comments of Sascha Ißbrücker

@asitemade4u > Moreover, there are many cases where the user is brought back to the first page Can you elaborate on this? Adding a jump to page feature IMO is...

I don't understand what this new use case has to do with jumping to a page, can you elaborate on that? Even if you have to manually go through all...

No worries, I'm just trying to clarify the problem and see if there is actually a bug with redirects. See the following screencast: https://user-images.githubusercontent.com/357820/160254364-d92a458e-c09f-43fc-b6f2-39608b113f9e.mp4 What we see here: - Move...

This would have to be an option that allows configuring the Django `XFrameOptionsMiddleware` via the `X_FRAME_OPTIONS` setting.

Yeah that should be possible. I'd like to avoid dumping more actions into the bulk edit bar though, so I'm still thinking on how to do this. Maybe use a...

Good find! It seems that the Python HTML library maps both `¢` and `&cent` (https://github.com/python/cpython/blob/3.10/Lib/html/entities.py#L522-L523), which they apparently do for some entities according to the docs: https://docs.python.org/3/library/html.entities.html#html.entities.html5. So not really...

`HTMLParser` has a `convert_charrefs` setting to disable unescaping character data, which for example is applied here: https://github.com/python/cpython/blob/224cd0c3bf2e24f7731fb0b6f31b3839641307d7/Lib/html/parser.py#L161-L164 However the setting is ignored when parsing attribute values 😕: https://github.com/python/cpython/blob/224cd0c3bf2e24f7731fb0b6f31b3839641307d7/Lib/html/parser.py#L324-L325

Looking further into this, there is a related [bug report](https://github.com/python/cpython/issues/69426) that indicates that in attribute values, character entities not terminated with a semicolon should not be parsed, if they are...

Sorry to hear that, but I can't see what I can do from my side. I can only state that I think it's very unlikely to be an application issue....

The import is definitely not very fast, and importing such a large number of bookmarks usually takes a while. According to the logs it seems you navigated to the homepage...