Re: WYSIWYG/Rich Text Editor recommendations

2019-05-06 Thread Tim Johnson
* Joel Mathew [190430 17:29]: > Currently I'm using quill. It's easy to implement, and has all basic > features. Joel - perhaps you could check out another thread I started: subject - "quill tries to import deprecated django.forms.util" What version of django are you using? thanks again -

Re: WYSIWYG/Rich Text Editor recommendations

2019-05-04 Thread Swatantra Kumar
Hi Tim, As your requirement is of a WYSIWYG editor, I often use CKEditor javascript library directly in my Django projects as I can't get any alternative which can provide features such as image/attachment upload, link pages, etc which are available with CKEditor. Also, check this Django CKEditor

Re: WYSIWYG/Rich Text Editor recommendations

2019-05-04 Thread Tim Johnson
* Tim Johnson [190430 16:27]: > Using python 3.7.2 and django 2.1.5 > > Production is in Ubuntu 16.04 and prospective deployment is likely > to be CentOS with same python/django. > > I'm a retired python developer. > > I'd welcome recommendations and/or caveats regarding a stable > WYSIWIG "pl

Re: WYSIWYG/Rich Text Editor recommendations

2019-05-02 Thread Andréas Kühne
I would second for quill - the main thing with that editor is that it doesn't store the HTML internally - this means that you can copy / paste from word for example without all of the strange html that comes with that. It is more restrictive than tinymce or the likes, but much better! Regards, An

Re: WYSIWYG/Rich Text Editor recommendations

2019-05-02 Thread Lance Haig
Hi Tim, I used django-tinymce4-lite for my app https://github.com/lhaig/usery It works well from my perspective and gives a light editor. Regards Lance On 5/1/19 2:17 AM, Tim Johnson wrote: Using python 3.7.2 and django 2.1.5 Production is in Ubuntu 16.04 and prospective deployment is lik

Re: WYSIWYG/Rich Text Editor recommendations

2019-04-30 Thread Tim Johnson
* Joel Mathew [190430 17:29]: > Currently I'm using quill. It's easy to implement, and has all basic > features. Cool. Thanks for that Joel. > > I'd like to recreate the same functionality with django. I will need > > to be able to include embedded images. -- Tim Johnson http://www.tj49.com

Re: WYSIWYG/Rich Text Editor recommendations

2019-04-30 Thread Joel Mathew
Currently I'm using quill. It's easy to implement, and has all basic features. Sincerely yours, Joel G Mathew On Wed, 1 May 2019 at 05:47, Tim Johnson wrote: > Using python 3.7.2 and django 2.1.5 > > Production is in Ubuntu 16.04 and prospective deployment is likely > to be CentOS with same

WYSIWYG/Rich Text Editor recommendations

2019-04-30 Thread Tim Johnson
Using python 3.7.2 and django 2.1.5 Production is in Ubuntu 16.04 and prospective deployment is likely to be CentOS with same python/django. I'm a retired python developer. I'd welcome recommendations and/or caveats regarding a stable WYSIWIG "plugin". Much is available on google, but it is al

Re: rich text editor

2013-07-18 Thread Andre Terra
here are solutions tailored for use with Django >>>> [1][2] >>>> >>>> [0] http://en.wikipedia.org/wiki/BBCode >>>> [1] https://github.com/marcinn/django-bbcode full solution >>>> [2] http://djangosnippets.org/snippets/853/ old (0.96!), but should be

Re: rich text editor

2013-07-18 Thread Kakar Arunachal Service
/wiki/BBCode >>> [1] https://github.com/marcinn/django-bbcode full solution >>> [2] http://djangosnippets.org/snippets/853/ old (0.96!), but should be >>> a place to start in case you want to rollout your own. >>> >>> >>> Cheers, >>> A

Re: rich text editor

2013-07-18 Thread Andre Terra
e full solution >> [2] http://djangosnippets.org/snippets/853/ old (0.96!), but should be a >> place to start in case you want to rollout your own. >> >> >> Cheers, >> AT >> >> On Thu, Jul 18, 2013 at 7:24 AM, Kakar Arunachal Service < >> ka

Re: rich text editor

2013-07-18 Thread Kakar Arunachal Service
want to rollout your own. > > > Cheers, > AT > > On Thu, Jul 18, 2013 at 7:24 AM, Kakar Arunachal Service < > kakararunachalserv...@gmail.com> wrote: > >> Hello, >> Just a thought, can a rich text editor be integrated to a social >> networking site. Or s

Re: rich text editor

2013-07-18 Thread Andre Terra
rvice < kakararunachalserv...@gmail.com> wrote: > Hello, > Just a thought, can a rich text editor be integrated to a social > networking site. Or should every user have a css each? Its just a thought, > was just wondering but would be glad if any of you could advice me how to > if

rich text editor

2013-07-18 Thread Kakar Arunachal Service
Hello, Just a thought, can a rich text editor be integrated to a social networking site. Or should every user have a css each? Its just a thought, was just wondering but would be glad if any of you could advice me how to if its possible. Thank you. -- You received this message because you are

Re: Rich text editor in Admin tool

2008-04-04 Thread Jared Dobson
Yeap, A google search returned these two howtos: Using Dojo's Rich Text Editor: http://code.djangoproject.com/wiki/AddDojoEditor And using tinymce. :-) http://www.dehora.net/journal/2006/05/using_tinymce_in_djangos_admin.html Good luck. :-) Thanks, Jared On Fri, Apr 4, 2008 at 9:00 AM, b

Rich text editor in Admin tool

2008-04-04 Thread bcurtu
Is it possible to configure the Admin Interface to use a Rich text editor to edit texts and add fomatted content? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this g

Re: Rich text editor

2007-03-02 Thread leland
i agree - tiny_mce is SUPER easy to implement. also - check out your line: js = 'media/js/admin/AddRichTextEditing.js' view the source on your admin page and look at the src attribute of the

Re: Rich text editor

2007-03-02 Thread Kenneth Gonsalves
On 02-Mar-07, at 6:51 PM, Alessandro Ronchi wrote: > Is there some other better editor? try tiny_mce - well documented in django wiki and mailing list -- regards kg http://lawgon.livejournal.com http://nrcfosshelpline.in/web/ --~--~-~--~~~---~--~~ You recei

Rich text editor

2007-03-02 Thread Alessandro Ronchi
Hi to all. I'm trying to add a rich text editor to a field of my model, following the tutorial on http://code.djangoproject.com/wiki/AddDojoEditor I have this directory structure: ./ ./gallery ./gallery/locale ./gallery/locale/it ./gallery/models.py ./gallery/views.py ./locale ./loca

Re: Rich text editor with code snippets

2006-07-28 Thread tomass
Thanks. Added in the extra Tiny MCE options (like the full screen one), and it works pretty well just using the tags. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, sen

Re: Rich text editor with code snippets

2006-07-26 Thread [EMAIL PROTECTED]
Maybe one of these might help: http://lazutkin.com/blog/2005/aug/26/using_tinymce_djangos_admin/ http://code.djangoproject.com/wiki/AddWYSIWYGEditor http://www.socialistsoftware.com/post/django-and-tinymce/ Chris --~--~-~--~~~---~--~~ You received this message b

Rich text editor with code snippets

2006-07-25 Thread tomass
Hi Folks, I'm wondering which rich text editors people are using in their apps, and if any of them (that have been successfully integrated into the admin app) have the capability to display code snippets. Basically, what I'm looking for is a code block to render in fixed width font and with all

Re: Rich Text Editor for BBCOde?

2006-06-02 Thread Joseph Heck
just something I spotted while reading other folk's code) On 6/2/06, Jeroen Ruigrok van der Werven <[EMAIL PROTECTED]> wrote: On 6/1/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:> Does anyone know of a "fancy" rich text editor component which > generates BBCode inste

Re: Rich Text Editor for BBCOde?

2006-06-02 Thread Jeroen Ruigrok van der Werven
On 6/1/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Does anyone know of a "fancy" rich text editor component which > generates BBCode instead of HTML (or is customizable so that it can be > tailored to generate BBCode)? Maybe even one for which there is a > Dja

Re: Rich Text Editor for BBCOde?

2006-06-01 Thread Jan Claeys
Op do, 01-06-2006 te 11:05 +, schreef [EMAIL PROTECTED]: > Does anyone know of a "fancy" rich text editor component which > generates BBCode instead of HTML (or is customizable so that it can be > tailored to generate BBCode)? Maybe even one for which there is a > Dja

Re: Rich Text Editor for BBCOde?

2006-06-01 Thread [EMAIL PROTECTED]
Scott Anderson wrote: > You're going to have to filter on the server side no matter what the browser > editor produces. ie. if you want to allow someone to post a link, you'll > still have to filter the href of the link posted via BBCode or someone can > just bypass the editor and post the cod

Re: Rich Text Editor for BBCOde?

2006-06-01 Thread Scott Anderson
On Thu, 2006-06-01 at 11:43 +, [EMAIL PROTECTED] wrote: > > All this may sound a bit (very?) paranoid for a small community portal > site. The large number of comment spamming, SPAM and exploits against > phpBB sites, etc. show that some people just don't play fair. You don't > really want th

Re: Rich Text Editor for BBCOde?

2006-06-01 Thread [EMAIL PROTECTED]
Todd O'Bryan wrote: > Is it not sufficient to just look for

Re: Rich Text Editor for BBCOde?

2006-06-01 Thread Todd O'Bryan
On Jun 1, 2006, at 7:05 AM, [EMAIL PROTECTED] wrote: > > I like the Django integration for the various rich text editors, and I > want to give my users the ability to post styled text -- i just don't > want to open the floodgates for all kinds of embedded HTML, with all > the potential exploitable

Rich Text Editor for BBCOde?

2006-06-01 Thread [EMAIL PROTECTED]
Hi. Does anyone know of a "fancy" rich text editor component which generates BBCode instead of HTML (or is customizable so that it can be tailored to generate BBCode)? Maybe even one for which there is a Django integration "Howto"? I like the Django integration for the vario