python中的CKEditor文件管理器

时间:2014-04-14 16:01:40

标签: javascript python flask ckeditor file-manager

我正在使用flask(一个小的python框架)创建一个应用程序,我正在尝试集成CKEditor和filemanager(https://github.com/simogeo/Filemanager),但我无法做到这一点

我已经按照自述文件,将filemanager.config.js更改为python语言,将网址添加到ckeditor配置但没有(没有新按钮,没有浏览或上传)。

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

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/';

我真的需要能够在ckeditor / python中浏览和上传文件。有人可以帮帮我吗。

谢谢

1 个答案:

答案 0 :(得分:0)

我是您上面提到的主要Filemanager。如自述文件中所述" ,因为最近已经进行了许多更改,现在只有PHP和MVC连接器可用"。

release 0.8可能适用于Python。 (我甚至不确定)。

如果有人想要调整现有的python连接器以支持FM最后版本,那么对于所有python社区来说都会很棒。