Changeset 1212
- Timestamp:
- 2007-12-15 12:01:35 (10 months ago)
- Location:
- FCKeditor/branches/features/floating_dialog
- Files:
-
- 12 modified
-
_dev/build_release.bat (modified) (1 diff)
-
editor/dtd/fck_xhtml10strict.js (modified) (2 diffs)
-
editor/dtd/fck_xhtml10transitional.js (modified) (2 diffs)
-
editor/filemanager/connectors/aspx/connector.aspx (modified) (2 diffs)
-
editor/filemanager/connectors/aspx/upload.aspx (modified) (2 diffs)
-
editor/_source/classes/fckcontextmenu.js (modified) (1 diff)
-
editor/_source/classes/fckdomrange.js (modified) (2 diffs)
-
editor/_source/classes/fcktoolbarspecialcombo.js (modified) (1 diff)
-
editor/_source/commandclasses/fckjustifycommands.js (modified) (1 diff)
-
editor/_source/internals/fck.js (modified) (1 diff)
-
editor/_source/internals/fckstyles.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/branches/features/floating_dialog/_dev/build_release.bat
r1184 r1212 26 26 27 27 :: Update this variable for each new release. 28 SET RELEASER_VERSION=2. 6(SVN)28 SET RELEASER_VERSION=2.5.1 (SVN) 29 29 30 30 CLS -
FCKeditor/branches/features/floating_dialog/editor/dtd/fck_xhtml10strict.js
r774 r1212 1 /*1 /* 2 2 * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 3 * Copyright (C) 2003-2007 Frederico Caldeira Knabben … … 24 24 FCK.DTD = (function() 25 25 { 26 X = FCKTools.Merge ;26 var X = FCKTools.Merge ; 27 27 28 28 var H,I,J,K,C,L,M,A,B,D,E,G,N,F ; -
FCKeditor/branches/features/floating_dialog/editor/dtd/fck_xhtml10transitional.js
r774 r1212 1 /*1 /* 2 2 * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 3 * Copyright (C) 2003-2007 Frederico Caldeira Knabben … … 24 24 FCK.DTD = (function() 25 25 { 26 X = FCKTools.Merge ;26 var X = FCKTools.Merge ; 27 27 28 28 var A,L,J,M,N,O,D,H,P,K,Q,F,G,C,B,E,I ; -
FCKeditor/branches/features/floating_dialog/editor/filemanager/connectors/aspx/connector.aspx
r413 r1212 1 <%@ Page language="c#" Trace="false" Inherits="FredCK.FCKeditorV2.FileBrowserConnector" AutoEventWireup="false" %> 1 <%@ Page Language="c#" Trace="false" Inherits="FredCK.FCKeditorV2.FileBrowser.Connector" AutoEventWireup="false" %> 2 <%@ Register Src="config.ascx" TagName="Config" TagPrefix="FCKeditor" %> 2 3 <%-- 3 4 * FCKeditor - The text editor for Internet - http://www.fckeditor.net … … 29 30 * http://www.fckeditor.net 30 31 --%> 32 <FCKeditor:Config id="Config" runat="server"></FCKeditor:Config> -
FCKeditor/branches/features/floating_dialog/editor/filemanager/connectors/aspx/upload.aspx
r413 r1212 1 <%@ Page language="c#" Trace="false" Inherits="FredCK.FCKeditorV2.Uploader" AutoEventWireup="false" %> 1 <%@ Page Language="c#" Trace="false" Inherits="FredCK.FCKeditorV2.FileBrowser.Uploader" AutoEventWireup="false" %> 2 <%@ Register Src="config.ascx" TagName="Config" TagPrefix="FCKeditor" %> 2 3 <%-- 3 4 * FCKeditor - The text editor for Internet - http://www.fckeditor.net … … 29 30 * http://www.fckeditor.net 30 31 --%> 32 <FCKeditor:Config id="Config" runat="server"></FCKeditor:Config> -
FCKeditor/branches/features/floating_dialog/editor/_source/classes/fckcontextmenu.js
r878 r1212 157 157 } 158 158 } 159 return true ; 159 160 } 160 161 -
FCKeditor/branches/features/floating_dialog/editor/_source/classes/fckdomrange.js
r1184 r1212 100 100 return docFrag ; 101 101 } 102 return null ; 102 103 }, 103 104 … … 106 107 if ( this._Range ) 107 108 return this._Range.collapsed ; 109 110 return false ; 108 111 }, 109 112 -
FCKeditor/branches/features/floating_dialog/editor/_source/classes/fcktoolbarspecialcombo.js
r714 r1212 33 33 this.SourceView = false ; 34 34 this.ContextSensitive = true ; 35 this.FieldWidth = null ; 36 this.PanelWidth = null ; 37 this.PanelMaxHeight = null ; 35 38 //this._LastValue = null ; 36 39 } -
FCKeditor/branches/features/floating_dialog/editor/_source/commandclasses/fckjustifycommands.js
r969 r1212 40 40 { 41 41 case 'left' : 42 return classes[0] ;42 return classes[0] || null ; 43 43 case 'center' : 44 return classes[1] ;44 return classes[1] || null ; 45 45 case 'right' : 46 return classes[2] ;46 return classes[2] || null ; 47 47 case 'justify' : 48 return classes[3] ;48 return classes[3] || null ; 49 49 } 50 50 } -
FCKeditor/branches/features/floating_dialog/editor/_source/internals/fck.js
r1209 r1212 477 477 }, 478 478 479 // For the FocusManager480 HasFocus : false,481 482 483 479 // This collection is used by the browser specific implementations to tell 484 480 // which named commands must be handled separately. -
FCKeditor/branches/features/floating_dialog/editor/_source/internals/fckstyles.js
r1049 r1212 89 89 var state = style.CheckActive( path ) ; 90 90 91 if ( st yle._LastState != state)91 if ( state != ( style._LastState || null ) ) 92 92 { 93 93 style._LastState = state ; -
FCKeditor/branches/features/floating_dialog/_whatsnew.html
r1193 r1212 58 58 target="_blank" href="http://dev.fckeditor.net/ticket/681">#681</a>] The SpellerPages 59 59 spell checker will now completely ignore the presence of HTML tags in the text.</li> 60 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1643">#1643</a>] Resolved 61 several "strict warning" messages in Firefox when running FCKeditor.</li> 60 62 </ul> 61 63 <p>