This scenario has been brought up before, but I'm having a problem
that hasn't yet been reported. I was unable to reply to the whole list
in the google groups interface - only "Reply to author" was available.
Here's the thread for reference:
http://groups.google.com/group/django-users/browse_thread/thread/c1f111291e1e45f1/ce9f9f28da72388a?lnk=gst&q=development+server+slash+404#

In short, I'm going through the Practical Django Projects book, trying
to get the tiny_mce configuration on pages 24 and 25 to work, and I'm
having zero luck. I'm using Django 1.0, and the development server, on
a mac, running Leopard.

It looks like I have the urls.py and change_form.html set up properly,
but the problem is that whether I try to load the admin page, or I try
to access tiny_mce.js directly in my browser from the django
development server, the dev server is redirecting me (302) to the same
path I ask for, except with a "/" at the end. So I get this in my
log:

[07/Oct/2008 08:48:31] "GET /tiny_mce.js HTTP/1.1" 302 0
[07/Oct/2008 08:48:31] "GET /tiny_mce.js/ HTTP/1.1" 404 1708

Of course, that's no good, but I have no idea where the magical
setting is to change that. I've tried removing/replacing trailing
slashes all over the place, to no avail, so I imagine this is
something in the settings.py file that's hurting me. Here are my
files:

urls.py:
================================
from django.conf.urls.defaults import *

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    # Example:
    # (r'^cms/', include('cms.foo.urls')),

    # Uncomment the admin/doc line below and add
'django.contrib.admindocs'
    # to INSTALLED_APPS to enable admin documentation:
     (r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
     (r'^admin/(.*)', admin.site.root),
     (r'', include('django.contrib.flatpages.urls')),
     (r'^tiny_mce/(?P<path>.*)$', 'django.views.static.serve',
{'document_root':'/Users/jonesy/django/tinymce/jscripts'}),
)
==================================

change_form.html (just the relevant section)
==================================
{% extends "admin/base_site.html" %}
{% load i18n admin_modify adminmedia %}

{% block extrahead %}{{ block.super }}
<script type="text/javascript" src="../../../jsi18n/"></script>
<script type="text/javascript" src="/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
   mode: "textareas",
   theme: "simple"
});
</script>

{{ media }}
{% endblock %}
======================================

settings.py
======================================
# Django settings for cms project.

DEBUG = True
TEMPLATE_DEBUG = DEBUG

ADMINS = (
    # ('Your Name', '[EMAIL PROTECTED]'),
)

MANAGERS = ADMINS

DATABASE_ENGINE = 'mysql'           # 'postgresql_psycopg2',
'postgresql', 'mysql', 'sqlite3' or 'oracle'.
DATABASE_NAME = 'cms'             # Or path to database file if using
sqlite3.
DATABASE_USER = 'jonesy'             # Not used with sqlite3.
DATABASE_PASSWORD = 'whatever'         # Not used with sqlite3.
DATABASE_HOST = 'localhost'             # Set to empty string for
localhost. Not used with sqlite3.
DATABASE_PORT = ''             # Set to empty string for default. Not
used with sqlite3.

# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as
your
# system time zone.
TIME_ZONE = 'America/New_York'

# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-us'

SITE_ID = 1

# If you set this to False, Django will make some optimizations so as
not
# to load the internationalization machinery.
USE_I18N = True

# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = ''

# URL that handles the media served from MEDIA_ROOT. Make sure to use
a
# trailing slash if there is a path component (optional in other
cases).
# Examples: "http://media.lawrence.com";, "http://example.com/media/";
MEDIA_URL = ''

# 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 = '/media/'

# Make this unique, and don't share it with anybody.
SECRET_KEY = '=f++nfum([EMAIL PROTECTED])n+mk8lh^%ad3%=898p)41-4$vwg13'

# List of callables that know how to import templates from various
sources.
TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.load_template_source',
    'django.template.loaders.app_directories.load_template_source',
#     'django.template.loaders.eggs.load_template_source',
)

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
)

ROOT_URLCONF = 'cms.urls'

TEMPLATE_DIRS = ('/Users/jonesy/django/cms/templates',
    # 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.
)

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.admin',
    'django.contrib.flatpages',
    'django.contrib.admindocs',
)
================================

I think I've followed things pretty precisely, so this is probably a
v1.0 change. Can someone point me in the right direction?

Thanks,
brian

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to