fckeditor.html 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  2. <!--
  3. * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  4. * Copyright (C) 2003-2010 Frederico Caldeira Knabben
  5. *
  6. * == BEGIN LICENSE ==
  7. *
  8. * Licensed under the terms of any of the following licenses at your
  9. * choice:
  10. *
  11. * - GNU General Public License Version 2 or later (the "GPL")
  12. * http://www.gnu.org/licenses/gpl.html
  13. *
  14. * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  15. * http://www.gnu.org/licenses/lgpl.html
  16. *
  17. * - Mozilla Public License Version 1.1 or later (the "MPL")
  18. * http://www.mozilla.org/MPL/MPL-1.1.html
  19. *
  20. * == END LICENSE ==
  21. *
  22. * Main page that holds the editor.
  23. -->
  24. <html>
  25. <head>
  26. <title>FCKeditor</title>
  27. <meta name="robots" content="noindex, nofollow">
  28. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  29. <meta http-equiv="Cache-Control" content="public">
  30. <script type="text/javascript">
  31. // #1645: Alert the user if opening FCKeditor in FF3 from local filesystem
  32. // without security.fileuri.strict_origin_policy disabled.
  33. if ( document.location.protocol == 'file:' )
  34. {
  35. try
  36. {
  37. window.parent.document.domain ;
  38. }
  39. catch ( e )
  40. {
  41. window.addEventListener( 'load', function()
  42. {
  43. document.body.innerHTML = '\
  44. <div style="border: 1px red solid; font-family: arial; font-size: 12px; color: red; padding:10px;">\
  45. <p>\
  46. <b>Your browser security settings don\'t allow FCKeditor to be opened from\
  47. the local filesystem.<\/b>\
  48. <\/p>\
  49. <p>\
  50. Please open the <b>about:config<\/b> page and disable the\
  51. &quot;security.fileuri.strict_origin_policy&quot; option; then load this page again.\
  52. <\/p>\
  53. <p>\
  54. Check our <a href="http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/FAQ#ff3perms">FAQ<\/a>\
  55. for more information.\
  56. <\/p>\
  57. <\/div>' ;
  58. }, false ) ;
  59. }
  60. }
  61. // Save a reference to the default domain.
  62. var FCK_ORIGINAL_DOMAIN ;
  63. // Automatically detect the correct document.domain (#123).
  64. (function()
  65. {
  66. var d = FCK_ORIGINAL_DOMAIN = document.domain ;
  67. while ( true )
  68. {
  69. // Test if we can access a parent property.
  70. try
  71. {
  72. var test = window.parent.document.domain ;
  73. break ;
  74. }
  75. catch( e ) {}
  76. // Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ...
  77. d = d.replace( /.*?(?:\.|$)/, '' ) ;
  78. if ( d.length == 0 )
  79. break ; // It was not able to detect the domain.
  80. try
  81. {
  82. document.domain = d ;
  83. }
  84. catch (e)
  85. {
  86. break ;
  87. }
  88. }
  89. })() ;
  90. // Save a reference to the detected runtime domain.
  91. var FCK_RUNTIME_DOMAIN = document.domain ;
  92. var FCK_IS_CUSTOM_DOMAIN = ( FCK_ORIGINAL_DOMAIN != FCK_RUNTIME_DOMAIN ) ;
  93. // Instead of loading scripts and CSSs using inline tags, all scripts are
  94. // loaded by code. In this way we can guarantee the correct processing order,
  95. // otherwise external scripts and inline scripts could be executed in an
  96. // unwanted order (IE).
  97. function LoadScript( url )
  98. {
  99. document.write( '<scr' + 'ipt type="text/javascript" src="' + url + '"><\/scr' + 'ipt>' ) ;
  100. }
  101. // Main editor scripts.
  102. var sSuffix = ( /*@cc_on!@*/false ) ? 'ie' : 'gecko' ;
  103. LoadScript( 'js/fckeditorcode_' + sSuffix + '.js' ) ;
  104. // Base configuration file.
  105. LoadScript( '../fckconfig.js' ) ;
  106. </script>
  107. <script type="text/javascript">
  108. // Adobe AIR compatibility file.
  109. if ( FCKBrowserInfo.IsAIR )
  110. LoadScript( 'js/fckadobeair.js' ) ;
  111. if ( FCKBrowserInfo.IsIE )
  112. {
  113. // Remove IE mouse flickering.
  114. try
  115. {
  116. document.execCommand( 'BackgroundImageCache', false, true ) ;
  117. }
  118. catch (e)
  119. {
  120. // We have been reported about loading problems caused by the above
  121. // line. For safety, let's just ignore errors.
  122. }
  123. // Create the default cleanup object used by the editor.
  124. FCK.IECleanup = new FCKIECleanup( window ) ;
  125. FCK.IECleanup.AddItem( FCKTempBin, FCKTempBin.Reset ) ;
  126. FCK.IECleanup.AddItem( FCK, FCK_Cleanup ) ;
  127. }
  128. // The first function to be called on selection change must the the styles
  129. // change checker, because the result of its processing may be used by another
  130. // functions listening to the same event.
  131. FCK.Events.AttachEvent( 'OnSelectionChange', function() { FCKStyles.CheckSelectionChanges() ; } ) ;
  132. // The config hidden field is processed immediately, because
  133. // CustomConfigurationsPath may be set in the page.
  134. FCKConfig.ProcessHiddenField() ;
  135. // Load the custom configurations file (if defined).
  136. if ( FCKConfig.CustomConfigurationsPath.length > 0 )
  137. LoadScript( FCKConfig.CustomConfigurationsPath ) ;
  138. </script>
  139. <script type="text/javascript">
  140. // Load configurations defined at page level.
  141. FCKConfig_LoadPageConfig() ;
  142. FCKConfig_PreProcess() ;
  143. // Load the full debug script.
  144. if ( FCKConfig.Debug )
  145. LoadScript( '_source/internals/fckdebug.js' ) ;
  146. </script>
  147. <script type="text/javascript">
  148. // CSS minified by http://iceyboard.no-ip.org/projects/css_compressor (see _dev/css_compression.txt).
  149. // FCK_MP3 and FCK__Video classes added by Julio Montoya.
  150. var FCK_InternalCSS = FCKTools.FixCssUrls( FCKConfig.BasePath + 'css/',
  151. 'html{min-height:100%; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;}' +
  152. 'table.FCK__ShowTableBorders,table.FCK__ShowTableBorders td,table.FCK__ShowTableBorders th{border:#d3d3d3 1px solid}' +
  153. 'form{border:1px dotted #F00;padding:2px}' +
  154. '.FCK__Flash{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_flashlogo.gif);background-repeat:no-repeat;width:80px;height:80px}' +
  155. '.FCK__Video{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_video.gif);background-repeat:no-repeat;width:80px;height:80px}' +
  156. '.FCK__MP3{border:none;background-position:center center;background-image:url(images/fck_mp3.gif);background-repeat:no-repeat;width:302px;height:19px}' +
  157. '.FCK__AsciiSvg{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_asciisvg.gif);background-repeat:no-repeat;width:107px;height:107px}' +
  158. '.FCK__UnknownObject{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_plugin.gif);background-repeat:no-repeat;width:80px;height:80px}' +
  159. '.FCK__Anchor{border:1px dotted #00F;background-position:center center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;width:16px;height:15px;vertical-align:middle}' +
  160. '.FCK__AnchorC{border:1px dotted #00F;background-position:1px center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}' +
  161. 'a[name]{border:1px dotted #00F;background-position:0 center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}' +
  162. '.FCK__PageBreak{background-position:center center;background-image:url(images/fck_pagebreak.gif);background-repeat:no-repeat;clear:both;display:block;float:none;width:100%;border-top:#999 1px dotted;border-bottom:#999 1px dotted;border-right:0;border-left:0;height:5px}' +
  163. '.FCK__InputHidden{width:19px;height:18px;background-image:url(images/fck_hiddenfield.gif);background-repeat:no-repeat;vertical-align:text-bottom;background-position:center center}' +
  164. '.FCK__ShowBlocks p,.FCK__ShowBlocks div,.FCK__ShowBlocks pre,.FCK__ShowBlocks address,.FCK__ShowBlocks blockquote,.FCK__ShowBlocks h1,.FCK__ShowBlocks h2,.FCK__ShowBlocks h3,.FCK__ShowBlocks h4,.FCK__ShowBlocks h5,.FCK__ShowBlocks h6{background-repeat:no-repeat;border:1px dotted gray;padding-top:8px;padding-left:8px}' +
  165. '.FCK__ShowBlocks p{background-image:url(images/block_p.png)}' +
  166. '.FCK__ShowBlocks div{background-image:url(images/block_div.png)}' +
  167. '.FCK__ShowBlocks pre{background-image:url(images/block_pre.png)}' +
  168. '.FCK__ShowBlocks address{background-image:url(images/block_address.png)}' +
  169. '.FCK__ShowBlocks blockquote{background-image:url(images/block_blockquote.png)}' +
  170. '.FCK__ShowBlocks h1{background-image:url(images/block_h1.png)}' +
  171. '.FCK__ShowBlocks h2{background-image:url(images/block_h2.png)}' +
  172. '.FCK__ShowBlocks h3{background-image:url(images/block_h3.png)}' +
  173. '.FCK__ShowBlocks h4{background-image:url(images/block_h4.png)}' +
  174. '.FCK__ShowBlocks h5{background-image:url(images/block_h5.png)}' +
  175. '.FCK__ShowBlocks h6{background-image:url(images/block_h6.png)}' ) ;
  176. var FCK_ShowTableBordersCSS = FCKTools.FixCssUrls( FCKConfig.BasePath + 'css/', 'table:not([border]),table:not([border]) > tr > td,table:not([border]) > tr > th,table:not([border]) > tbody > tr > td,table:not([border]) > tbody > tr > th,table:not([border]) > thead > tr > td,table:not([border]) > thead > tr > th,table:not([border]) > tfoot > tr > td,table:not([border]) > tfoot > tr > th,table[border=\"0\"],table[border=\"0\"] > tr > td,table[border=\"0\"] > tr > th,table[border=\"0\"] > tbody > tr > td,table[border=\"0\"] > tbody > tr > th,table[border=\"0\"] > thead > tr > td,table[border=\"0\"] > thead > tr > th,table[border=\"0\"] > tfoot > tr > td,table[border=\"0\"] > tfoot > tr > th{border:#d3d3d3 1px dotted}' ) ;
  177. // Popup the debug window if debug mode is set to true. It guarantees that the
  178. // first debug message will not be lost.
  179. if ( FCKConfig.Debug )
  180. FCKDebug._GetWindow() ;
  181. // Load the active skin CSS.
  182. document.write( FCKTools.GetStyleHtml( FCKConfig.SkinEditorCSS ) ) ;
  183. // Load the language file.
  184. FCKLanguageManager.Initialize() ;
  185. LoadScript( 'lang/' + FCKLanguageManager.ActiveLanguage.Code + '.js' ) ;
  186. </script>
  187. <script type="text/javascript">
  188. // Initialize the editing area context menu.
  189. FCK_ContextMenu_Init() ;
  190. FCKPlugins.Load() ;
  191. </script>
  192. <script type="text/javascript">
  193. // Set the editor interface direction.
  194. window.document.dir = FCKLang.Dir ;
  195. </script>
  196. <script type="text/javascript">
  197. window.onload = function()
  198. {
  199. InitializeAPI() ;
  200. if ( FCKBrowserInfo.IsIE )
  201. FCK_PreloadImages() ;
  202. else
  203. LoadToolbarSetup() ;
  204. }
  205. function LoadToolbarSetup()
  206. {
  207. FCKeditorAPI._FunctionQueue.Add( LoadToolbar ) ;
  208. }
  209. function LoadToolbar()
  210. {
  211. var oToolbarSet = FCK.ToolbarSet = FCKToolbarSet_Create() ;
  212. if ( oToolbarSet.IsLoaded )
  213. StartEditor() ;
  214. else
  215. {
  216. oToolbarSet.OnLoad = StartEditor ;
  217. oToolbarSet.Load( FCKURLParams['Toolbar'] || 'Default' ) ;
  218. }
  219. }
  220. function StartEditor()
  221. {
  222. // Remove the onload listener.
  223. FCK.ToolbarSet.OnLoad = null ;
  224. FCKeditorAPI._FunctionQueue.Remove( LoadToolbar ) ;
  225. FCK.Events.AttachEvent( 'OnStatusChange', WaitForActive ) ;
  226. // Start the editor.
  227. FCK.StartEditor() ;
  228. }
  229. function WaitForActive( editorInstance, newStatus )
  230. {
  231. if ( newStatus == FCK_STATUS_ACTIVE )
  232. {
  233. if ( FCKBrowserInfo.IsGecko )
  234. FCKTools.RunFunction( window.onresize ) ;
  235. if ( !FCKConfig.PreventSubmitHandler )
  236. _AttachFormSubmitToAPI() ;
  237. FCK.SetStatus( FCK_STATUS_COMPLETE ) ;
  238. // Call the special "FCKeditor_OnComplete" function that should be present in
  239. // the HTML page where the editor is located.
  240. if ( typeof( window.parent.FCKeditor_OnComplete ) == 'function' )
  241. window.parent.FCKeditor_OnComplete( FCK ) ;
  242. }
  243. }
  244. // Gecko and Webkit browsers don't calculate well the IFRAME size so we must
  245. // recalculate it every time the window size changes.
  246. if ( FCKBrowserInfo.IsGecko || ( FCKBrowserInfo.IsSafari && !FCKBrowserInfo.IsSafari3 ) )
  247. {
  248. window.onresize = function( e )
  249. {
  250. // Running in Firefox's chrome makes the window receive the event including subframes.
  251. // we care only about this window. Ticket #1642.
  252. // #2002: The originalTarget from the event can be the current document, the window, or the editing area.
  253. if ( e && e.originalTarget && e.originalTarget !== document && e.originalTarget !== window && (!e.originalTarget.ownerDocument || e.originalTarget.ownerDocument != document ))
  254. return ;
  255. var oCell = document.getElementById( 'xEditingArea' ) ;
  256. var eInnerElement = oCell.firstChild ;
  257. if ( eInnerElement )
  258. {
  259. eInnerElement.style.height = '0px' ;
  260. eInnerElement.style.height = ( oCell.scrollHeight - 2 ) + 'px' ;
  261. }
  262. }
  263. }
  264. </script>
  265. </head>
  266. <body>
  267. <table width="100%" cellpadding="0" cellspacing="0" style="height: 100%; table-layout: fixed">
  268. <tr id="xToolbarRow" style="display: none">
  269. <td id="xToolbarSpace" style="overflow: hidden">
  270. <table width="100%" cellpadding="0" cellspacing="0">
  271. <tr id="xCollapsed" style="display: none">
  272. <td id="xExpandHandle" class="TB_Expand" colspan="3">
  273. <img class="TB_ExpandImg" alt="" src="images/spacer.gif" width="8" height="4" /></td>
  274. </tr>
  275. <tr id="xExpanded" style="display: none">
  276. <td id="xTBLeftBorder" class="TB_SideBorder" style="width: 1px; display: none;"></td>
  277. <td id="xCollapseHandle" style="display: none" class="TB_Collapse" valign="bottom">
  278. <img class="TB_CollapseImg" alt="" src="images/spacer.gif" width="8" height="4" /></td>
  279. <td id="xToolbar" class="TB_ToolbarSet"></td>
  280. <td class="TB_SideBorder" style="width: 1px"></td>
  281. </tr>
  282. </table>
  283. </td>
  284. </tr>
  285. <tr>
  286. <td id="xEditingArea" valign="top" style="height: 100%"></td>
  287. </tr>
  288. </table>
  289. </body>
  290. </html>