From d1bf06b39f54fab1be466d45460c9f3fd15ee7d8 Mon Sep 17 00:00:00 2001 From: Corey Oordt Date: Thu, 16 Dec 2010 11:47:08 -0500 Subject: [PATCH] Don't need to set that EDITOR_MEDIA_PATH any more --- example/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/example/settings.py b/example/settings.py index eb772bb..59b66d1 100644 --- a/example/settings.py +++ b/example/settings.py @@ -72,6 +72,7 @@ TEMPLATE_DIRS = ( # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. + os.path.abspath(os.path.join(os.path.dirname(__file__), 'templates')), ) INSTALLED_APPS = ( @@ -86,6 +87,6 @@ INSTALLED_APPS = ( 'mptt', 'simpletext', ) -EDITOR_MEDIA_PATH = '/static/editor/' +#EDITOR_MEDIA_PATH = '/static/editor/' CATEGORIES_ALLOW_SLUG_CHANGE = True CATEGORIES_RELATION_MODELS = ['simpletext.simpletext','flatpages.flatpage'] \ No newline at end of file