manifesto icon indicating copy to clipboard operation
manifesto copied to clipboard

Pluggable cache manifest for Django

Results 7 manifesto issues
Sort by recently updated
recently updated
newest added

Error : ``` File "/home/sebastien/.virtualenvs/x/local/lib/python2.7/site-packages/manifesto/__init__.py", line 6, in from django.utils import importlib ImportError: cannot import name importlib ``` `django.utils.importlib` was deprecated in Django 1.7 and removed in Django 1.9. Change...

Please provide some introduction what this project is about.

I overrided pipeline's built-in manifest in order to make some local changes, and added `pipeline.manifest.PipelineManifest` to `MANIFESTO_EXCLUDED_MANIFESTS` but I was getting entries in the manifest from both `PipelineManifest` and my...

Firstly, my apologies for not submitting this as two pull requests (this is the result of some major git issues and me being tired). The updated usage does probably gives...

I'm glad that you've got some kind of README and some docs on RTD, but nowhere is the purpose of this module explained. I think I have an idea of...

``` class StaticManifest(Manifest): def cache(self): return [ u'/static/blah.js', ] def network(self): return [u'test1', u'test2'] def fallback(self): return [ ('/', '/offline.html'), ] ``` The first access of the manifest works correctly....

Hello, thanks for this app I have a problem integrating manifesto as app in my django project, but my principal question is: Is there a easy way to add a...