Petr Dlouhý
Petr Dlouhý
BTW the @profile_temlate decorator can be used on any other function.
@ipmb Could you please check this PR?
@ipmb Thanks for the comment. I have transformed the code, so that list of tuples is default. Dict now throws deprecated warning. I have also added test for the old...
@Aleksi44 I already fixed this issue in my project by ```python class MyStaticFilesConfig(StaticFilesConfig): ignore_patterns = [ "*wagtailyoast/*0.0.1*", "*wagtailyoast/*0.0.2*", "*wagtailyoast/*0.0.3*", "*wagtailyoast/*0.0.4*", "*wagtailyoast/*0.0.5*", "*wagtailyoast/*0.0.6*", "*wagtailyoast/*0.0.7*", "*wagtailyoast/*0.0.8*", ] ``` but it seems very...
These files are in the PyPI package. If I download the [tar.gz](https://files.pythonhosted.org/packages/bd/8b/666d4b88db5b2fc95a121df6b14d4435c05ad8897d5c1a84af24f913fddb/wagtailyoast-0.0.9.tar.gz) from the [PyPI download page](https://pypi.org/project/wagtailyoast/), those files are part of the package.
@Aleksi44 Thank you very much.
@Aleksi44 It seems that in version `0.0.10` all those files are still present. Is there any systematic way to fix this issue?
I have added generating the blank scribble content at startup, and also moved loading of the template to global level, so it is done only once.
@ronardcaktus Could you please also look at this small optimization?
> I have gone a bit further with the investigation. I find out, that the biggest hurdle is getting the cache key (https://github.com/caktus/django-scribbler/blob/master/scribbler/templatetags/scribbler_tags.py#L54). > This single command lasts 30-50ms for...