CKEditor插入代码插件( 代码高亮插件)
>首页 -> 社会专题 -> 硬件网络 2012-10-09 来源: 作者: 【】 浏览:687

CKEditor与原来的FCKeditor有太大的不同了,作为开发人员,在做自己的博客的时候总是需要贴代码的,只好给它先做一个插入代码的插件了。高亮代码用的是"SyntaxHighlighter"。

1、在"ckeditor\plugins\"目录下新建一个"insertcode"目录,然后在"insertcode"目录下新建一个"plugin.js",输入以下代码:

    CKEDITOR.plugins.add('insertcode', {    requires: ['dialog'],    init: function(a){        var b = a.addCommand('insertcode', new CKEDITOR.dialogCommand('insertcode'));        a.ui.addButton('insertcode', {            label: a.lang.insertcode.toolbar,            command: 'insertcode',            icon: this.path + 'images/code.jpg'        });        CKEDITOR.dialog.add('insertcode', this.path + 'dialogs/insertcode.js');    }});

2、增加"images"目录,放入一个"code.jpg"的图片,当然图片可以从google找一个,16*16大小的就好了。

3、增加"dialogs"目录,新建一个"insertcode.js",输入如下代码:

CKEDITOR.dialog.add('insertcode', function(editor){    var escape = function(value){        return value;    };    return {        title: 'Insert Code Dialog',        resizable: CKEDITOR.DIALOG_RESIZE_BOTH,        minWidth: 720,        minHeight: 480,        contents: [{            id: 'cb',            name: 'cb',            label: 'cb',            title: 'cb',            elements: [{                type: 'select',                label: 'Language',                id: 'lang',                required: true,                'default': 'csharp',                items: [['ActionScript3', 'as3'], ['Bash/shell', 'bash'], ['C#', 'csharp'], ['C++', 'cpp'], ['CSS', 'css'], ['Delphi', 'delphi'], ['Diff', 'diff'], ['Groovy', 'groovy'], ['Html', 'xhtml'], ['java script', 'js'], ['Java', 'java'], ['JavaFX', 'jfx'], ['Perl', 'perl'], ['PHP', 'php'], ['Plain Text', 'plain'], ['PowerShell', 'ps'], ['Python', 'py'], ['Ruby', 'rails'], ['Scala', 'scala'], ['SQL', 'sql'], ['Visual Basic', 'vb'], ['XML', 'xml']]            }, {                type: 'textarea',                style: 'width:700px;height:420px',                label: 'Code',                id: 'code',                rows: 31,                'default': ''            }]        }],        onOk: function(){            code = this.getValueOf('cb', 'code');            lang = this.getValueOf('cb', 'lang');            html = '' + escape(code) + '';            editor.insertHtml("<pre class=\"brush:" + lang + ";\">" + html + "</pre>");        },        onLoad: function(){        }    };});

我是用"syntaxhighlighter"来做代码高亮的,如果你不喜欢它也可以换成其它的。

4、接下来就是把插件加入到CKEditor里了,我是直接修改CKEditor插件的核心文件的,因为我是把“插入代码”功能做为一个编辑器必要的功能来使用的。

找到ckeditor目录下的"ckeditor.js",这里的代码是经过压缩的,我们用CKEditor原来的about插件做参考。查找"about",找到"fullPage:false,height:200,plugins:'about,basicstyles",我们在"about"后面增加",insertcode",这里就变成"plugins:'about,insertcode,basicstyles"。

继续查找"about",找到

j.add('about',{init:function(l){var m=l.addCommand('about',new a.dialogCommand('about'));m.modes={wysiwyg:1,source:1};m.canUndo=false;l.ui.addButton('About',{label:l.lang.about.title,command:'about'});a.dialog.add('about',this.path+'dialogs/about.js');}});

我们在这个分号后面增加

j.add('insertcode', {requires: ['dialog'],init: function(l){l.addCommand('insertcode', new a.dialogCommand('insertcode'));l.ui.addButton('insertcode', {label: l.lang.insertcode.toolbar,command: 'insertcode',icon: this.path + 'images/code.jpg'});a.dialog.add('insertcode', this.path + 'dialogs/insertcode.js');}});

接下来查找"i.toolbar_Basic=",这就是CKEditor默认的工具栏了,我们在这里加上",insertcode",你可以加在你想要的位置。比如我的"['Maximize','ShowBlocks','-','insertcode']"。

5、进入"ckeditor\lang",分别在"en.js","zh.js","zh-cn.js"中增加",insertcode:'Insert Code'",",insertcode:'插入代碼'",",insertcode:'插入代码'"。

6、对CKEditor的修改已经OK了,还有最后一步就是在你需要高亮代码的页面引用:

<link type="text/css" rel="stylesheet" href="http://blog.moozi.net/wp-includes/js/syntaxhighlighter/styles/shCore.css"/><link type="text/css" rel="stylesheet" href="http://blog.moozi.net/wp-includes/js/syntaxhighlighter/styles/shThemeDefault.css"/><script type="text/java script" src="http://blog.moozi.net/wp-includes/js/syntaxhighlighter/shCore.js"></script><script type="text/java script" src="http://blog.moozi.net/wp-includes/js/syntaxhighlighter/shBrushes.js"></script>

最后,还在页面增加这段JS:

<script type="text/java script">    SyntaxHighlighter.config.clipboardSwf = 'http://blog.moozi.net/wp-includes/js/syntaxhighlighter/clipboard.swf';    SyntaxHighlighter.all();</script>

CKEditor的"插入代码"插件就OK了。

您看到此篇文章时的感受是:
Tags: 责任编辑:佚名
免责申明: 除原创及很少部分因网文图片遗失而补存外,本站不存储任何有版权的内容。你看到的文章和信息及网址索引均由机器采集自互联网,由于时间不同,内容可能完全不同,请勿拿本网内容及网址索引用于交易及作为事实依据,仅限参考,不会自行判断者请勿接受本站信息,本网转载,并不意味着赞同其观点或证实其内容的真实性.如涉及版权等问题,请立即联系管理员,我们会予以更改或删除,保证您的权利.对使用本网站信息和服务所引起的后果,本网站不作任何承诺.
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论:0条】 【关闭】 【返回顶部
微信分享二维码

打开微信扫一扫分享

上一篇CKEditor工具栏的隐藏,适合织梦d.. 下一篇CKEditor工具栏的所有可选参数
密码: (新用户注册)

最新文章

图片主题

热门文章

推荐文章

相关文章

便民服务

手机扫描

空间赞助

快速互动

论坛互动
讨论留言

有事联系

有哪个那个什么的,赶紧点这里给DOVE发消息

统计联系

MAIL:gnlt@Dovechina.com
正在线上:1

版权与建议

任何你想说的