Changeset 2019
- Timestamp:
- 2008-05-27 12:00:08 (22 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 5 modified
-
editor/dialog/common/fck_dialog_common.js (modified) (1 diff)
-
fckconfig.js (modified) (1 diff)
-
fckeditor.cfc (modified) (1 diff)
-
fckeditor.cfm (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/dialog/common/fck_dialog_common.js
r1795 r2019 191 191 sOptions += ",top=" + iTop ; 192 192 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 ) ; 221 194 } 222 195 -
FCKeditor/trunk/fckconfig.js
r1962 r2019 88 88 FCKConfig.ToolbarCanCollapse = true ; 89 89 FCKConfig.IgnoreEmptyParagraphValue = true ; 90 FCKConfig.PreserveSessionOnFileBrowser = false ;91 90 FCKConfig.FloatingPanelsZIndex = 10000 ; 92 91 FCKConfig.HtmlEncodeOutput = false ; -
FCKeditor/trunk/fckeditor.cfc
r1581 r2019 191 191 lConfigKeys = lConfigKeys & ",StartupFocus,ForcePasteAsPlainText,AutoDetectPasteFromWord,ForceSimpleAmpersand"; 192 192 lConfigKeys = lConfigKeys & ",TabSpaces,ShowBorders,SourcePopup,ToolbarStartExpanded,ToolbarCanCollapse"; 193 lConfigKeys = lConfigKeys & ",IgnoreEmptyParagraphValue, PreserveSessionOnFileBrowser,FloatingPanelsZIndex,TemplateReplaceAll,TemplateReplaceCheckbox";193 lConfigKeys = lConfigKeys & ",IgnoreEmptyParagraphValue,FloatingPanelsZIndex,TemplateReplaceAll,TemplateReplaceCheckbox"; 194 194 lConfigKeys = lConfigKeys & ",ToolbarLocation,ToolbarSets,EnterMode,ShiftEnterMode,Keystrokes"; 195 195 lConfigKeys = lConfigKeys & ",ContextMenu,BrowserContextMenuOnCtrl,FontColors,FontNames,FontSizes"; -
FCKeditor/trunk/fckeditor.cfm
r1565 r2019 98 98 lConfigKeys = lConfigKeys & ",StartupFocus,ForcePasteAsPlainText,AutoDetectPasteFromWord,ForceSimpleAmpersand"; 99 99 lConfigKeys = lConfigKeys & ",TabSpaces,ShowBorders,SourcePopup,ToolbarStartExpanded,ToolbarCanCollapse"; 100 lConfigKeys = lConfigKeys & ",IgnoreEmptyParagraphValue, PreserveSessionOnFileBrowser,FloatingPanelsZIndex,TemplateReplaceAll,TemplateReplaceCheckbox";100 lConfigKeys = lConfigKeys & ",IgnoreEmptyParagraphValue,FloatingPanelsZIndex,TemplateReplaceAll,TemplateReplaceCheckbox"; 101 101 lConfigKeys = lConfigKeys & ",ToolbarLocation,ToolbarSets,EnterMode,ShiftEnterMode,Keystrokes"; 102 102 lConfigKeys = lConfigKeys & ",ContextMenu,BrowserContextMenuOnCtrl,FontColors,FontNames,FontSizes"; -
FCKeditor/trunk/_whatsnew.html
r2018 r2019 100 100 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1691">#1691</a>] Creation of links in Safari 101 101 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> 102 104 </ul> 103 105 <h3>