Changeset 701
- Timestamp:
- 08/22/07 18:10:52 (6 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 10 added
- 17 edited
-
_samples/html/sample06.config.js (modified) (1 diff)
-
editor/_source/internals/fckcommands.js (modified) (1 diff)
-
editor/_source/internals/fcktoolbaritems.js (modified) (1 diff)
-
editor/_source/internals/fcktools_gecko.js (modified) (1 diff)
-
editor/_source/internals/fcktools_ie.js (modified) (1 diff)
-
editor/fckeditor.html (modified) (1 diff)
-
editor/images/block_address.png (added)
-
editor/images/block_div.png (added)
-
editor/images/block_h1.png (added)
-
editor/images/block_h2.png (added)
-
editor/images/block_h3.png (added)
-
editor/images/block_h4.png (added)
-
editor/images/block_h5.png (added)
-
editor/images/block_h6.png (added)
-
editor/images/block_p.png (added)
-
editor/images/block_pre.png (added)
-
editor/lang/en-au.js (modified) (1 diff)
-
editor/lang/en-ca.js (modified) (1 diff)
-
editor/lang/en-uk.js (modified) (1 diff)
-
editor/lang/en.js (modified) (1 diff)
-
editor/lang/zh-cn.js (modified) (1 diff)
-
editor/lang/zh.js (modified) (1 diff)
-
editor/plugins/dragresizetable/fckplugin.js (modified) (1 diff)
-
editor/plugins/tablecommands/fckplugin.js (modified) (1 diff)
-
editor/skins/default/fck_strip.gif (modified) (previous)
-
fckconfig.js (modified) (1 diff)
-
fckpackager.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_samples/html/sample06.config.js
r452 r701 27 27 ['My_Find','My_Replace','-','Placeholder'], 28 28 ['StyleSimple','FontFormatSimple','FontNameSimple','FontSizeSimple'], 29 ['Table','-','TableInsertRowAfter','TableDeleteRows','TableInsertColumnAfter','TableDeleteColumns','TableInsertCellAfter','TableDeleteCells','TableMergeCells','Table SplitCell','TableCellProp'],29 ['Table','-','TableInsertRowAfter','TableDeleteRows','TableInsertColumnAfter','TableDeleteColumns','TableInsertCellAfter','TableDeleteCells','TableMergeCells','TableHorizontalSplitCell','TableCellProp'], 30 30 ['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink'], 31 31 '/', -
FCKeditor/trunk/editor/_source/internals/fckcommands.js
r691 r701 116 116 case 'InsertOrderedList' : oCommand = new FCKListCommand( 'insertorderedlist' ) ; break ; 117 117 case 'InsertUnorderedList' : oCommand = new FCKListCommand( 'insertunorderedlist' ) ; break ; 118 case 'ShowBlocks' : oCommand = new FCKShowBlockCommand( 'ShowBlocks' ) ; break ; 118 119 119 120 // Generic Undefined command (usually used when a command is under development). -
FCKeditor/trunk/editor/_source/internals/fcktoolbaritems.js
r308 r701 110 110 case 'Select' : oItem = new FCKToolbarButton( 'Select' , FCKLang.SelectionField, null, null, null, null, 53 ) ; break ; 111 111 case 'ImageButton' : oItem = new FCKToolbarButton( 'ImageButton' , FCKLang.ImageButton, null, null, null, null, 55 ) ; break ; 112 case 'ShowBlocks' : oItem = new FCKToolbarButton( 'ShowBlocks' , FCKLang.ShowBlocks, null, null, null, true, 72 ) ; break ; 112 113 113 114 default: -
FCKeditor/trunk/editor/_source/internals/fcktools_gecko.js
r691 r701 53 53 e.appendChild( documentElement.createTextNode( cssStyles ) ) ; 54 54 documentElement.getElementsByTagName( "HEAD" )[0].appendChild( e ) ; 55 return e ; 55 56 } 56 57 -
FCKeditor/trunk/editor/_source/internals/fcktools_ie.js
r568 r701 38 38 var s = documentElement.createStyleSheet( "" ) ; 39 39 s.cssText = cssStyles ; 40 return s ; 40 41 } 41 42 -
FCKeditor/trunk/editor/fckeditor.html
r631 r701 107 107 LoadScript( '_source/commandclasses/fcknamedcommand.js' ) ; 108 108 LoadScript( '_source/commandclasses/fck_othercommands.js' ) ; 109 LoadScript( '_source/commandclasses/fckshowblocks.js' ) ; 109 110 LoadScript( '_source/commandclasses/fckspellcheckcommand_' + sSuffix + '.js' ) ; 110 111 LoadScript( '_source/commandclasses/fcktextcolorcommand.js' ) ; -
FCKeditor/trunk/editor/lang/en-au.js
r672 r701 105 105 106 106 FitWindow : "Maximize the editor size", 107 ShowBlocks : "Show Blocks", 107 108 108 109 // Context Menu -
FCKeditor/trunk/editor/lang/en-ca.js
r672 r701 105 105 106 106 FitWindow : "Maximize the editor size", 107 ShowBlocks : "Show Blocks", 107 108 108 109 // Context Menu -
FCKeditor/trunk/editor/lang/en-uk.js
r672 r701 105 105 106 106 FitWindow : "Maximize the editor size", 107 ShowBlocks : "Show Blocks", 107 108 108 109 // Context Menu -
FCKeditor/trunk/editor/lang/en.js
r672 r701 105 105 106 106 FitWindow : "Maximize the editor size", 107 ShowBlocks : "Show Blocks", 107 108 108 109 // Context Menu -
FCKeditor/trunk/editor/lang/zh-cn.js
r672 r701 105 105 106 106 FitWindow : "全屏编辑", 107 ShowBlocks : "显示区块", 107 108 108 109 // Context Menu -
FCKeditor/trunk/editor/lang/zh.js
r672 r701 105 105 106 106 FitWindow : "編輯器最大化", 107 ShowBlocks : "顯示區塊", 107 108 108 109 // Context Menu -
FCKeditor/trunk/editor/plugins/dragresizetable/fckplugin.js
r696 r701 198 198 cell.width = colArray[j].width ; 199 199 else 200 cell.width = parseInt( cell.width ) + parseInt( colArray[j].width) ;200 cell.width = parseInt( cell.width, 10 ) + parseInt( colArray[j].width, 10 ) ; 201 201 if ( tableMap[i][j+1] != cell ) 202 202 { -
FCKeditor/trunk/editor/plugins/tablecommands/fckplugin.js
r452 r701 30 30 FCKToolbarItems.RegisterItem( 'TableDeleteCells' , new FCKToolbarButton( 'TableDeleteCells' , FCKLang.DeleteCells, null, null, null, null, 59 ) ) ; 31 31 FCKToolbarItems.RegisterItem( 'TableMergeCells' , new FCKToolbarButton( 'TableMergeCells' , FCKLang.MergeCells, null, null, null, null, 60 ) ) ; 32 FCKToolbarItems.RegisterItem( 'Table SplitCell' , new FCKToolbarButton( 'TableSplitCell' , FCKLang.SplitCell, null, null, null, null, 61 ) ) ;32 FCKToolbarItems.RegisterItem( 'TableHorizontalSplitCell' , new FCKToolbarButton( 'TableHorizontalSplitCell' , FCKLang.SplitCell, null, null, null, null, 61 ) ) ; 33 33 FCKToolbarItems.RegisterItem( 'TableCellProp' , new FCKToolbarButton( 'TableCellProp' , FCKLang.CellProperties, null, null, null, null, 57 ) ) ; -
FCKeditor/trunk/fckconfig.js
r612 r701 109 109 ['Style','FontFormat','FontName','FontSize'], 110 110 ['TextColor','BGColor'], 111 ['FitWindow',' -','About']111 ['FitWindow','ShowBlocks','-','About'] 112 112 ] ; 113 113 -
FCKeditor/trunk/fckpackager.xml
r652 r701 114 114 <File path="editor/_source/commandclasses/fcknamedcommand.js" /> 115 115 <File path="editor/_source/commandclasses/fck_othercommands.js" /> 116 <File path="editor/_source/commandclasses/fckshowblocks.js" /> 116 117 <File path="editor/_source/commandclasses/fckspellcheckcommand_ie.js" /> 117 118 <File path="editor/_source/commandclasses/fcktextcolorcommand.js" /> … … 201 202 <File path="editor/_source/commandclasses/fcknamedcommand.js" /> 202 203 <File path="editor/_source/commandclasses/fck_othercommands.js" /> 204 <File path="editor/_source/commandclasses/fckshowblocks.js" /> 203 205 <File path="editor/_source/commandclasses/fckspellcheckcommand_gecko.js" /> 204 206 <File path="editor/_source/commandclasses/fcktextcolorcommand.js" />
Note: See TracChangeset
for help on using the changeset viewer.
