I have installed TinyMCE to my machine but I cant get it to appear in
my admin screen. I am working through "Practical Django Projects" by
James Bennett chapter 3. I am using windows not Linux so sometimes my
errors are simply forward vs. backwards slashes but it doesn't appear
to be the issue this time.


Here is my urls.py file

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/', include(admin.site.urls)),
    (r'^tiny_mce/(?P<path>.*)$', 'django.views.static.serve',
                          { 'document_root': 'C:/cms/tinymce/jscripts/
tiny_mce' },),
    (r'', include('django.contrib.flatpages.urls'))
)

Here is my change_form.html

{% extends "admin/base_site.html" %}
{% load i18n admin_modify adminmedia %}

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

TinyMCE is here: C:\cms\tinymce\jscripts\tiny_mce\tiny_mce.js
Change_form is her: C:\cms\templates\admin\flatpages\flatpage
\change_form.html

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to