javascript - CKEditor filemanager in python -


i'm creating app using flask (a small python framework) , i'm trying integrate ckeditor , filemanager (https://github.com/simogeo/filemanager) i'm not being able it.

i've followed readme, changed filemanager.config.js python language, added urls ckeditor config nothing (no new buttons, no browse or upload).

    filemanager: filemanager.config.js     "options": {         "culture": "en",         "lang": "python",         (...) 

and

ckeditor: config.js     config.filebrowserbrowseurl: 'http://localhost:5000/static/js/filemanager/index.html'     config.filebrowserimagebrowseurl = 'http://localhost:5000/static/js/filemanager/index.html?type=images&currentfolder=/image/';     config.filebrowserflashbrowseurl = 'http://localhost:5000/static/js/filemanager/index.html?type=flash&currentfolder=/flash/';     config.filebrowseruploadurl = 'http://localhost:5000/static/js/filemanager/connectors/php/filemanager.cfm?mode=add&type=files&currentfolder=/file/';     config.filebrowserimageuploadurl = 'http://localhost:5000/static/js/filemanager/connectors/php/filemanager.cfm?mode=add&type=images&currentfolder=/image/';     config.filebrowserflashuploadurl = 'http://localhost:5000/static/js/filemanager/connectors/php/filemanager.cfm?mode=add&type=flash&currentfolder=/flash/'; 

i need able browse , upload files in ckeditor/python. can me please.

thank you

i'm main filemanager mentioned above. said in readme file, "since many changes have been done recently, php , mvc connectors available".

the release 0.8 may work python. (i'm not sure).

if here wants adapt existing python connector support fm last version, great python community.


Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -