James Stewart Miller

Results 28 comments of James Stewart Miller

I think there is a maintained version here https://pypi.org/project/django-safe-filefield-new/ I forked it personally and adapted it to just cover image files https://github.com/millerthegorilla/safe_imagefield 😁

init_timer function (and setup_timer) has been replaced in 4.15 https://lwn.net/Articles/735887/

I made the necessary changes, uncommenting the setup_timer, and changing it to timer_setup, and using a macro to switch between the original code and the new, depending on kernel version,...

Hi, I hope this is ok. django-pipeline configuration in your settings.py ``` #django-pipeline STATICFILES_STORAGE = 'pipeline.storage.PipelineManifestStorage' STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', 'pipeline.finders.PipelineFinder', ) PIPELINE = { 'PIPELINE_ENABLED': True, 'JS_COMPRESSOR': 'pipeline.compressors.jsmin.JSMinCompressor',...

@TheBuky can you suggest what I should do next? I have just bumped all my pip dependencies to the latest as I test my project with django-4.0 and I am...

I can confirm that the fix for #699 works for me.

Thanks for getting back to me. I will check the code either today or tomorrow and confirm that I still have the same issue.

Had a quick peek, and I am still using the form, but it looks like a direct copy of the jazzband repo, so I will look more closely when I...