Changeset 2102
- Timestamp:
- 2008-06-23 08:48:55 (21 months ago)
- Location:
- FCKeditor
- Files:
-
- 2 added
- 1 removed
- 6 modified
- 1 copied
-
branches/features/div_container (copied) (copied from FCKeditor/trunk)
-
branches/features/div_container/editor/dialog/fck_div.html (added)
-
branches/features/div_container/editor/fckeditor.html (modified) (1 diff)
-
branches/features/div_container/editor/lang/en.js (modified) (2 diffs)
-
branches/features/div_container/editor/_source/commandclasses/fckblockcontainercommand.js (added)
-
branches/features/div_container/editor/_source/internals/fckcommands.js (modified) (1 diff)
-
branches/features/div_container/editor/_source/internals/fcktoolbaritems.js (modified) (1 diff)
-
branches/features/div_container/fckconfig.js (modified) (1 diff)
-
branches/features/div_container/fckpackager.xml (modified) (2 diffs)
-
trunk/editor/_source/commandclasses/fckblockquotecommand.js (deleted)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/branches/features/div_container/editor/fckeditor.html
r2073 r2102 156 156 LoadScript( '_source/commandclasses/fckjustifycommands.js' ) ; 157 157 LoadScript( '_source/commandclasses/fckindentcommands.js' ) ; 158 LoadScript( '_source/commandclasses/fckblock quotecommand.js' ) ;158 LoadScript( '_source/commandclasses/fckblockcontainercommand.js' ) ; 159 159 LoadScript( '_source/commandclasses/fckcorestylecommand.js' ) ; 160 160 LoadScript( '_source/commandclasses/fckremoveformatcommand.js' ) ; -
FCKeditor/branches/features/div_container/editor/lang/en.js
r1565 r2102 73 73 IncreaseIndent : "Increase Indent", 74 74 Blockquote : "Blockquote", 75 Div : "Div", 75 76 Undo : "Undo", 76 77 Redo : "Redo", … … 512 513 DlgAboutLicenseTab : "License", 513 514 DlgAboutVersion : "version", 514 DlgAboutInfo : "For further information go to" 515 DlgAboutInfo : "For further information go to", 516 517 // Div Dialog 518 DlgDivGeneralTab : "General", 519 DlgDivAdvancedTab : "Advanced", 520 DlgDivStyle : "Style", 521 DlgDivInlineStyle : "Inline Style" 515 522 }; -
FCKeditor/branches/features/div_container/editor/_source/internals/fckcommands.js
r1812 r2102 94 94 case 'Indent' : oCommand = new FCKIndentCommand( 'indent', FCKConfig.IndentLength ) ; break ; 95 95 case 'Outdent' : oCommand = new FCKIndentCommand( 'outdent', FCKConfig.IndentLength * -1 ) ; break ; 96 case 'Blockquote' : oCommand = new FCKBlockQuoteCommand() ; break ; 96 case 'Blockquote' : oCommand = new FCKBlockContainerCommand( 'blockquote' ) ; break ; 97 case 'CreateDiv' : oCommand = new FCKDialogCommand( 'CreateDiv', FCKLang.Div, 'dialog/fck_div.html', 380, 210, null, null, true ) ; break ; 98 case 'EditDiv' : oCommand = new FCKDialogCommand( 'EditDiv', FCKLang.Div, 'dialog/fck_div.html', 380, 210, null, null, false ) ; break ; 97 99 98 100 case 'TableInsertRowAfter' : oCommand = new FCKTableCommand('TableInsertRowAfter') ; break ; -
FCKeditor/branches/features/div_container/editor/_source/internals/fcktoolbaritems.js
r1565 r2102 72 72 case 'Indent' : oItem = new FCKToolbarButton( 'Indent' , FCKLang.IncreaseIndent, null, null, false, true, 29 ) ; break ; 73 73 case 'Blockquote' : oItem = new FCKToolbarButton( 'Blockquote' , FCKLang.Blockquote, null, null, false, true, 73 ) ; break ; 74 case 'CreateDiv' : oItem = new FCKToolbarButton( 'CreateDiv' , FCKLang.Blockquote, null, null, false, true, 73 ) ; break ; 74 75 75 76 case 'Link' : oItem = new FCKToolbarButton( 'Link' , FCKLang.InsertLinkLbl, FCKLang.InsertLink, null, false, true, 34 ) ; break ; -
FCKeditor/branches/features/div_container/fckconfig.js
r2095 r2102 103 103 '/', 104 104 ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], 105 ['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote' ],105 ['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote','CreateDiv'], 106 106 ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], 107 107 ['Link','Unlink','Anchor'], -
FCKeditor/branches/features/div_container/fckpackager.xml
r2069 r2102 131 131 <File path="editor/_source/commandclasses/fckjustifycommands.js" /> 132 132 <File path="editor/_source/commandclasses/fckindentcommands.js" /> 133 <File path="editor/_source/commandclasses/fckblock quotecommand.js" />133 <File path="editor/_source/commandclasses/fckblockcontainercommand.js" /> 134 134 <File path="editor/_source/commandclasses/fckcorestylecommand.js" /> 135 135 <File path="editor/_source/commandclasses/fckremoveformatcommand.js" /> … … 227 227 <File path="editor/_source/commandclasses/fckjustifycommands.js" /> 228 228 <File path="editor/_source/commandclasses/fckindentcommands.js" /> 229 <File path="editor/_source/commandclasses/fckblock quotecommand.js" />229 <File path="editor/_source/commandclasses/fckblockcontainercommand.js" /> 230 230 <File path="editor/_source/commandclasses/fckcorestylecommand.js" /> 231 231 <File path="editor/_source/commandclasses/fckremoveformatcommand.js" />