Re: TinyMCE config

2012-08-05 Thread Aljoša Mohorović
On Fri, Aug 3, 2012 at 6:20 PM, Jonathan Baker wrote: > If you're up for it, I'd love to help update the documentation to save > future users (and yourself) some time with the issues I ran in to. sure, just send pull requests for https://github.com/aljosa/django-tinymce Aljosa -- https://twitter

Re: TinyMCE config

2012-08-03 Thread Jonathan Baker
Success! Thanks for all the help. After integrating your app with the FlatPage app I was able to integrate it with FlatBlock as well. If you're up for it, I'd love to help update the documentation to save future users (and yourself) some time with the issues I ran in to. JDB On Fri, Aug 3, 2012

Re: TinyMCE config

2012-08-03 Thread Aljoša Mohorović
documentation is not completely updated so steps in previous emails are correct. i won't be available until next week but check second snippet under: http://django-tinymce.readthedocs.org/en/latest/usage.html#the-flatpages-link-list-view and be sure that you have something like: """ admin.site.unr

Re: TinyMCE config

2012-08-02 Thread Jonathan Baker
"Remember that the Django admin overrides form fields based on their base" I'm not following what you're saying here. I'm pretty new to Django and just followed the example in the app's documentation. Any tips? On Thu, Aug 2, 2012 at 8:21 PM, Melvyn Sopacua wrote: > On 2-8-2012 23:53, Jonathan Ba

Re: TinyMCE config

2012-08-02 Thread Melvyn Sopacua
On 2-8-2012 23:53, Jonathan Baker wrote: > Thanks for the responses, but I'm still stuck. For now, I'm just trying to > add TinyMCE to FlatPages within the Django admin app. Yet another victim of formfield_overrides? Remember that the Django admin overrides form fields based on their base class. -

Re: TinyMCE config

2012-08-02 Thread Jonathan Baker
Thanks for the responses, but I'm still stuck. For now, I'm just trying to add TinyMCE to FlatPages within the Django admin app. When I visit http://127.0.0.1:8000/admin/flatpages/flatpage/add/ the 'content' textarea is rendered without the WYSiWYG, and I don't see any 404s in the terminal looking

Re: TinyMCE config

2012-08-02 Thread Aljoša Mohorović
On Thu, Aug 2, 2012 at 3:19 AM, jondbaker wrote: > TINYMCE_JS_URL = os.path.join(PROJECT_ROOT, > 'templates/static/js/tiny_mce/tiny_mce.js') > TINYMCE_JS_ROOT = os.path.join(PROJECT_ROOT, 'templates/static/js/tiny_mce') You don't need to set TINYMCE_JS_URL/TINYMCE_JS_ROOT because it is set automa

Re: TinyMCE config

2012-08-01 Thread Mike Dewhirst
On 2/08/2012 1:37pm, Jonathan Baker wrote: Thanks Mike. 'tinymce' is included in INSTALLED_APPS because I'm using the app located here: https://github.com/aljosa/django-tinymce/ . I saw a few comments around the web that suggested that this was the route to go to easily integrate TinyMCE. Sorry

Re: TinyMCE config

2012-08-01 Thread Jonathan Baker
Thanks Mike. 'tinymce' is included in INSTALLED_APPS because I'm using the app located here: https://github.com/aljosa/django-tinymce/ . I saw a few comments around the web that suggested that this was the route to go to easily integrate TinyMCE. I've made a few adjustments to no avail. The app is

Re: TinyMCE config

2012-08-01 Thread Mike Dewhirst
On 2/08/2012 11:19am, jondbaker wrote: I'm trying to install django-tinymce so that I can use utilize it within the admin when editing flatpages and flatblocks. I've been following the instructions at http://django-tinymce.readthedocs.org/en/latest/installation.html, but I can't seem to get TinyM

TinyMCE config

2012-08-01 Thread jondbaker
I'm trying to install django-tinymce so that I can use utilize it within the admin when editing flatpages and flatblocks. I've been following the instructions at http://django-tinymce.readthedocs.org/en/latest/installation.html, but I can't seem to get TinyMCE to display. django-tinymce has bee