From 953dab39784d95a87a79362c902fa108af946314 Mon Sep 17 00:00:00 2001 From: Ross Poulton Date: Fri, 6 May 2011 16:55:42 +1000 Subject: [PATCH] Fix a few formatting errors introduced in last commit. --- README.rst | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/README.rst b/README.rst index d1fff2fd..7311ba59 100644 --- a/README.rst +++ b/README.rst @@ -63,37 +63,37 @@ ensure the latest changes are in use. You can continue to the 'Initial Configuration' area, if needed. -DJANGO 1.2.x and latest version of django-helpdesk +Django 1.2.x and latest version of django-helpdesk ================================================== -If you are running django 1.2.x then you will need to install django-staticfiles +If you are running Django 1.2.x then you will need to install django-staticfiles (http://pypi.python.org/pypi/django-staticfiles/) and add the following to your -existing settings.py and urls.py files: +existing `settings.py` and `urls.py` files: -settings.py: -MEDIA_ROOT = '/var/www/media/' -MEDIA_URL = '/media/' -STATIC_ROOT = '/var/www/static/' -STATIC_URL = '/static/' +settings.py:: + MEDIA_ROOT = '/var/www/media/' + MEDIA_URL = '/media/' + STATIC_ROOT = '/var/www/static/' + STATIC_URL = '/static/' -INSTALLED_APPS = ( - 'staticfiles', -) + INSTALLED_APPS = ( + 'staticfiles', + ) -TEMPLATE_CONTEXT_PROCESSORS = ( - 'staticfiles.context_processors.static', -) + TEMPLATE_CONTEXT_PROCESSORS = ( + 'staticfiles.context_processors.static', + ) -urls.py: -from staticfiles.urls import staticfiles_urlpatterns -urlpatterns += staticfiles_urlpatterns() +urls.py:: + from staticfiles.urls import staticfiles_urlpatterns + urlpatterns += staticfiles_urlpatterns() -then do: -$ cd /var/www -$ mkdir static -$ cd static -$ ln -sf /path/to/helpdesk/static/helpdesk/ helpdesk +Once those changes are made, run the following commands to take a copy of the static files:: + $ cd /var/www + $ mkdir static + $ cd static + $ ln -sf /path/to/helpdesk/static/helpdesk/ helpdesk Installation ============