Changeset 2019

Show
Ignore:
Timestamp:
2008-05-27 12:00:08 (22 months ago)
Author:
martinkou
Message:

Fixed #2188 : PreserveSessionOnFileBrowser is now removed as it was made obsolete with 2.6.

Location:
FCKeditor/trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/dialog/common/fck_dialog_common.js

    r1795 r2019  
    191191        sOptions += ",top=" + iTop ; 
    192192 
    193         // The "PreserveSessionOnFileBrowser" because the above code could be 
    194         // blocked by popup blockers. 
    195         if ( oEditor.FCKConfig.PreserveSessionOnFileBrowser && oEditor.FCKBrowserInfo.IsIE ) 
    196         { 
    197                 // The following change has been made otherwise IE will open the file 
    198                 // browser on a different server session (on some cases): 
    199                 // http://support.microsoft.com/default.aspx?scid=kb;en-us;831678 
    200                 // by Simone Chiaretta. 
    201                 var oWindow = oEditor.window.open( url, 'FCKBrowseWindow', sOptions ) ; 
    202  
    203                 if ( oWindow ) 
    204                 { 
    205                         // Detect Yahoo popup blocker. 
    206                         try 
    207                         { 
    208                                 var sTest = oWindow.name ; // Yahoo returns "something", but we can't access it, so detect that and avoid strange errors for the user. 
    209                                 oWindow.opener = window ; 
    210                         } 
    211                         catch(e) 
    212                         { 
    213                                 alert( oEditor.FCKLang.BrowseServerBlocked ) ; 
    214                         } 
    215                 } 
    216                 else 
    217                         alert( oEditor.FCKLang.BrowseServerBlocked ) ; 
    218     } 
    219     else 
    220                 window.open( url, 'FCKBrowseWindow', sOptions ) ; 
     193        window.open( url, 'FCKBrowseWindow', sOptions ) ; 
    221194} 
    222195 
  • FCKeditor/trunk/fckconfig.js

    r1962 r2019  
    8888FCKConfig.ToolbarCanCollapse    = true ; 
    8989FCKConfig.IgnoreEmptyParagraphValue = true ; 
    90 FCKConfig.PreserveSessionOnFileBrowser = false ; 
    9190FCKConfig.FloatingPanelsZIndex = 10000 ; 
    9291FCKConfig.HtmlEncodeOutput = false ; 
  • FCKeditor/trunk/fckeditor.cfc

    r1581 r2019  
    191191        lConfigKeys = lConfigKeys & ",StartupFocus,ForcePasteAsPlainText,AutoDetectPasteFromWord,ForceSimpleAmpersand"; 
    192192        lConfigKeys = lConfigKeys & ",TabSpaces,ShowBorders,SourcePopup,ToolbarStartExpanded,ToolbarCanCollapse"; 
    193         lConfigKeys = lConfigKeys & ",IgnoreEmptyParagraphValue,PreserveSessionOnFileBrowser,FloatingPanelsZIndex,TemplateReplaceAll,TemplateReplaceCheckbox"; 
     193        lConfigKeys = lConfigKeys & ",IgnoreEmptyParagraphValue,FloatingPanelsZIndex,TemplateReplaceAll,TemplateReplaceCheckbox"; 
    194194        lConfigKeys = lConfigKeys & ",ToolbarLocation,ToolbarSets,EnterMode,ShiftEnterMode,Keystrokes"; 
    195195        lConfigKeys = lConfigKeys & ",ContextMenu,BrowserContextMenuOnCtrl,FontColors,FontNames,FontSizes"; 
  • FCKeditor/trunk/fckeditor.cfm

    r1565 r2019  
    9898                lConfigKeys = lConfigKeys & ",StartupFocus,ForcePasteAsPlainText,AutoDetectPasteFromWord,ForceSimpleAmpersand"; 
    9999                lConfigKeys = lConfigKeys & ",TabSpaces,ShowBorders,SourcePopup,ToolbarStartExpanded,ToolbarCanCollapse"; 
    100                 lConfigKeys = lConfigKeys & ",IgnoreEmptyParagraphValue,PreserveSessionOnFileBrowser,FloatingPanelsZIndex,TemplateReplaceAll,TemplateReplaceCheckbox"; 
     100                lConfigKeys = lConfigKeys & ",IgnoreEmptyParagraphValue,FloatingPanelsZIndex,TemplateReplaceAll,TemplateReplaceCheckbox"; 
    101101                lConfigKeys = lConfigKeys & ",ToolbarLocation,ToolbarSets,EnterMode,ShiftEnterMode,Keystrokes"; 
    102102                lConfigKeys = lConfigKeys & ",ContextMenu,BrowserContextMenuOnCtrl,FontColors,FontNames,FontSizes"; 
  • FCKeditor/trunk/_whatsnew.html

    r2018 r2019  
    100100                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1691">#1691</a>] Creation of links in Safari 
    101101                        failed if there was no selection.</li> 
     102                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2188">#2188</a>] PreserveSessionOnFileBrowser  
     103                        is now removed as it was made obsolete with 2.6.</li> 
    102104        </ul> 
    103105        <h3>