2006年06月22日 星期四 14:03
这里是FCKedit的Demo: http://www.fckeditor.net/demo/default.html 感觉很实用,完全word的编辑习惯,特别喜欢的是它的图片管理,现在虽然可以把 FCKedit直接拿到 Django下面使用 ,但是能用的只是word的编辑,图片管理的功能却不能使用了,问一下,那位有好的想法? 多谢了! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060622/6e864e1d/attachment.html
2006年06月22日 星期四 14:09
我觉得gmail这个编辑器也不错噢 很简洁明了 在06-6-22,martin <martin.xus at gmail.com> 写道: > > 这里是FCKedit的Demo: > http://www.fckeditor.net/demo/default.html > > 感觉很实用,完全word的编辑习惯,特别喜欢的是它的图片管理,现在虽然可以把 FCKedit直接拿到 Django下面使用 > ,但是能用的只是word的编辑,图片管理的功能却不能使用了,问一下,那位有好的想法? > > 多谢了! > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060622/ae9b209b/attachment.htm
2006年06月22日 星期四 14:18
*当然可以使用 FCKedit ! //** fckeditor.js **从limudou的woodlog抄来的 :) window.onload = function() { var oFCKeditor = new FCKeditor( 'id_content' ) ; oFCKeditor.BasePath = "/static/FCKeditor/" ; oFCKeditor.Height = 400 ; oFCKeditor.ReplaceTextarea() ; } 将id为id_content的textbox换成FCKEditor。 甚至可以在admin里面用,在model定义中定义: class Admin: ... js = ['FCKEditor/fckeditor.js','fckeditor.js'] ... 当然,先把**'FCKEditor/fckeditor.js','fckeditor.js'两个文件复制到admin的media目录下面。* -- http://codeplayer.blogbus.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060622/dcf865bb/attachment-0001.html
2006年06月22日 星期四 14:18
这个是给客户用的,他们喜欢那个样式:( 如果给我用,我最喜欢用wiki的语法,那个更直接:) On 6/22/06, 风向标 <vaneoooo at gmail.com> wrote: > > > 我觉得gmail这个编辑器也不错噢 > 很简洁明了 > > > 在06-6-22,martin <martin.xus at gmail.com> 写道: > > > > 这里是FCKedit的Demo: > http://www.fckeditor.net/demo/default.html > > 感觉很实用,完全word的编辑习惯,特别喜欢的是它的图片管理,现在虽然可以把 FCKedit直接拿到 Django下面使用 > ,但是能用的只是word的编辑,图片管理的功能却不能使用了,问一下,那位有好的想法? > > 多谢了! > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060622/ac1d85b6/attachment.htm
2006年06月22日 星期四 14:22
no,no.你没明白我的意思,这个我知道。我想要的是一个完整的FCKedit,包括它的图片管理的功能。这样做是只能使用那个编辑器,不能使用图片管理的。 On 6/22/06, yi huang <yi.codeplayer at gmail.com> wrote: > > *当然可以使用 FCKedit ! > > //* * fckeditor.js ** 从limudou的woodlog抄来的 :) > window.onload = function() > { > var oFCKeditor = new FCKeditor( 'id_content' ) ; > oFCKeditor.BasePath = "/static/FCKeditor/" ; > oFCKeditor.Height = 400 ; > oFCKeditor.ReplaceTextarea() ; > } > > 将id为id_content的textbox换成FCKEditor。 > 甚至可以在admin里面用,在model定义中定义: > class Admin: > ... > js = ['FCKEditor/fckeditor.js','fckeditor.js'] > ... > 当然,先把* *'FCKEditor/fckeditor.js','fckeditor.js'两个文件复制到admin的media目录下面。* > > -- > http://codeplayer.blogbus.com/ > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060622/7ba754df/attachment.html
2006年06月22日 星期四 15:00
可以考虑自己把 for php 的翻译为 django 的。 在 06-6-22,martin<martin.xus at gmail.com> 写道: > no,no.你没明白我的意思,这个我知道。我想要的是一个完整的FCKedit,包括它的图片管理的功能。这样做是只能使用那个编辑器,不能使用图片管理的。 > > > > On 6/22/06, yi huang <yi.codeplayer at gmail.com > wrote: > > > > 当然可以使用 FCKedit ! > > // fckeditor.js 从limudou的woodlog抄来的 :) > window.onload = function() > { > var oFCKeditor = new FCKeditor( 'id_content' ) ; > oFCKeditor.BasePath = "/static/FCKeditor/" ; > oFCKeditor.Height = 400 ; > oFCKeditor.ReplaceTextarea() ; > } > > 将id为id_content的textbox换成FCKEditor。 > 甚至可以在admin里面用,在model定义中定义: > class Admin: > ... > js = ['FCKEditor/fckeditor.js','fckeditor.js'] > ... > 当然,先把 'FCKEditor/fckeditor.js','fckeditor.js'两个文件复制到admin的media目录下面。 > > -- > http://codeplayer.blogbus.com/ > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > >
2006年06月22日 星期四 18:47
FCK的图片管理也只是一个角本程序~~现有提供的有PHP和ASP什么的~~~写一个python的也一样~~或者用插件的方式将其他图片管理加入~~ 在 06-6-22,martin<martin.xus at gmail.com> 写道: > no,no.你没明白我的意思,这个我知道。我想要的是一个完整的FCKedit,包括它的图片管理的功能。这样做是只能使用那个编辑器,不能使用图片管理的。 > > > > On 6/22/06, yi huang <yi.codeplayer at gmail.com > wrote: > > > > 当然可以使用 FCKedit ! > > // fckeditor.js 从limudou的woodlog抄来的 :) > window.onload = function() > { > var oFCKeditor = new FCKeditor( 'id_content' ) ; > oFCKeditor.BasePath = "/static/FCKeditor/" ; > oFCKeditor.Height = 400 ; > oFCKeditor.ReplaceTextarea() ; > } > > 将id为id_content的textbox换成FCKEditor。 > 甚至可以在admin里面用,在model定义中定义: > class Admin: > ... > js = ['FCKEditor/fckeditor.js','fckeditor.js'] > ... > 当然,先把 'FCKEditor/fckeditor.js','fckeditor.js'两个文件复制到admin的media目录下面。 > > -- > http://codeplayer.blogbus.com/ > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > > > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to > python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to > python-chinese-request at lists.python.cn > Detail Info: > http://python.cn/mailman/listinfo/python-chinese > > -- 广州市一方信息咨询有限公司 地址:广州市 江南大道中 穗花村 三巷12号204 邮编:510245 电话:020-39738561 020-39738571 传真:020-84476279 网站:www.i-fang.com 邮件:market at i-fang.com
2006年06月22日 星期四 22:53
http://www.cherrypy.org/wiki/FckeditorModule TurboGears可以使用这个基于cherrypy的工具来搞定 django不晓得怎么做~参考下 文件基于cp的老版本,在turbogears中使用需要修改几处代码 -- Andelf http://blog.sina.com.cn/u/1145264221 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060622/c6197123/attachment.html
2006年06月27日 星期二 17:25
对了,大家有没有见过用类似FCK的实现公式编辑的编辑器(比如积分号什么的,现在见到ewebeditor最新版支持了,不过要5000大元)。用wiki中的插件不是不行,但是用语句写公式似乎不适合每个人。
Zeuux © 2025
京ICP备05028076号