Re: Dojo Editor2 invocation from Django

2006-09-07 Thread patrickk
the filebrowser is free, of course: http://www.vonautomatisch.at/django/filebrowser/ I´ve read on the mailinglist that some other people are working on filebrowsers too. so there might come up something better. integrating with fck: no copy/paste - in the fck image-dialog-window, you have an i

Re: Dojo Editor2 invocation from Django

2006-09-07 Thread Gábor Farkas
patrickk wrote: > no, I didn´t use the singe file-upload provided by fck. > what I did is here: > http://www.vonautomatisch.at/django/filebrowser/fck_with_filebrowser.jpg > > but I think that it´s easy to customize the fck-upload. > wow, very nice is this a freely available component by an

Re: Dojo Editor2 invocation from Django

2006-09-07 Thread patrickk
no, I didn´t use the singe file-upload provided by fck. what I did is here: http://www.vonautomatisch.at/django/filebrowser/fck_with_filebrowser.jpg but I think that it´s easy to customize the fck-upload. patrick Am 07.09.2006 um 00:31 schrieb gabor: > > patrickk wrote: >> I´ve been able to us

Re: Dojo Editor2 invocation from Django

2006-09-07 Thread patrickk
I don´t really get why you have html-code in your view. if you just want to test the editor, why not use direct_to_template: see http://www.djangoproject.com/documentation/generic_views/#django- views-generic-simple-redirect-to Am 07.09.2006 um 05:43 schrieb Gloria: > > OK, so here is what I'm

Re: Dojo Editor2 invocation from Django

2006-09-06 Thread Gloria
OK, so here is what I'm trying to render from the Django view (so I don't have to deal with the correct way to reference static content just yet): # Create your views here. from django.http import HttpResponse def index(request): return HttpResponse(''' dojo.require("dojo.widget.Edito

Re: Dojo Editor2 invocation from Django

2006-09-06 Thread gabor
patrickk wrote: > I´ve been able to use my filebrowser with fckeditor within hours. I > ´ve customized the upload- and link-dialogs and everything works fine. > on the other hand, just take a look at the tinymce-configuration > (there´s a lot you can do). did you connect the upload-dialog to d

Re: Dojo Editor2 invocation from Django

2006-09-06 Thread Gloria
Patrick, thank you. I appreciate this feedback. --~--~-~--~~~---~--~~ 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

Re: Dojo Editor2 invocation from Django

2006-09-06 Thread patrickk
I´ve had problems with rich-text-editors for a while now, tested everyone with regards to how easy they are to customize and how clean is the code they generate ... Am 06.09.2006 um 21:51 schrieb Gloria: > > Thank you for your responses. The steps Patrickk lists are > repretitive, > just l

Re: Dojo Editor2 invocation from Django

2006-09-06 Thread Gloria
Thank you for your responses. The steps Patrickk lists are repretitive, just like the ones listed in the link I had referenced, except #4 and the comment below it. Those were helpful, thank you. Re: The bugs in the Dojo Editor2: Are they so serious that you would not consider fixing them if you w

Re: Dojo Editor2 invocation from Django

2006-09-06 Thread patrickk
some points on using the dojoeditor: 1. right now, I don´t recommend it (there´s a new editor2 with lots of bugs) 2. with fckeditor, it´s very easy to connect your own scripts (e.g. your own file uploader) - but there´s still the whole "paragraph-vs- break"-issue when using enter. 3. tinymce

Re: Dojo Editor2 invocation from Django

2006-09-06 Thread Gábor Farkas
Gloria wrote: > Hi there. I found this nifty when I searched for Django and Dojo: > > http://code.djangoproject.com/wiki/AddDojoEditor > > The thread on this link is closed, so I am starting a new one. > > Please explain how I invoke this code. I am fairly new to Django, and > I've avoided java

Dojo Editor2 invocation from Django

2006-09-05 Thread Gloria
Hi there. I found this nifty when I searched for Django and Dojo: http://code.djangoproject.com/wiki/AddDojoEditor The thread on this link is closed, so I am starting a new one. Please explain how I invoke this code. I am fairly new to Django, and I've avoided javascript like the plague over th