Changeset - a17d2e031d08
[Not reviewed]
0 2 0
Luke Hatcher - 12 years ago 2012-10-31 00:46:36
lukeman@gmail.com
remove django compressor as it's unused
2 files changed with 0 insertions and 10 deletions:
0 comments (0 inline, 0 general)
requirements.txt
Show inline comments
...
 
@@ -16,13 +16,12 @@ django-forms-bootstrap==2.0.3.post1
 
metron==0.1 # 0.2.dev3
 
pinax-utils==1.0b1.dev3
 
django-debug-toolbar==0.9.4
 
django-mailer==0.2a1
 
django-timezones==0.2
 
pytz==2012d
 
django_compressor==1.2a1
 
django-model-utils==1.1.0
 

	
 
django-mptt==0.5.2
 
django-taggit==0.9.3
 
django-reversion==1.6.1
 
django-markitup==1.0.0
symposion_project/settings.py
Show inline comments
...
 
@@ -10,16 +10,12 @@ PACKAGE_ROOT = os.path.abspath(os.path.dirname(__file__))
 
DEBUG = True
 
TEMPLATE_DEBUG = DEBUG
 

	
 
# tells Pinax to serve media through the staticfiles app.
 
SERVE_MEDIA = DEBUG
 

	
 
# django-compressor is turned off by default due to deployment overhead for
 
# most users. See <URL> for more information
 
COMPRESS = False
 

	
 
INTERNAL_IPS = [
 
    "127.0.0.1",
 
]
 

	
 
ADMINS = [
 
    # ("Your Name", "your_email@domain.com"),
...
 
@@ -77,23 +73,19 @@ STATICFILES_DIRS = [
 
    os.path.join(PACKAGE_ROOT, "static"),
 
]
 

	
 
STATICFILES_FINDERS = [
 
    "django.contrib.staticfiles.finders.FileSystemFinder",
 
    "django.contrib.staticfiles.finders.AppDirectoriesFinder",
 
    "compressor.finders.CompressorFinder",
 
]
 

	
 
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
 
# trailing slash.
 
# Examples: "http://foo.com/media/", "/media/".
 
ADMIN_MEDIA_PREFIX = posixpath.join(STATIC_URL, "admin/")
 

	
 
# Subdirectory of COMPRESS_ROOT to store the cached media files in
 
COMPRESS_OUTPUT_DIR = "cache"
 

	
 
# Make this unique, and don't share it with anybody.
 
SECRET_KEY = "8*br)9@fs!4nzg-imfrsst&oa2udy6z-fqtdk0*e5c1=wn)(t3"
 

	
 
# List of callables that know how to import templates from various sources.
 
TEMPLATE_LOADERS = [
 
    "django.template.loaders.filesystem.Loader",
...
 
@@ -144,13 +136,12 @@ INSTALLED_APPS = [
 
    # theme
 
    "pinax_theme_bootstrap_account",
 
    "pinax_theme_bootstrap",
 
    "django_forms_bootstrap",
 
    
 
    # external
 
    "compressor",
 
    "debug_toolbar",
 
    "mailer",
 
    "timezones",
 
    "metron",
 
    "markitup",
 
    "taggit",
0 comments (0 inline, 0 general)