diff --git a/README.md b/README.md index 43a75e8..998093e 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ Startproject is a starting point for creating websites with Django Fiber. ## Using: -* Django (1.5.1) -* Django Fiber (0.10.4) +* Django (1.5.4) +* Django Fiber (0.11.0) * MySQL python (1.2.4) -* South (0.8.1) +* South (0.8.2) * Normalize (2.1.2) * jQuery (1.10.1) * Modernizr (2.6.2) diff --git a/requirements.txt b/requirements.txt index 2379a63..08e35c8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Django==1.5.2 +Django==1.5.4 MySQL-python==1.2.4 South==0.8.2 -django-fiber==0.10.5 +django-fiber==0.11.0 diff --git a/startproject/settings_default.py b/startproject/settings_default.py index 5238481..2c89330 100644 --- a/startproject/settings_default.py +++ b/startproject/settings_default.py @@ -54,7 +54,7 @@ # Absolute filesystem path to the directory that will hold user-uploaded files. # Example: "/home/media/media.lawrence.com/media/" -MEDIA_ROOT = os.path.join(BASE_DIR, 'media') +MEDIA_ROOT = os.path.join(BASE_DIR, 'media', '') # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash. @@ -65,7 +65,7 @@ # Don't put anything in this directory yourself; store your static files # in apps' "static/" subdirectories and in STATICFILES_DIRS. # Example: "/home/media/media.lawrence.com/static/" -STATIC_ROOT = os.path.join(BASE_DIR, 'static') +STATIC_ROOT = os.path.join(BASE_DIR, 'static', '') # URL prefix for static files. # Example: "http://media.lawrence.com/static/" @@ -121,6 +121,7 @@ 'mptt', 'compressor', 'south', + 'easy_thumbnails', 'fiber', # Django