JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.2.2
[ckeditor.git] / _samples / output_html.html
diff --git a/_samples/output_html.html b/_samples/output_html.html
new file mode 100644 (file)
index 0000000..c8d0628
--- /dev/null
@@ -0,0 +1,259 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
+<!--\r
+Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.\r
+For licensing, see LICENSE.html or http://ckeditor.com/license\r
+-->\r
+<html xmlns="http://www.w3.org/1999/xhtml">\r
+<head>\r
+       <title>HTML compliant output - CKEditor Sample</title>\r
+       <meta content="text/html; charset=utf-8" http-equiv="content-type" />\r
+       <script type="text/javascript" src="../ckeditor.js"></script>\r
+       <script src="sample.js" type="text/javascript"></script>\r
+       <link href="sample.css" rel="stylesheet" type="text/css" />\r
+</head>\r
+<body>\r
+       <h1>\r
+               CKEditor Sample\r
+       </h1>\r
+       <!-- This <div> holds alert messages to be display in the sample page. -->\r
+       <div id="alerts">\r
+               <noscript>\r
+                       <p>\r
+                               <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
+                               support, like yours, you should still see the contents (HTML data) and you should\r
+                               be able to edit it normally, without a rich editor interface.\r
+                       </p>\r
+               </noscript>\r
+       </div>\r
+       <form action="sample_posteddata.php" method="post">\r
+               <p>\r
+                       This sample shows CKEditor configured to produce a legacy <strong>HTML4</strong> document. Traditional\r
+                       HTML elements like &lt;b&gt;, &lt;i&gt;, and &lt;font&gt; are used in place of\r
+                       &lt;strong&gt;, &lt;em&gt; and CSS styles.</p>\r
+               <p>\r
+                       <label for="editor1">\r
+                               Editor 1:</label><br />\r
+                       <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;b&gt;sample text&lt;/b&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
+                       <script type="text/javascript">\r
+                       //<![CDATA[\r
+\r
+                               CKEDITOR.replace( 'editor1',\r
+                                       {\r
+                                               /*\r
+                                                * Style sheet for the contents\r
+                                                */\r
+                                               contentsCss : 'body {color:#000; background-color#FFF;}',\r
+\r
+                                               /*\r
+                                                * Simple HTML5 doctype\r
+                                                */\r
+                                               docType : '<!DOCTYPE HTML>',\r
+\r
+                                               /*\r
+                                                * Core styles.\r
+                                                */\r
+                                               coreStyles_bold : { element : 'b' },\r
+                                               coreStyles_italic       : { element : 'i' },\r
+                                               coreStyles_underline    : { element : 'u'},\r
+                                               coreStyles_strike       : { element : 'strike' },\r
+\r
+                                               /*\r
+                                                * Font face\r
+                                                */\r
+                                               // Define the way font elements will be applied to the document. The "font"\r
+                                               // element will be used.\r
+                                               font_style :\r
+                                               {\r
+                                                               element         : 'font',\r
+                                                               attributes              : { 'face' : '#(family)' }\r
+                                               },\r
+\r
+                                               /*\r
+                                                * Font sizes.\r
+                                                */\r
+                                               fontSize_sizes : 'xx-small/1;x-small/2;small/3;medium/4;large/5;x-large/6;xx-large/7',\r
+                                               fontSize_style :\r
+                                                       {\r
+                                                               element         : 'font',\r
+                                                               attributes      : { 'size' : '#(size)' }\r
+                                                       } ,\r
+\r
+                                               /*\r
+                                                * Font colors.\r
+                                                */\r
+                                               colorButton_enableMore : true,\r
+\r
+                                               colorButton_foreStyle :\r
+                                                       {\r
+                                                               element : 'font',\r
+                                                               attributes : { 'color' : '#(color)' },\r
+                                                               overrides       : [ { element : 'span', attributes : { 'class' : /^FontColor(?:1|2|3)$/ } } ]\r
+                                                       },\r
+\r
+                                               colorButton_backStyle :\r
+                                                       {\r
+                                                               element : 'font',\r
+                                                               styles  : { 'background-color' : '#(color)' }\r
+                                                       },\r
+\r
+                                               /*\r
+                                                * Styles combo.\r
+                                                */\r
+                                               stylesSet :\r
+                                                               [\r
+                                                                       { name : 'Computer Code', element : 'code' },\r
+                                                                       { name : 'Keyboard Phrase', element : 'kbd' },\r
+                                                                       { name : 'Sample Text', element : 'samp' },\r
+                                                                       { name : 'Variable', element : 'var' },\r
+\r
+                                                                       { name : 'Deleted Text', element : 'del' },\r
+                                                                       { name : 'Inserted Text', element : 'ins' },\r
+\r
+                                                                       { name : 'Cited Work', element : 'cite' },\r
+                                                                       { name : 'Inline Quotation', element : 'q' }\r
+                                                               ],\r
+\r
+                                               on : { 'instanceReady' : configureHtmlOutput }\r
+                                       });\r
+\r
+/*\r
+ * Adjust the behavior of the dataProcessor to avoid styles\r
+ * and make it look like FCKeditor HTML output.\r
+ */\r
+function configureHtmlOutput( ev )\r
+{\r
+       var editor = ev.editor,\r
+               dataProcessor = editor.dataProcessor,\r
+               htmlFilter = dataProcessor && dataProcessor.htmlFilter;\r
+\r
+       // Out self closing tags the HTML4 way, like <br>.\r
+       dataProcessor.writer.selfClosingEnd = '>';\r
+\r
+       // Make output formatting behave similar to FCKeditor\r
+       var dtd = CKEDITOR.dtd;\r
+       for ( var e in CKEDITOR.tools.extend( {}, dtd.$nonBodyContent, dtd.$block, dtd.$listItem, dtd.$tableContent ) )\r
+       {\r
+               dataProcessor.writer.setRules( e,\r
+                       {\r
+                               indent : true,\r
+                               breakBeforeOpen : true,\r
+                               breakAfterOpen : false,\r
+                               breakBeforeClose : !dtd[ e ][ '#' ],\r
+                               breakAfterClose : true\r
+                       });\r
+       }\r
+\r
+       // Output properties as attributes, not styles.\r
+       htmlFilter.addRules(\r
+               {\r
+                       elements :\r
+                       {\r
+                               $ : function( element )\r
+                               {\r
+                                       // Output dimensions of images as width and height\r
+                                       if ( element.name == 'img' )\r
+                                       {\r
+                                               var style = element.attributes.style;\r
+\r
+                                               if ( style )\r
+                                               {\r
+                                                       // Get the width from the style.\r
+                                                       var match = /(?:^|\s)width\s*:\s*(\d+)px/i.exec( style ),\r
+                                                               width = match && match[1];\r
+\r
+                                                       // Get the height from the style.\r
+                                                       match = /(?:^|\s)height\s*:\s*(\d+)px/i.exec( style );\r
+                                                       var height = match && match[1];\r
+\r
+                                                       if ( width )\r
+                                                       {\r
+                                                               element.attributes.style = element.attributes.style.replace( /(?:^|\s)width\s*:\s*(\d+)px;?/i , '' );\r
+                                                               element.attributes.width = width;\r
+                                                       }\r
+\r
+                                                       if ( height )\r
+                                                       {\r
+                                                               element.attributes.style = element.attributes.style.replace( /(?:^|\s)height\s*:\s*(\d+)px;?/i , '' );\r
+                                                               element.attributes.height = height;\r
+                                                       }\r
+                                               }\r
+                                       }\r
+\r
+                                       // Output alignment of paragraphs using align\r
+                                       if ( element.name == 'p' )\r
+                                       {\r
+                                               style = element.attributes.style;\r
+\r
+                                               if ( style )\r
+                                               {\r
+                                                       // Get the align from the style.\r
+                                                       match = /(?:^|\s)text-align\s*:\s*(\w*);/i.exec( style );\r
+                                                       var align = match && match[1];\r
+\r
+                                                       if ( align )\r
+                                                       {\r
+                                                               element.attributes.style = element.attributes.style.replace( /(?:^|\s)text-align\s*:\s*(\w*);?/i , '' );\r
+                                                               element.attributes.align = align;\r
+                                                       }\r
+                                               }\r
+                                       }\r
+\r
+                                       if ( !element.attributes.style )\r
+                                               delete element.attributes.style;\r
+\r
+                                       return element;\r
+                               }\r
+                       },\r
+\r
+                       attributes :\r
+                               {\r
+                                       style : function( value, element )\r
+                                       {\r
+                                               // Return #RGB for background and border colors\r
+                                               return convertRGBToHex( value );\r
+                                       }\r
+                               }\r
+               } );\r
+}\r
+\r
+\r
+/**\r
+* Convert a CSS rgb(R, G, B) color back to #RRGGBB format.\r
+* @param Css style string (can include more than one color\r
+* @return Converted css style.\r
+*/\r
+function convertRGBToHex( cssStyle )\r
+{\r
+       return cssStyle.replace( /(?:rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\))/gi, function( match, red, green, blue )\r
+               {\r
+                       red = parseInt( red, 10 ).toString( 16 );\r
+                       green = parseInt( green, 10 ).toString( 16 );\r
+                       blue = parseInt( blue, 10 ).toString( 16 );\r
+                       var color = [red, green, blue] ;\r
+\r
+                       // Add padding zeros if the hex value is less than 0x10.\r
+                       for ( var i = 0 ; i < color.length ; i++ )\r
+                               color[i] = String( '0' + color[i] ).slice( -2 ) ;\r
+\r
+                       return '#' + color.join( '' ) ;\r
+                });\r
+}\r
+                       //]]>\r
+                       </script>\r
+               </p>\r
+               <p>\r
+                       <input type="submit" value="Submit" />\r
+               </p>\r
+       </form>\r
+       <div id="footer">\r
+               <hr />\r
+               <p>\r
+                       CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
+               </p>\r
+               <p id="copy">\r
+                       Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico\r
+                       Knabben. All rights reserved.\r
+               </p>\r
+       </div>\r
+</body>\r
+</html>\r