Hello

Im trying to give enough information in first post so you could help
me if you can or want to. For that reason this post might turn out bit
long.

I found tinymce pluggable for django - http://code.google.com/p/django-tinymce/
- and ive been trying to implement it.

following instructions i entered such things into my settings.py:

TINYMCE_JS_URL = MEDIA_URL + '/tinyMCE/jscripts/tiny_mce/tiny_mce.js'
TINYMCE_JS_ROOT = MEDIA_ROOT + '/tinyMCE/jscripts/tiny_mce/'
TINYMCE_DEFAULT_CONFIG = {
        'plugins': "table,spellchecker,paste,searchreplace",
        'theme': "simple",
        'cleanup_on_startup': True,
        'custom_undo_redo_levels': 10,
        }
TINYMCE_SPELLCHECKER = False

Conf for MEDIA_URL and MEDIA_ROOT are:
= '/home/zay2/Django/djangomedia/'

The script itself is in fact located in folder

/home/zay2/Django/djangomedia/tinyMCE/jscripts/tiny_mce

So hopefully everything is correct. I also made required additions to
installed apps and my urlconf.

Now i have this line in my template :

<script type="text/javascript" src="{{ MEDIA_URL }}/tinyMCE/jscripts/
tiny_mce/tiny_mce.js"></script>

When i load the page the JS gets 404 - i can see it with firebug
(www.getfirebug.com). Resposne to the script request is:

      Using the URLconf defined in <code>mce.urls</code>,
      Django tried these URL patterns, in this order:

^   ^$
^   ^lang/(?P&lt;lang_id&gt;\d+)$
^   ^tinymce/
^admin/(.*)

The current URL, <code>tinyMCE/jscripts/tiny_mce/tiny_mce.js</code>,
didn't match any of these
(i cut out the markup)

Can anyone tell me where is the problem? Is it my settings or is this
django lightweight test-webserver unable to use those paths to
javascript and i have to install apache instead?

Alan
--~--~---------~--~----~------------~-------~--~----~
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