Pyvonix

Results 36 comments of Pyvonix

Hi @ngkabra, The documentation could be outdate, the best thing is to directly show the code of the [storage.py](https://github.com/jazzband/django-pipeline/blob/e7acf0337abd2bf9865c05fe7e1113d9c4f84f81/pipeline/storage.py#L91) As you can see `PipelineStorage` an inherit of [StaticFilesStorage](https://docs.djangoproject.com/en/3.1/ref/contrib/staticfiles/#staticfilesstorage) and `PipelineManifestStorage`...

> Did you find a solution for that? I updated from Django 3.0 to Django 3.1 and get this error: > `AttributeError: module 'pipeline.storage' has no attribute 'PipelineCachedStorage'` Did you...

Hi @millerthegorilla, To be able to help you would it be possible to provide: - django-pipeline configuration in your `settings.py` - the tag(s) generated in your template - your directory...

Sorry @millerthegorilla, I'm comeback after a while. So you remove the `not` line **16** inside `pipeline/finders.py`? (I have to get back entirely in the code to understand and see if...

Hi @matheusml, all PR are welcome. As the creator explains it: > Since this project is part of [Jazzband](https://jazzband.co/about), y’all are empowered to contribute and maintain `django-pipeline`. If the functionality...

Please don't do that. `urllib3.util.ssl_` was just a binding to python's `ssl` lib. As the [ssl](https://docs.python.org/3/library/ssl.html)'s documentation mention it: `DEFAULT_CIPHERS` has been replaced by `PROTOCOL_TLS_CLIENT` in last versions. Furthermore, taking...

Just a small mistake in the examples probably due to code/package rework. Just remove the `parser` in the import line, like: ```py from evtx import PyEvtxParser parser = PyEvtxParser("./evtx-supervisor/samples/Security_short_selected.evtx") for...

Hey, thank for the answer. I'm talking to the ability have a default name while not defined in `name_map`. The use case is: I define workspace's names for 1, 2...

I took a moment to think about the best way to present it. Let's say I want to put the same icon via for my 10 workspaces. I'll need to...

Hi @D-Pavlov, My monkey solution (for the moment) was to [manually rollback](https://github.com/jazzband/django-pipeline/pull/694/files) to have the old behavior how doesn't generate temporaries files. I will work on a more general fix...