Jaap Roes

Results 60 comments of Jaap Roes

OK, this is not true, something else is happening resulting it the wrong file being copied. Need to check it out further, will do so on Friday.

I've checked again and was able to reproduce the issue. I've updated the description to include the steps to reproduce this issue.

This shows the issue... it's a nasty testcase because it uses sleep to make sure there's a time difference. ``` class TestCollectionIgnoresSkipped(CollectionTestCase): """ Test consecutive runs of collectstatic where an...

Because it shows the issue? It's a subclass of CollectionTestCase that checks if the file that's actually collected is the expected file. If this test fails then the wrong file...

This is a good idea, but it would put the main goal of this project at risk: being the fastest, most lightweight jQuery alternative. Is it worth the convenience of...

@jochengcd Thanks, that looks super useful It would be nice for `BaseIKFile` and `ImageCacheFile` to implement a `.delete` method so they can remove themself from `storage` \ `cachefile_backend`. This way...

Based on @jochengcd I came up with this way to make sure the original and derived images are removed: ``` class MyImage(models.Model): file = models.ImageField() thumbnail = ImageSpecField(source='file', processors=[...]) some_size...

I *think* this is a reasonable implementation of a (barebones) UserInfo endpoint ```python ## # UserInfo endpoint ## class UserInfoEndpoint: ENDPOINT_NAME = 'userinfo' def __init__(self, server): self.server = server self.resource_protector...

Well from my perspective this is utterly unexpected. Not only does this result in duplicate css, in this case it exposes global class names that are not supposed to be...

It seems that `FernetBytes` uses the `CRYPTOGRAPHY_KEY` but `CRYPTOGRAPHY_SALT` uses `SECRET_KEY`. `CRYPTOGRAPHY_SALT` does not seem to be used in the code at all. (nevermind, it is used by `CryptographyConf`)