DjangoUeditor icon indicating copy to clipboard operation
DjangoUeditor copied to clipboard

DjangoUeditor

Results 68 DjangoUeditor issues
Sort by recently updated
recently updated
newest added

``` python uquescommand=[ FenggeCommand(uiName="btn_fengge", icon="images/fengge.png", title=u"符",index=-1), QingchuCommand(uiName="btn_qingchu", icon="images/qingchu.png", title=u"",index=-1), ] ``` btn_fengge,和btn_qingchu都不能显示出来。但只有一ueditor的情况,是正常的。

修改了save_upload_file函数在打开文件失败执行异常处理代码时报“local variable 'f' referenced before assignment”的错误。

现在只能保存到本地, 如果需求要保存到七牛或者别的第三方存储, 就需要自定义上传功能。

在widget.py/UEditorWidget/**init**代码中 #上传路径 self.upload_settings = upload_settings.copy() self.upload_settings.update({ "imagePathFormat": imagePath, "filePathFormat": filePath }) #保存 self._upload_settings =self.upload_settings.copy() # **_此时imagePathFormat还是function**_ self.recalc_path(None) # **_此时imagePathFormat才是function返回的目录**_ 而在widget.py/UEditorWidget/render中serverUrl使用的是function而非自定义的目录 uSettings["settings"].update({ "serverUrl": "/ueditor/controller/?%s" % urlencode(self._upload_settings) })

详细描述[在这里](http://www.wooyun.org/bugs/wooyun-2010-0112515/auth/0ce6b0a363c2872f7c5d9d1d262301ea)

django.core.exceptions.ImproperlyConfigured: Requested setting CACHES, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.

url配置过了,也collectstatic过了 toolbar 永远用的都是老配置

在xadmin中运用时,Ueditor界面已经出来,加载到window.parent.UE.instants[\'ueditorInstant' + this.uid + '\']时,得到window.parent.UE.instants['ueditorInstant0']的结果为undefined,导致不能_setup,且随便点什么按钮,到会报 property 'xxx' of undefined的错误

我最近将这个项目集成到了我的个人博客上,而该博客是部署在SAE上的,处理用户上传文件要使用Storage。于是我自己简单写了下,不知道作者有么有你打算集成上SAE的呢?

本地上传图片不能成功啊,求指教