fckconfig.js
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:13k
源码类别:

数据库编程

开发平台:

Visual C++

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
  4.  *
  5.  * == BEGIN LICENSE ==
  6.  *
  7.  * Licensed under the terms of any of the following licenses at your
  8.  * choice:
  9.  *
  10.  *  - GNU General Public License Version 2 or later (the "GPL")
  11.  *    http://www.gnu.org/licenses/gpl.html
  12.  *
  13.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  *    http://www.gnu.org/licenses/lgpl.html
  15.  *
  16.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  *
  19.  * == END LICENSE ==
  20.  *
  21.  * Editor configuration settings.
  22.  *
  23.  * Follow this link for more information:
  24.  * http://wiki.fckeditor.net/Developer%27s_Guide/Configuration/Configurations_Settings
  25.  */
  26. FCKConfig.CustomConfigurationsPath = '' ;
  27. FCKConfig.EditorAreaCSS = FCKConfig.BasePath + 'css/fck_editorarea.css' ;
  28. FCKConfig.EditorAreaStyles = '' ;
  29. FCKConfig.ToolbarComboPreviewCSS = '' ;
  30. FCKConfig.DocType = '' ;
  31. FCKConfig.BaseHref = '' ;
  32. FCKConfig.FullPage = false ;
  33. // The following option determines whether the "Show Blocks" feature is enabled or not at startup.
  34. FCKConfig.StartupShowBlocks = false ;
  35. FCKConfig.Debug = false ;
  36. FCKConfig.AllowQueryStringDebug = true ;
  37. FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ;
  38. FCKConfig.PreloadImages = [ FCKConfig.SkinPath + 'images/toolbar.start.gif', FCKConfig.SkinPath + 'images/toolbar.buttonarrow.gif' ] ;
  39. FCKConfig.PluginsPath = FCKConfig.BasePath + 'plugins/' ;
  40. // FCKConfig.Plugins.Add( 'autogrow' ) ;
  41. // FCKConfig.Plugins.Add( 'dragresizetable' );
  42. FCKConfig.AutoGrowMax = 400 ;
  43. // FCKConfig.ProtectedSource.Add( /<%[sS]*?%>/g ) ; // ASP style server side code <%...%>
  44. // FCKConfig.ProtectedSource.Add( /<?[sS]*??>/g ) ; // PHP style server side code
  45. // FCKConfig.ProtectedSource.Add( /(<asp:[^>]+>[s|S]*?</asp:[^>]+>)|(<asp:[^>]+/>)/gi ) ; // ASP.Net style tags <asp:control>
  46. FCKConfig.AutoDetectLanguage = true ;
  47. FCKConfig.DefaultLanguage = 'en' ;
  48. FCKConfig.ContentLangDirection = 'ltr' ;
  49. FCKConfig.ProcessHTMLEntities = true ;
  50. FCKConfig.IncludeLatinEntities = true ;
  51. FCKConfig.IncludeGreekEntities = true ;
  52. FCKConfig.ProcessNumericEntities = false ;
  53. FCKConfig.AdditionalNumericEntities = ''  ; // Single Quote: "'"
  54. FCKConfig.FillEmptyBlocks = true ;
  55. FCKConfig.FormatSource = true ;
  56. FCKConfig.FormatOutput = true ;
  57. FCKConfig.FormatIndentator = '    ' ;
  58. FCKConfig.GeckoUseSPAN = false ;
  59. FCKConfig.StartupFocus = false ;
  60. FCKConfig.ForcePasteAsPlainText = false ;
  61. FCKConfig.AutoDetectPasteFromWord = true ; // IE only.
  62. FCKConfig.ShowDropDialog = true ;
  63. FCKConfig.ForceSimpleAmpersand = false ;
  64. FCKConfig.TabSpaces = 0 ;
  65. FCKConfig.ShowBorders = true ;
  66. FCKConfig.SourcePopup = false ;
  67. FCKConfig.ToolbarStartExpanded = true ;
  68. FCKConfig.ToolbarCanCollapse = true ;
  69. FCKConfig.IgnoreEmptyParagraphValue = true ;
  70. FCKConfig.PreserveSessionOnFileBrowser = false ;
  71. FCKConfig.FloatingPanelsZIndex = 10000 ;
  72. FCKConfig.HtmlEncodeOutput = false ;
  73. FCKConfig.TemplateReplaceAll = true ;
  74. FCKConfig.TemplateReplaceCheckbox = true ;
  75. FCKConfig.ToolbarLocation = 'In' ;
  76. FCKConfig.ToolbarSets["Default"] = [
  77. ['Source','DocProps','-','Save','NewPage','Preview','-','Templates'],
  78. ['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'],
  79. ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
  80. ['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'],
  81. '/',
  82. ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
  83. ['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote'],
  84. ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
  85. ['Link','Unlink','Anchor'],
  86. ['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak'],
  87. '/',
  88. ['Style','FontFormat','FontName','FontSize'],
  89. ['TextColor','BGColor'],
  90. ['FitWindow','ShowBlocks','-','About'] // No comma for the last row.
  91. ] ;
  92. FCKConfig.ToolbarSets["Basic"] = [
  93. ['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
  94. ] ;
  95. FCKConfig.EnterMode = 'p' ; // p | div | br
  96. FCKConfig.ShiftEnterMode = 'br' ; // p | div | br
  97. FCKConfig.Keystrokes = [
  98. [ CTRL + 65 /*A*/, true ],
  99. [ CTRL + 67 /*C*/, true ],
  100. [ CTRL + 70 /*F*/, true ],
  101. [ CTRL + 83 /*S*/, true ],
  102. [ CTRL + 88 /*X*/, true ],
  103. [ CTRL + 86 /*V*/, 'Paste' ],
  104. [ SHIFT + 45 /*INS*/, 'Paste' ],
  105. [ CTRL + 88 /*X*/, 'Cut' ],
  106. [ SHIFT + 46 /*DEL*/, 'Cut' ],
  107. [ CTRL + 90 /*Z*/, 'Undo' ],
  108. [ CTRL + 89 /*Y*/, 'Redo' ],
  109. [ CTRL + SHIFT + 90 /*Z*/, 'Redo' ],
  110. [ CTRL + 76 /*L*/, 'Link' ],
  111. [ CTRL + 66 /*B*/, 'Bold' ],
  112. [ CTRL + 73 /*I*/, 'Italic' ],
  113. [ CTRL + 85 /*U*/, 'Underline' ],
  114. [ CTRL + SHIFT + 83 /*S*/, 'Save' ],
  115. [ CTRL + ALT + 13 /*ENTER*/, 'FitWindow' ],
  116. [ CTRL + 9 /*TAB*/, 'Source' ]
  117. ] ;
  118. FCKConfig.ContextMenu = ['Generic','Link','Anchor','Image','Flash','Select','Textarea','Checkbox','Radio','TextField','HiddenField','ImageButton','Button','BulletedList','NumberedList','Table','Form'] ;
  119. FCKConfig.BrowserContextMenuOnCtrl = false ;
  120. FCKConfig.EnableMoreFontColors = true ;
  121. FCKConfig.FontColors = '000000,993300,333300,003300,003366,000080,333399,333333,800000,FF6600,808000,808080,008080,0000FF,666699,808080,FF0000,FF9900,99CC00,339966,33CCCC,3366FF,800080,999999,FF00FF,FFCC00,FFFF00,00FF00,00FFFF,00CCFF,993366,C0C0C0,FF99CC,FFCC99,FFFF99,CCFFCC,CCFFFF,99CCFF,CC99FF,FFFFFF' ;
  122. FCKConfig.FontFormats = 'p;div;pre;address;h1;h2;h3;h4;h5;h6' ;
  123. FCKConfig.FontNames = 'Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana' ;
  124. FCKConfig.FontSizes = 'smaller;larger;xx-small;x-small;small;medium;large;x-large;xx-large' ;
  125. FCKConfig.StylesXmlPath = FCKConfig.EditorPath + 'fckstyles.xml' ;
  126. FCKConfig.TemplatesXmlPath = FCKConfig.EditorPath + 'fcktemplates.xml' ;
  127. FCKConfig.SpellChecker = 'ieSpell' ; // 'ieSpell' | 'SpellerPages'
  128. FCKConfig.IeSpellDownloadUrl = 'http://www.iespell.com/download.php' ;
  129. FCKConfig.SpellerPagesServerScript = 'server-scripts/spellchecker.php' ; // Available extension: .php .cfm .pl
  130. FCKConfig.FirefoxSpellChecker = false ;
  131. FCKConfig.MaxUndoLevels = 15 ;
  132. FCKConfig.DisableObjectResizing = false ;
  133. FCKConfig.DisableFFTableHandles = true ;
  134. FCKConfig.LinkDlgHideTarget = false ;
  135. FCKConfig.LinkDlgHideAdvanced = false ;
  136. FCKConfig.ImageDlgHideLink = false ;
  137. FCKConfig.ImageDlgHideAdvanced = false ;
  138. FCKConfig.FlashDlgHideAdvanced = false ;
  139. FCKConfig.ProtectedTags = '' ;
  140. // This will be applied to the body element of the editor
  141. FCKConfig.BodyId = '' ;
  142. FCKConfig.BodyClass = '' ;
  143. FCKConfig.DefaultStyleLabel = '' ;
  144. FCKConfig.DefaultFontFormatLabel = '' ;
  145. FCKConfig.DefaultFontLabel = '' ;
  146. FCKConfig.DefaultFontSizeLabel = '' ;
  147. FCKConfig.DefaultLinkTarget = '' ;
  148. // The option switches between trying to keep the html structure or do the changes so the content looks like it was in Word
  149. FCKConfig.CleanWordKeepsStructure = false ;
  150. // Only inline elements are valid.
  151. FCKConfig.RemoveFormatTags = 'b,big,code,del,dfn,em,font,i,ins,kbd,q,samp,small,span,strike,strong,sub,sup,tt,u,var' ;
  152. FCKConfig.CustomStyles = 
  153. {
  154. 'Red Title' : { Element : 'h3', Styles : { 'color' : 'Red' } }
  155. };
  156. // Do not add, rename or remove styles here. Only apply definition changes.
  157. FCKConfig.CoreStyles = 
  158. {
  159. // Basic Inline Styles.
  160. 'Bold' : { Element : 'b', Overrides : 'strong' },
  161. 'Italic' : { Element : 'i', Overrides : 'em' },
  162. 'Underline' : { Element : 'u' },
  163. 'StrikeThrough' : { Element : 'strike' },
  164. 'Subscript' : { Element : 'sub' },
  165. 'Superscript' : { Element : 'sup' },
  166. // Basic Block Styles (Font Format Combo).
  167. 'p' : { Element : 'p' },
  168. 'div' : { Element : 'div' },
  169. 'pre' : { Element : 'pre' },
  170. 'address' : { Element : 'address' },
  171. 'h1' : { Element : 'h1' },
  172. 'h2' : { Element : 'h2' },
  173. 'h3' : { Element : 'h3' },
  174. 'h4' : { Element : 'h4' },
  175. 'h5' : { Element : 'h5' },
  176. 'h6' : { Element : 'h6' },
  177. // Other formatting features.
  178. 'FontFace' : 
  179. Element : 'span', 
  180. Styles : { 'font-family' : '#("Font")' }, 
  181. Overrides : [ { Element : 'font', Attributes : { 'face' : null } } ]
  182. },
  183. 'Size' :
  184. Element : 'span', 
  185. Styles : { 'font-size' : '#("Size","fontSize")' }, 
  186. Overrides : [ { Element : 'font', Attributes : { 'size' : null } } ]
  187. },
  188. 'Color' :
  189. Element : 'span', 
  190. Styles : { 'color' : '#("Color","color")' }, 
  191. Overrides : [ { Element : 'font', Attributes : { 'color' : null } } ]
  192. },
  193. 'BackColor' : { Element : 'span', Styles : { 'background-color' : '#("Color","color")' } }
  194. };
  195. // The distance of an indentation step.
  196. FCKConfig.IndentLength = 40 ;
  197. FCKConfig.IndentUnit = 'px' ;
  198. // Alternatively, FCKeditor allows the use of CSS classes for block indentation.
  199. // This overrides the IndentLength/IndentUnit settings.
  200. FCKConfig.IndentClasses = [] ;
  201. // [ Left, Center, Right, Justified ]
  202. FCKConfig.JustifyClasses = [] ;
  203. // The following value defines which File Browser connector and Quick Upload
  204. // "uploader" to use. It is valid for the default implementaion and it is here
  205. // just to make this configuration file cleaner.
  206. // It is not possible to change this value using an external file or even
  207. // inline when creating the editor instance. In that cases you must set the
  208. // values of LinkBrowserURL, ImageBrowserURL and so on.
  209. // Custom implementations should just ignore it.
  210. var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
  211. var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
  212. // Don't care about the following line. It just calculates the correct connector
  213. // extension to use for the default File Browser (Perl uses "cgi").
  214. var _FileBrowserExtension = _FileBrowserLanguage == 'perl' ? 'cgi' : _FileBrowserLanguage ;
  215. FCKConfig.LinkBrowser = true ;
  216. FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Connector=../../connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ;
  217. FCKConfig.LinkBrowserWindowWidth = FCKConfig.ScreenWidth * 0.7 ; // 70%
  218. FCKConfig.LinkBrowserWindowHeight = FCKConfig.ScreenHeight * 0.7 ; // 70%
  219. FCKConfig.ImageBrowser = true ;
  220. FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=../../connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ;
  221. FCKConfig.ImageBrowserWindowWidth  = FCKConfig.ScreenWidth * 0.7 ; // 70% ;
  222. FCKConfig.ImageBrowserWindowHeight = FCKConfig.ScreenHeight * 0.7 ; // 70% ;
  223. FCKConfig.FlashBrowser = true ;
  224. FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Flash&Connector=../../connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ;
  225. FCKConfig.FlashBrowserWindowWidth  = FCKConfig.ScreenWidth * 0.7 ; //70% ;
  226. FCKConfig.FlashBrowserWindowHeight = FCKConfig.ScreenHeight * 0.7 ; //70% ;
  227. FCKConfig.LinkUpload = true ;
  228. FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/connectors/' + _QuickUploadLanguage + '/upload.' + _QuickUploadLanguage ;
  229. FCKConfig.LinkUploadAllowedExtensions = "" ; // empty for all
  230. FCKConfig.LinkUploadDeniedExtensions = ".(html|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|com|dll|vbs|js|reg|cgi|htaccess|asis|sh|shtml|shtm|phtm)$" ; // empty for no one
  231. FCKConfig.ImageUpload = true ;
  232. FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/connectors/' + _QuickUploadLanguage + '/upload.' + _QuickUploadLanguage + '?Type=Image' ;
  233. FCKConfig.ImageUploadAllowedExtensions = ".(jpg|gif|jpeg|png|bmp)$" ; // empty for all
  234. FCKConfig.ImageUploadDeniedExtensions = "" ; // empty for no one
  235. FCKConfig.FlashUpload = true ;
  236. FCKConfig.FlashUploadURL = FCKConfig.BasePath + 'filemanager/connectors/' + _QuickUploadLanguage + '/upload.' + _QuickUploadLanguage + '?Type=Flash' ;
  237. FCKConfig.FlashUploadAllowedExtensions = ".(swf|fla)$" ; // empty for all
  238. FCKConfig.FlashUploadDeniedExtensions = "" ; // empty for no one
  239. FCKConfig.SmileyPath = FCKConfig.BasePath + 'images/smiley/msn/' ;
  240. FCKConfig.SmileyImages = ['regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','confused_smile.gif','tounge_smile.gif','embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angry_smile.gif','angel_smile.gif','shades_smile.gif','devil_smile.gif','cry_smile.gif','lightbulb.gif','thumbs_down.gif','thumbs_up.gif','heart.gif','broken_heart.gif','kiss.gif','envelope.gif'] ;
  241. FCKConfig.SmileyColumns = 8 ;
  242. FCKConfig.SmileyWindowWidth = 320 ;
  243. FCKConfig.SmileyWindowHeight = 240 ;