Python论坛  - 讨论区

标题:[python-chinese] Django下 有像FCKedit这样的编辑器?

2006年06月22日 星期四 14:03

martin martin.xus at gmail.com
Thu Jun 22 14:03:11 HKT 2006

这里是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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月22日 星期四 14:09

风向标 vaneoooo at gmail.com
Thu Jun 22 14:09:07 HKT 2006

我觉得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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月22日 星期四 14:18

yi huang yi.codeplayer at gmail.com
Thu Jun 22 14:18:39 HKT 2006

*当然可以使用 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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月22日 星期四 14:18

martin martin.xus at gmail.com
Thu Jun 22 14:18:41 HKT 2006

这个是给客户用的,他们喜欢那个样式:( 如果给我用,我最喜欢用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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月22日 星期四 14:22

martin martin.xus at gmail.com
Thu Jun 22 14:22:39 HKT 2006

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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月22日 星期四 15:00

Rong Chen chenrong2003 at gmail.com
Thu Jun 22 15:00:56 HKT 2006

可以考虑自己把 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
>
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月22日 星期四 18:47

mikespook mikespook at gmail.com
Thu Jun 22 18:47:59 HKT 2006

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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月22日 星期四 22:53

Andelf andelf at gmail.com
Thu Jun 22 22:53:40 HKT 2006

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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年06月27日 星期二 17:25

陈星全 chenxingquan at gmail.com
Tue Jun 27 17:25:35 HKT 2006

对了,大家有没有见过用类似FCK的实现公式编辑的编辑器(比如积分号什么的,现在见到ewebeditor最新版支持了,不过要5000大元)。用wiki中的插件不是不行,但是用语句写公式似乎不适合每个人。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号