我刚刚在我的django应用程序中安装了django-pipeline,它似乎没有压缩我的javascript文件。它似乎安装正确,因为模板标签正常工作。我正在使用manage.py collectstatic来压缩文件。这是我目前的配置。我还设置了我的应用程序,根据django-pipeline文档使用django-staticfiles,因为我正在使用Django 1.3。
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'site_media', 'static')
STATIC_URL = '/site_media/static/'
ADMIN_MEDIA_PREFIX = '/site_media/static/admin/'
STATICFILES_DIRS = (
os.path.join(PROJECT_ROOT, "media"),
)
STATICFILES_FINDERS = (
##Turn these on if using django.contrib.staticfiles
##'django.contrib.staticfiles.finders.FileSystemFinder',
##'django.contrib.staticfiles.finders.AppDirectoriesFinder',
##'django.contrib.staticfiles.finders.DefaultStorageFinder',
##Turn these on if using django.contrib.staticfiles
'staticfiles.finders.FileSystemFinder',
'staticfiles.finders.AppDirectoriesFinder',
'staticfiles.finders.DefaultStorageFinder'
)
PREREQ_APPS = [
# Django
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
#External
'south',
'staticfiles',
'pipeline',
]
PIPELINE_YUI_BINARY='/Applications/yuicompressor-2.4.7/build/yuicompress'
PIPELINE_JS = {
'site': {
'source_filenames': (
'js/libs/ddsmoothmenu.js',
'js/script.js',
),
'output_filename': 'js/script.min.js',
}
}
我不确定我在这里缺少什么,但我确定这是件事。我没有得到任何错误消息或任何东西,它只是没有压缩。
感谢您的帮助!
答案 0 :(得分:1)
您的设置中有DEBUG=True
吗?尝试添加PIPELINE=True
以确保它运行压缩
答案 1 :(得分:1)
您是否设置了静态文件:
STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
如果是:
你的js文件最终是空的吗?
'/Applications/yuicompressor-2.4.7/build/yuicompress'
是可执行脚本吗?