Built motion from commit 99feb03.|0.0.140
[motion.git] / public / assets / plugins / ckeditor / samples / old / htmlwriter / outputhtml.html
index bcf1eca..f7123a1 100644 (file)
-<!DOCTYPE html>
-<!--
-Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.md or http://ckeditor.com/license
--->
-<html>
-<head>
-       <meta charset="utf-8">
-       <title>HTML Compliant Output &mdash; CKEditor Sample</title>
-       <script src="../../../ckeditor.js"></script>
-       <script src="../../../samples/old/sample.js"></script>
-       <link href="../../../samples/old/sample.css" rel="stylesheet">
-       <meta name="ckeditor-sample-required-plugins" content="sourcearea">
-       <meta name="ckeditor-sample-name" content="Output HTML">
-       <meta name="ckeditor-sample-group" content="Advanced Samples">
-       <meta name="ckeditor-sample-description" content="Configuring CKEditor to produce legacy HTML 4 code.">
-</head>
-<body>
-       <h1 class="samples">
-               <a href="../../../samples/old/index.html">CKEditor Samples</a> &raquo; Producing HTML Compliant Output
-       </h1>
-       <div class="warning deprecated">
-               This sample is not maintained anymore. Check out the <a href="http://sdk.ckeditor.com/">brand new samples in CKEditor SDK</a>.
-       </div>
-       <div class="description">
-               <p>
-                       This sample shows how to configure CKEditor to output valid
-                       <a class="samples" href="http://www.w3.org/TR/html401/">HTML 4.01</a> code.
-                       Traditional HTML elements like <code>&lt;b&gt;</code>,
-                       <code>&lt;i&gt;</code>, and <code>&lt;font&gt;</code> are used in place of
-                       <code>&lt;strong&gt;</code>, <code>&lt;em&gt;</code>, and CSS styles.
-               </p>
-               <p>
-                       To add a CKEditor instance outputting legacy HTML 4.01 code, load the editor using a standard
-                       JavaScript call, and define CKEditor features to use the HTML compliant elements and attributes.
-               </p>
-               <p>
-                       A snippet of the configuration code can be seen below; check the source of this page for
-                       full definition:
-               </p>
-<pre class="samples">
-CKEDITOR.replace( '<em>textarea_id</em>', {
-       coreStyles_bold: { element: 'b' },
-       coreStyles_italic: { element: 'i' },
-
-       fontSize_style: {
-               element: 'font',
-               attributes: { 'size': '#(size)' }
-       }
-
-       ...
-});</pre>
-       </div>
-       <form action="../../../samples/sample_posteddata.php" method="post">
-               <p>
-                       <label for="editor1">
-                               Editor 1:
-                       </label>
-                       <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>
-                       <script>
-
-                               CKEDITOR.replace( 'editor1', {
-                                       /*
-                                        * Ensure that htmlwriter plugin, which is required for this sample, is loaded.
-                                        */
-                                       extraPlugins: 'htmlwriter',
-
-                                       /*
-                                        * Style sheet for the contents
-                                        */
-                                       contentsCss: 'body {color:#000; background-color#:FFF;}',
-
-                                       /*
-                                        * Simple HTML5 doctype
-                                        */
-                                       docType: '<!DOCTYPE HTML>',
-
-                                       /*
-                                        * Allowed content rules which beside limiting allowed HTML
-                                        * will also take care of transforming styles to attributes
-                                        * (currently only for img - see transformation rules defined below).
-                                        *
-                                        * Read more: http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter
-                                        */
-                                       allowedContent:
-                                               'h1 h2 h3 p pre[align]; ' +
-                                               'blockquote code kbd samp var del ins cite q b i u strike ul ol li hr table tbody tr td th caption; ' +
-                                               'img[!src,alt,align,width,height]; font[!face]; font[!family]; font[!color]; font[!size]; font{!background-color}; a[!href]; a[!name]',
-
-                                       /*
-                                        * Core styles.
-                                        */
-                                       coreStyles_bold: { element: 'b' },
-                                       coreStyles_italic: { element: 'i' },
-                                       coreStyles_underline: { element: 'u' },
-                                       coreStyles_strike: { element: 'strike' },
-
-                                       /*
-                                        * Font face.
-                                        */
-
-                                       // Define the way font elements will be applied to the document.
-                                       // The "font" element will be used.
-                                       font_style: {
-                                               element: 'font',
-                                               attributes: { 'face': '#(family)' }
-                                       },
-
-                                       /*
-                                        * Font sizes.
-                                        */
-                                       fontSize_sizes: 'xx-small/1;x-small/2;small/3;medium/4;large/5;x-large/6;xx-large/7',
-                                       fontSize_style: {
-                                               element: 'font',
-                                               attributes: { 'size': '#(size)' }
-                                       },
-
-                                       /*
-                                        * Font colors.
-                                        */
-
-                                       colorButton_foreStyle: {
-                                               element: 'font',
-                                               attributes: { 'color': '#(color)' }
-                                       },
-
-                                       colorButton_backStyle: {
-                                               element: 'font',
-                                               styles: { 'background-color': '#(color)' }
-                                       },
-
-                                       /*
-                                        * Styles combo.
-                                        */
-                                       stylesSet: [
-                                               { name: 'Computer Code', element: 'code' },
-                                               { name: 'Keyboard Phrase', element: 'kbd' },
-                                               { name: 'Sample Text', element: 'samp' },
-                                               { name: 'Variable', element: 'var' },
-                                               { name: 'Deleted Text', element: 'del' },
-                                               { name: 'Inserted Text', element: 'ins' },
-                                               { name: 'Cited Work', element: 'cite' },
-                                               { name: 'Inline Quotation', element: 'q' }
-                                       ],
-
-                                       on: {
-                                               pluginsLoaded: configureTransformations,
-                                               loaded: configureHtmlWriter
-                                       }
-                               });
-
-                               /*
-                                * Add missing content transformations.
-                                */
-                               function configureTransformations( evt ) {
-                                       var editor = evt.editor;
-
-                                       editor.dataProcessor.htmlFilter.addRules( {
-                                               attributes: {
-                                                       style: function( value, element ) {
-                                                               // Return #RGB for background and border colors
-                                                               return CKEDITOR.tools.convertRgbToHex( value );
-                                                       }
-                                               }
-                                       } );
-
-                                       // Default automatic content transformations do not yet take care of
-                                       // align attributes on blocks, so we need to add our own transformation rules.
-                                       function alignToAttribute( element ) {
-                                               if ( element.styles[ 'text-align' ] ) {
-                                                       element.attributes.align = element.styles[ 'text-align' ];
-                                                       delete element.styles[ 'text-align' ];
-                                               }
-                                       }
-                                       editor.filter.addTransformations( [
-                                               [ { element: 'p',       right: alignToAttribute } ],
-                                               [ { element: 'h1',      right: alignToAttribute } ],
-                                               [ { element: 'h2',      right: alignToAttribute } ],
-                                               [ { element: 'h3',      right: alignToAttribute } ],
-                                               [ { element: 'pre',     right: alignToAttribute } ]
-                                       ] );
-                               }
-
-                               /*
-                                * Adjust the behavior of htmlWriter to make it output HTML like FCKeditor.
-                                */
-                               function configureHtmlWriter( evt ) {
-                                       var editor = evt.editor,
-                                               dataProcessor = editor.dataProcessor;
-
-                                       // Out self closing tags the HTML4 way, like <br>.
-                                       dataProcessor.writer.selfClosingEnd = '>';
-
-                                       // Make output formatting behave similar to FCKeditor.
-                                       var dtd = CKEDITOR.dtd;
-                                       for ( var e in CKEDITOR.tools.extend( {}, dtd.$nonBodyContent, dtd.$block, dtd.$listItem, dtd.$tableContent ) ) {
-                                               dataProcessor.writer.setRules( e, {
-                                                       indent: true,
-                                                       breakBeforeOpen: true,
-                                                       breakAfterOpen: false,
-                                                       breakBeforeClose: !dtd[ e ][ '#' ],
-                                                       breakAfterClose: true
-                                               });
-                                       }
-                               }
-
-                       </script>
-               </p>
-               <p>
-                       <input type="submit" value="Submit">
-               </p>
-       </form>
-       <div id="footer">
-               <hr>
-               <p>
-                       CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
-               </p>
-               <p id="copy">
-                       Copyright &copy; 2003-2016, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
-                       Knabben. All rights reserved.
-               </p>
-       </div>
-</body>
-</html>
+<!DOCTYPE html>\r
+<!--\r
+Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.\r
+For licensing, see LICENSE.md or http://ckeditor.com/license\r
+-->\r
+<html>\r
+<head>\r
+       <meta charset="utf-8">\r
+       <title>HTML Compliant Output &mdash; CKEditor Sample</title>\r
+       <script src="../../../ckeditor.js"></script>\r
+       <script src="../../../samples/old/sample.js"></script>\r
+       <link href="../../../samples/old/sample.css" rel="stylesheet">\r
+       <meta name="ckeditor-sample-required-plugins" content="sourcearea">\r
+       <meta name="ckeditor-sample-name" content="Output HTML">\r
+       <meta name="ckeditor-sample-group" content="Advanced Samples">\r
+       <meta name="ckeditor-sample-description" content="Configuring CKEditor to produce legacy HTML 4 code.">\r
+</head>\r
+<body>\r
+       <h1 class="samples">\r
+               <a href="../../../samples/old/index.html">CKEditor Samples</a> &raquo; Producing HTML Compliant Output\r
+       </h1>\r
+       <div class="warning deprecated">\r
+               This sample is not maintained anymore. Check out the <a href="http://sdk.ckeditor.com/">brand new samples in CKEditor SDK</a>.\r
+       </div>\r
+       <div class="description">\r
+               <p>\r
+                       This sample shows how to configure CKEditor to output valid\r
+                       <a class="samples" href="http://www.w3.org/TR/html401/">HTML 4.01</a> code.\r
+                       Traditional HTML elements like <code>&lt;b&gt;</code>,\r
+                       <code>&lt;i&gt;</code>, and <code>&lt;font&gt;</code> are used in place of\r
+                       <code>&lt;strong&gt;</code>, <code>&lt;em&gt;</code>, and CSS styles.\r
+               </p>\r
+               <p>\r
+                       To add a CKEditor instance outputting legacy HTML 4.01 code, load the editor using a standard\r
+                       JavaScript call, and define CKEditor features to use the HTML compliant elements and attributes.\r
+               </p>\r
+               <p>\r
+                       A snippet of the configuration code can be seen below; check the source of this page for\r
+                       full definition:\r
+               </p>\r
+<pre class="samples">\r
+CKEDITOR.replace( '<em>textarea_id</em>', {\r
+       coreStyles_bold: { element: 'b' },\r
+       coreStyles_italic: { element: 'i' },\r
+\r
+       fontSize_style: {\r
+               element: 'font',\r
+               attributes: { 'size': '#(size)' }\r
+       }\r
+\r
+       ...\r
+});</pre>\r
+       </div>\r
+       <form action="../../../samples/sample_posteddata.php" method="post">\r
+               <p>\r
+                       <label for="editor1">\r
+                               Editor 1:\r
+                       </label>\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>\r
+\r
+                               CKEDITOR.replace( 'editor1', {\r
+                                       /*\r
+                                        * Ensure that htmlwriter plugin, which is required for this sample, is loaded.\r
+                                        */\r
+                                       extraPlugins: 'htmlwriter',\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
+                                        * Allowed content rules which beside limiting allowed HTML\r
+                                        * will also take care of transforming styles to attributes\r
+                                        * (currently only for img - see transformation rules defined below).\r
+                                        *\r
+                                        * Read more: http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter\r
+                                        */\r
+                                       allowedContent:\r
+                                               'h1 h2 h3 p pre[align]; ' +\r
+                                               'blockquote code kbd samp var del ins cite q b i u strike ul ol li hr table tbody tr td th caption; ' +\r
+                                               'img[!src,alt,align,width,height]; font[!face]; font[!family]; font[!color]; font[!size]; font{!background-color}; a[!href]; a[!name]',\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
+\r
+                                       // Define the way font elements will be applied to the document.\r
+                                       // The "font" element will be used.\r
+                                       font_style: {\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
+                                               element: 'font',\r
+                                               attributes: { 'size': '#(size)' }\r
+                                       },\r
+\r
+                                       /*\r
+                                        * Font colors.\r
+                                        */\r
+\r
+                                       colorButton_foreStyle: {\r
+                                               element: 'font',\r
+                                               attributes: { 'color': '#(color)' }\r
+                                       },\r
+\r
+                                       colorButton_backStyle: {\r
+                                               element: 'font',\r
+                                               styles: { 'background-color': '#(color)' }\r
+                                       },\r
+\r
+                                       /*\r
+                                        * Styles combo.\r
+                                        */\r
+                                       stylesSet: [\r
+                                               { name: 'Computer Code', element: 'code' },\r
+                                               { name: 'Keyboard Phrase', element: 'kbd' },\r
+                                               { name: 'Sample Text', element: 'samp' },\r
+                                               { name: 'Variable', element: 'var' },\r
+                                               { name: 'Deleted Text', element: 'del' },\r
+                                               { name: 'Inserted Text', element: 'ins' },\r
+                                               { name: 'Cited Work', element: 'cite' },\r
+                                               { name: 'Inline Quotation', element: 'q' }\r
+                                       ],\r
+\r
+                                       on: {\r
+                                               pluginsLoaded: configureTransformations,\r
+                                               loaded: configureHtmlWriter\r
+                                       }\r
+                               });\r
+\r
+                               /*\r
+                                * Add missing content transformations.\r
+                                */\r
+                               function configureTransformations( evt ) {\r
+                                       var editor = evt.editor;\r
+\r
+                                       editor.dataProcessor.htmlFilter.addRules( {\r
+                                               attributes: {\r
+                                                       style: function( value, element ) {\r
+                                                               // Return #RGB for background and border colors\r
+                                                               return CKEDITOR.tools.convertRgbToHex( value );\r
+                                                       }\r
+                                               }\r
+                                       } );\r
+\r
+                                       // Default automatic content transformations do not yet take care of\r
+                                       // align attributes on blocks, so we need to add our own transformation rules.\r
+                                       function alignToAttribute( element ) {\r
+                                               if ( element.styles[ 'text-align' ] ) {\r
+                                                       element.attributes.align = element.styles[ 'text-align' ];\r
+                                                       delete element.styles[ 'text-align' ];\r
+                                               }\r
+                                       }\r
+                                       editor.filter.addTransformations( [\r
+                                               [ { element: 'p',       right: alignToAttribute } ],\r
+                                               [ { element: 'h1',      right: alignToAttribute } ],\r
+                                               [ { element: 'h2',      right: alignToAttribute } ],\r
+                                               [ { element: 'h3',      right: alignToAttribute } ],\r
+                                               [ { element: 'pre',     right: alignToAttribute } ]\r
+                                       ] );\r
+                               }\r
+\r
+                               /*\r
+                                * Adjust the behavior of htmlWriter to make it output HTML like FCKeditor.\r
+                                */\r
+                               function configureHtmlWriter( evt ) {\r
+                                       var editor = evt.editor,\r
+                                               dataProcessor = editor.dataProcessor;\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
+                                               dataProcessor.writer.setRules( e, {\r
+                                                       indent: true,\r
+                                                       breakBeforeOpen: true,\r
+                                                       breakAfterOpen: false,\r
+                                                       breakBeforeClose: !dtd[ e ][ '#' ],\r
+                                                       breakAfterClose: true\r
+                                               });\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 the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>\r
+               </p>\r
+               <p id="copy">\r
+                       Copyright &copy; 2003-2016, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
+                       Knabben. All rights reserved.\r
+               </p>\r
+       </div>\r
+</body>\r
+</html>\r