Hello,

I'm trying to implement django-cms.  The CMS pages in admin display,
but not with the editing someone without html knowledge will be able
to use.  I see no tinymce options. I've placed tinymce in several
places hoping somehow it would display where I need it.

Using this statement in a firefox browser:
http://127.0.0.1:8000/site_media/tiny_mce/tiny_mce.js

I see this displayed:
var tinymce=
{majorVersion:"3",minorVersion:"2.3",releaseDate:"2009-04-23",_init:function
(){var o=this,k=document, etc.....

My setting.py file:
MEDIA_ROOT = 'c:/django/myprograms/site_media/'
MEDIA_URL = 'http://127.0.0.1:8000/site_media/'

TINYMCE_JS_URL = 'http://127.0.0.1:8000/site_media/js/tiny_mce/
tiny_mce.js'
TINYMCE_JS_ROOT = 'c:/django/myprograms/site_media/js/tiny_mce'
TINYMCE_DEFAULT_CONFIG = {
    'plugins': "table,spellchecker,paste,searchreplace",
    'theme': "advanced",
    'cleanup_on_startup': True,
    'custom_undo_redo_levels': 10,
}

TINYMCE_SPELLCHECKER = False
TINYMCE_COMPRESSOR = False
TINYMCE_FILEBROWSER = True

CMS_USE_TINYMCE = True

INSTALLED_APPS = (
    'cms',
    'tinymce',
    'filebrowser',
)

I''ve not found any download files with the uppercase TinyMce, but
only tinymce
or tiny_mce.
--~--~---------~--~----~------------~-------~--~----~
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