Importation du code de ckeditor 4.3.4 en conservant les développements Plinn et en...
[ckeditor.git] / skins / ckeditor / _samples / enterkey.html
diff --git a/skins/ckeditor/_samples/enterkey.html b/skins/ckeditor/_samples/enterkey.html
deleted file mode 100644 (file)
index e6e6c8f..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-<!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-2011, 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>ENTER Key Configuration &mdash; 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
-       <script type="text/javascript">\r
-       //<![CDATA[\r
-\r
-var editor;\r
-\r
-function changeEnter()\r
-{\r
-       // If we already have an editor, let's destroy it first.\r
-       if ( editor )\r
-               editor.destroy( true );\r
-\r
-       // Create the editor again, with the appropriate settings.\r
-       editor = CKEDITOR.replace( 'editor1',\r
-               {\r
-                       enterMode               : Number( document.getElementById( 'xEnter' ).value ),\r
-                       shiftEnterMode  : Number( document.getElementById( 'xShiftEnter' ).value )\r
-               });\r
-}\r
-\r
-window.onload = changeEnter;\r
-\r
-       //]]>\r
-       </script>\r
-</head>\r
-<body>\r
-       <h1 class="samples">\r
-               CKEditor Sample &mdash; ENTER Key Configuration\r
-       </h1>\r
-       <div class="description">\r
-       <p>\r
-               This sample shows how to configure the <em>Enter</em> and <em>Shift+Enter</em> keys\r
-               to perform actions specified in the\r
-               <a class="samples" href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.enterMode"><code>enterMode</code></a>\r
-               and <a class="samples" href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.shiftEnterMode"><code>shiftEnterMode</code></a>\r
-               parameters, respectively.\r
-               You can choose from the following options:\r
-       </p>\r
-       <ul class="samples">\r
-               <li><strong><code>ENTER_P</code></strong> &ndash; new <code>&lt;p&gt;</code> paragraphs are created;</li>\r
-               <li><strong><code>ENTER_BR</code></strong> &ndash; lines are broken with <code>&lt;br&gt;</code> elements;</li>\r
-               <li><strong><code>ENTER_DIV</code></strong> &ndash; new <code>&lt;div&gt;</code> blocks are created.</li>\r
-       </ul>\r
-       <p>\r
-               The sample code below shows how to configure CKEditor to create a <code>&lt;div&gt;</code> block when <em>Enter</em> key is pressed.\r
-       </p>\r
-       <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',\r
-       {\r
-               <strong>enterMode : CKEDITOR.ENTER_DIV</strong>\r
-       });</pre>\r
-       <p>\r
-               Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of\r
-               the <code>&lt;textarea&gt;</code> element to be replaced.\r
-       </p>\r
-       </div>\r
-\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
-       <div style="float: left; margin-right: 20px">\r
-               When <em>Enter</em> is pressed:<br />\r
-               <select id="xEnter" onchange="changeEnter();">\r
-                       <option selected="selected" value="1">Create a new &lt;P&gt; (recommended)</option>\r
-                       <option value="3">Create a new &lt;DIV&gt;</option>\r
-                       <option value="2">Break the line with a &lt;BR&gt;</option>\r
-               </select>\r
-       </div>\r
-       <div style="float: left">\r
-               When <em>Shift+Enter</em> is pressed:<br />\r
-               <select id="xShiftEnter" onchange="changeEnter();">\r
-                       <option value="1">Create a new &lt;P&gt;</option>\r
-                       <option value="3">Create a new &lt;DIV&gt;</option>\r
-                       <option selected="selected" value="2">Break the line with a &lt;BR&gt; (recommended)</option>\r
-               </select>\r
-       </div>\r
-       <br style="clear: both" />\r
-       <form action="sample_posteddata.php" method="post">\r
-               <p>\r
-                       <br />\r
-                       <textarea cols="80" id="editor1" name="editor1" rows="10">This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.</textarea>\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-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
-                       Knabben. All rights reserved.\r
-               </p>\r
-       </div>\r
-</body>\r
-</html>\r