Re: Can't get tiny_mce in admin

2008-11-23 Thread waltbrad
On Nov 23, 9:00 pm, waltbrad <[EMAIL PROTECTED]> wrote: > On Nov 22, 9:09 pm, waltbrad <[EMAIL PROTECTED]> wrote: > > > I'm working with James Bennet's book Practical Django Projects. He > > puts a tiny_mce text editor into the admin flatpage interface. > > Just want to chime in one more time to

Re: Can't get tiny_mce in admin

2008-11-23 Thread waltbrad
On Nov 22, 9:09 pm, waltbrad <[EMAIL PROTECTED]> wrote: > I'm working with James Bennet's book Practical Django Projects. He > puts a tiny_mce text editor into the admin flatpage interface. > > I have this in the change_form.html, (at the proper place, I > checked it umpteen times): > =

Re: Can't get tiny_mce in admin

2008-11-23 Thread waltbrad
On Nov 22, 9:37 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Sat, 2008-11-22 at 18:09 -0800, waltbrad wrote: > > [...] > > >     # Uncomment the next line to enable the admin: > >     (r'^admin/(.*)', admin.site.root), > >    (r'^tiny_mce/(?P.*)$', 'django.views.static.serve', > > { 'd

Re: Can't get tiny_mce in admin

2008-11-22 Thread Malcolm Tredinnick
On Sat, 2008-11-22 at 18:09 -0800, waltbrad wrote: [...] > # Uncomment the next line to enable the admin: > (r'^admin/(.*)', admin.site.root), > (r'^tiny_mce/(?P.*)$', 'django.views.static.serve', > { 'document_root': 'C:\tinymce\jscripts\tiny_mce' }), The string 'C:\tinymce\jscrip

Can't get tiny_mce in admin

2008-11-22 Thread waltbrad
I'm working with James Bennet's book Practical Django Projects. He puts a tiny_mce text editor into the admin flatpage interface. I have the change_form.html on this path C:\mytemplates\admin\flatpages \flatpage tiny_mce.js is found here: C:\tinymce\jscripts\tiny_mce This is my urls.py: ==