Python Forum
editor of site - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: editor of site (/thread-2807.html)



editor of site - shahpy - Apr-12-2017

hello

i have question:
what is the of the editor of this site?
can i have it with django?

i mean the environment that i'm typing it right now, what is the name of it?
tnx


RE: editor of site - metulburr - Apr-12-2017

you mean the text editor? What do you mean specifically besides an entry box and some buttons?


RE: editor of site - wavic - Apr-12-2017

I came across this editor written in Python but can't find it now. Meanwhile, look at this. It's JS.
This may help too: http://django-fluent-contents.readthedocs.io/en/latest/index.html


I've found this too. It looks quite promising
I forgot http://ckeditor.com/Cool


RE: editor of site - shahpy - Apr-12-2017

(Apr-12-2017, 02:05 AM)metulburr Wrote: you mean the text editor? What do you mean specifically besides an entry box and some buttons?
yes my point was a text editor.

i like text editor of this site because :
The user can't upload image and he/she have to give url of image.
but now i Know i can use ckeditor thanks to wavic.


actually i change my code from this:
from ckeditor_uploader.fields import RichTextUploadingField
text = RichTextUploadingField()
to this:

from ckeditor.fields import RichTextField
text = RichTextField()



RE: editor of site - metulburr - Apr-12-2017

(Apr-12-2017, 02:31 PM)shahpy Wrote: i like text editor of this site because :
The user can't upload image and he/she have to give url of image.
You can actually upload images as attachments.


RE: editor of site - shahpy - Apr-12-2017

excuse me kebap

    print("i don't repeat that mistake again")