最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

比較不錯的修改FCKEditor的修改方法

 更新時間:2007年11月04日 12:50:56   作者:  

修改后的代碼下載http://www.cnblogs.com/Files/Truly/FCKeditor_Truly.rar
本地下載地址
由于項目需要,近期仔細研究了FCKEditor。發(fā)現一下bug,以及缺少的一些東西。

一、防止連續(xù)文本導致出現滾動條
        FCKEditor編輯器使用Iframe來處理編輯器內容,可惜不支持文本換行,假如你連續(xù)輸入一段英文或數字等,將會出現滾動條,這時我們需要給其增加word-wrap樣式為break-word;

添加方式有很多,我選擇最便捷的修改方式:具體做法是修改fckeditor.html文件,給<iframe id="eEditorArea" 增加事件 onload="window.frames['eEditorArea'].document.body.style.wordWrap='break-word'"

二、增加Media以及Realplay按鈕
      此項工作相對龐大,要修改很多js文件,以及一些圖片和樣式文件。
      a.準備圖片:FCKeditor\editor\css\images下面,添加fck_medialogo.gif和fck_realplaylogo.gif,大小隨意,作為背景居中顯示的。
FCKeditor\editor\skins\default\toolbar\增加media.gif和realplay.gif,其他皮膚類推。
      b.修改css:給FCKeditor\editor\css\fck_internal.css增加

.FCK__Media
{
 border: darkgray 1px solid;
 background-position: center center;
 background-image: url(images/fck_medialogo.gif);
 background-repeat: no-repeat;
 width: 80px ;
 height: 80px ;
}

.FCK__Realplay
{
 border: darkgray 1px solid;
 background-position: center center;
 background-image: url(images/fck_realplaylogo.JPG);
 background-repeat: no-repeat;
 width: 80px ;
 height: 80px ;
}
c。修改js,主要以realplay做示例
FCKeditor\editor\js\fckeditorcode_ie_1.js,在FCKDocumentProcessors.addItem(FCKFlashProcessor);后面增加
// Realplay begin
var FCKRealplayProcessor=new Object();
FCKRealplayProcessor.ProcessDocument=function(A){
    var B=A.getElementsByTagName('EMBED');
    var C;
    var i=B.length-1;

while (i>=0&&(C=B[i--])){
if (C.src.endsWith('.rm',true) || C.src.endsWith('.ram',true) || C.src.endsWith('.ra',true))
{var D=FCKDocumentProcessors_CreateFakeImage('FCK__Realplay',C.cloneNode(true));
D.setAttribute('_fckRealplay','true',0);
FCKRealplayProcessor.RefreshView(D,C);
C.parentNode.insertBefore(D,C);
C.parentNode.removeChild(C);
};
};
};

FCKRealplayProcessor.RefreshView=function(A,B){
    if (B.width>0) A.style.width=FCKTools.ConvertHtmlSizeToStyle(B.width);
    if (B.height>0) A.style.height=FCKTools.ConvertHtmlSizeToStyle(B.height);
};
FCKDocumentProcessors.addItem(FCKRealplayProcessor);
// Realplay end
var FCKMediaProcessor=new Object();
FCKMediaProcessor.ProcessDocument=function(A)
{
    var B=A.getElementsByTagName('EMBED');
    var C;
    var i=B.length-1;
    while (i>=0&&(C=B[i--]))
    {
        if (C.src.endsWith('.avi',true) || C.src.endsWith('.mpg',true) || C.src.endsWith('.mpeg',true))
        {
            var D=FCKDocumentProcessors_CreateFakeImage('FCK__Media',C.cloneNode(true));
            D.setAttribute('_fckmedia','true',0);FCKMediaProcessor.RefreshView(D,C);
            C.parentNode.insertBefore(D,C);C.parentNode.removeChild(C);
        };
    };
};
FCKMediaProcessor.RefreshView=function(A,B)
{
    if (B.width>0) A.style.width=FCKTools.ConvertHtmlSizeToStyle(B.width);
    if (B.height>0) A.style.height=FCKTools.ConvertHtmlSizeToStyle(B.height);
};
FCKDocumentProcessors.addItem(FCKMediaProcessor);

然后修改FCK.GetRealElement方法為下面代碼,該方法為處理編輯器中width和height的調整
FCK.GetRealElement=function(A){
var e=FCKTempBin.Elements[A.getAttribute('_fckrealelement')];

if (A.getAttribute('_fckflash')|| A.getAttribute('_fckrealplay') || A.getAttribute('_fckmedia')){
    if (A.style.width.length>0) e.width=FCKTools.ConvertStyleSizeToHtml(A.style.width);
    if (A.style.height.length>0) e.height=FCKTools.ConvertStyleSizeToHtml(A.style.height);
};
return e;};

----------
FCKeditor\editor\js\fckeditorcode_ie_2.js
FCKCommands.GetCommand方法增加
case 'Media':B=new FCKDialogCommand('Media',FCKLang.DlgMediaTitle,'dialog/fck_Media.html',450,400);
break;
case 'Realplay':B=new FCKDialogCommand('Realplay',FCKLang.DlgMediaTitle,'dialog/fck_Realplay.html',450,400);
break;

FCKToolbarItems.GetItem方法增加

case 'Media':B=new FCKToolbarButton('Media',FCKLang.InsertMediaLbl,FCKLang.InsertMedia);
break;
case 'Realplay':B=new FCKToolbarButton('Realplay',FCKLang.InsertRealplayLbl,FCKLang.InsertRealplay);
break;
FCKContextMenu._GetGroup方法增加
case 'Media':return new FCKContextMenuGroup(true,this,'Media',FCKLang.MediaProperties,true);
case 'Realplay':return new FCKContextMenuGroup(true,this,'Realplay',FCKLang.RealplayProperties,true);   // truly

FCKContextMenu.RefreshState方法增加
if (this.Groups['Media'])   this.Groups['Media'].SetVisible(B=='IMG'&&A.getAttribute('_fckmedia'));
if (this.Groups['Realplay'])  this.Groups['Realplay'].SetVisible(B=='IMG'&&A.getAttribute('_fckrealplay'));


然后要增加'dialog/fck_Media.html'和'dialog/fck_Realplay.html'頁面,具體我懶得再寫了,自己到我的源碼下載里看,我是在2。1的基礎上改的,2.2要做一些調整!

fckconfig.js也有較多調整,但是這個文件非常簡單,自己去看我的源碼吧。
然后就是lang目錄中對常量的定義,搜索一下就很容易得到,沒什么可講。

在然后就可以了,:)。



三、添加刪除按鈕列,類似sina的blog中的編輯控件

四、修改上傳路徑
        默認是根目錄/UserFiles,有多種方式進行修改,先看一下它的源碼:
protected string UserFilesPath
{
 get
 {
  if ( sUserFilesPath == null )
  {
   // Try to get from the "Application".
   sUserFilesPath = (string)Application["FCKeditor:UserFilesPath"] ;

   // Try to get from the "Session".
   if ( sUserFilesPath == null || sUserFilesPath.Length == 0 )
   {
    sUserFilesPath = (string)Session["FCKeditor:UserFilesPath"] ;

    // Try to get from the Web.config file.
    if ( sUserFilesPath == null || sUserFilesPath.Length == 0 )
    {
     sUserFilesPath = System.Configuration.ConfigurationSettings.AppSettings["FCKeditor:UserFilesPath"] ;

     // Otherwise use the default value.
     if ( sUserFilesPath == null || sUserFilesPath.Length == 0 )
      sUserFilesPath = DEFAULT_USER_FILES_PATH ;

     // Try to get from the URL.
     if ( sUserFilesPath == null || sUserFilesPath.Length == 0 )
     {
      sUserFilesPath = Request.QueryString["ServerPath"] ;
     }
    }
   }

   // Check that the user path ends with slash ("/")
   if ( ! sUserFilesPath.EndsWith("/") )
    sUserFilesPath += "/" ;
  }
  return sUserFilesPath ;
 }
}

由此,可以在Global里或者程序任意位置(加載fckeditor前可以運行到的位置)設置Application["FCKeditor:UserFilesPath"] ,或者Session,或者Webconfig,或者action中的請求參數等。


to be continued...


附:js版FCKEditor下載:http://prdownloads.sourceforge.net/fckeditor/FCKeditor_2.2.zip
.net版
http://prdownloads.sourceforge.net/fckeditor/FCKeditor.Net_2.2.zip
所有版本列表
http://prdownloads.sourceforge.net/fckeditor

相關文章

  • 將CKfinder 整合進 CKEditor3.0的方法

    將CKfinder 整合進 CKEditor3.0的方法

    CKFinder是一款基于AJAX的文件瀏覽器,這是ASP.NET專用版,它可以在線瀏覽文件、管理文件、上傳文件,以樹形Tree的方式展開目錄,自動檢測圖片并生成縮略圖,它是由Fckeditor公司出品,同時也可配合FckEditor來使用,可達到意想不到的效果。
    2010-01-01
  • FCKeditor 和 SyntaxHighlighter 代碼高亮插件的整合

    FCKeditor 和 SyntaxHighlighter 代碼高亮插件的整合

    FCKeditor 和 SyntaxHighlighter 代碼高亮插件的整合方法,里面有下載,可以根據需要結合自己的fckeditor版本。
    2010-04-04
  • 解決SyntaxHighlighter 代碼高亮不換行問題的解決方法

    解決SyntaxHighlighter 代碼高亮不換行問題的解決方法

    用SyntaxHighlighter 語法高亮插件的朋友可能都遇到過代碼顯示不換行的問題,這個問題在網上也找不到什么解決辦法,一直困擾了我很久,今天算是把它解決了,辦法其實簡單,下面說下如何解決
    2014-11-11
  • ckeditor插件開發(fā)簡單實例

    ckeditor插件開發(fā)簡單實例

    我需要在編輯文本的時候,選擇一段文字,點擊自定義的按鈕,就能夠在這段文字后面增加一個圖標,圖標超鏈接去一個地址,以選中的文字作為參數
    2013-07-07
  • 在asp.net中KindEditor編輯器的使用方法小結

    在asp.net中KindEditor編輯器的使用方法小結

    由于國外的服務器好象對一些要引用dll編輯器由于安全問題,鎖定了web.config中的一些權限,在先試了FreeTexbox不行,FCKEditor也不行,因為都是要引用dll文件,最后同事介紹一款 純js的kindeditor編輯器,
    2010-12-12
  • javascript fckeditor編輯器取值與賦值實現代碼

    javascript fckeditor編輯器取值與賦值實現代碼

    這篇文章對于使用fckeditor編輯器的朋友是個不錯應用,主要介紹的是js對fckeditor的取值與賦值操作,fckeditor是個不錯的比較方便的擴展功能的編輯器。
    2010-05-05
  • 自動刷新從BrowserSync開始

    自動刷新從BrowserSync開始

    Browsersync能讓瀏覽器實時、快速響應您的文件更改(html、js、css、sass、less等)并自動刷新頁面。下面小編來帶大家了解下如何使用
    2019-05-05
  • 讓谷歌瀏覽器Google Chrome支持eWebEditor的方法

    讓谷歌瀏覽器Google Chrome支持eWebEditor的方法

    這篇文章主要介紹了讓谷歌瀏覽器Google Chrome支持eWebEditor的方法,默認情況是不顯示的, 還需要安裝組件
    2016-01-01
  • FCKEditor網頁編輯器 幾點使用心得

    FCKEditor網頁編輯器 幾點使用心得

    FCKEditor網頁編輯器 幾點使用心得,需要的朋友可以參考下。
    2009-10-10
  • nicedit 輕量級編輯器 使用心得

    nicedit 輕量級編輯器 使用心得

    NicEdit是一個輕量級,跨平臺,內置內容編輯器,允許在瀏覽器中輕松地編輯網站上的內容。
    2009-06-06

最新評論

宁国市| 闸北区| 道孚县| 田东县| 施秉县| 绥芬河市| 惠水县| 宣威市| 峨眉山市| 麦盖提县| 库伦旗| 府谷县| 车致| 五华县| 潢川县| 巩义市| 肇州县| 仁布县| 柳江县| 唐海县| 武汉市| 左权县| 资溪县| 静宁县| 醴陵市| 剑川县| 新巴尔虎左旗| 台安县| 榆树市| 宿州市| 宁国市| 余干县| 平昌县| 武山县| 肇州县| 本溪市| 西乡县| 昭觉县| 合川市| 鄢陵县| 镶黄旗|