Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / js / ckeditor / samples / old / sourcedialog / sourcedialog.html
diff --git a/js/ckeditor/samples/old/sourcedialog/sourcedialog.html b/js/ckeditor/samples/old/sourcedialog/sourcedialog.html
new file mode 100644 (file)
index 0000000..9232b0e
--- /dev/null
@@ -0,0 +1,121 @@
+<!DOCTYPE html>\r
+<!--\r
+Copyright (c) 2003-2017, 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>Editing source code in a dialog &mdash; CKEditor Sample</title>\r
+       <script src="../../../ckeditor.js"></script>\r
+       <link rel="stylesheet" href="../../../samples/old/sample.css">\r
+       <meta name="ckeditor-sample-name" content="Editing source code in a dialog">\r
+       <meta name="ckeditor-sample-group" content="Plugins">\r
+       <meta name="ckeditor-sample-description" content="Editing HTML content of both inline and classic editor instances.">\r
+       <meta name="ckeditor-sample-isnew" content="1">\r
+       <style>\r
+\r
+               #editable\r
+               {\r
+                       padding: 10px;\r
+                       float: left;\r
+               }\r
+\r
+       </style>\r
+</head>\r
+<body>\r
+       <h1 class="samples">\r
+               <a href="../../../samples/old/index.html">CKEditor Samples</a> &raquo; Editing source code in a dialog\r
+       </h1>\r
+       <div class="warning deprecated">\r
+               This sample is not maintained anymore. Check out its <a href="http://sdk.ckeditor.com/samples/sourcearea.html">brand new version in CKEditor SDK</a>.\r
+       </div>\r
+       <div class="description">\r
+               <p>\r
+                       <strong>Sourcedialog</strong> plugin provides an easy way to edit raw HTML content\r
+                       of an editor, similarly to what is possible with <strong>Sourcearea</strong>\r
+                       plugin for classic (<code>iframe</code>-based) instances but using dialogs. Thanks to that, it's also possible\r
+                       to manipulate raw content of inline editor instances.\r
+               </p>\r
+               <p>\r
+                       This plugin extends the toolbar with a button,\r
+                       which opens a dialog window with a source code editor. It works with both classic\r
+                       and inline instances. To enable this\r
+                       plugin, basically add <code>extraPlugins: 'sourcedialog'</code> to editor's\r
+                       config:\r
+               </p>\r
+<pre class="samples">\r
+// Inline editor.\r
+CKEDITOR.inline( 'editable', {\r
+       <strong>extraPlugins: 'sourcedialog'</strong>\r
+});\r
+\r
+// Classic (iframe-based) editor.\r
+CKEDITOR.replace( 'textarea_id', {\r
+       <strong>extraPlugins: 'sourcedialog'</strong>,\r
+       removePlugins: 'sourcearea'\r
+});\r
+</pre>\r
+               <p>\r
+                       Note that you may want to include <code>removePlugins: 'sourcearea'</code>\r
+                       in your config when using <strong>Sourcedialog</strong> in classic editor instances.\r
+                       This prevents feature redundancy.\r
+               </p>\r
+               <p>\r
+                       Note that <code>editable</code> in the code above is the <code>id</code>\r
+                       attribute of the <code>&lt;div&gt;</code> element to be converted into an inline instance.\r
+               </p>\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 with CKEditor.\r
+               </p>\r
+       </div>\r
+       <div>\r
+               <label for="editor1">\r
+                       Inline editor:\r
+               </label>\r
+               <div id="editor1" contenteditable="true" style="padding: 5px 20px;">\r
+                       <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>\r
+               </div>\r
+       </div>\r
+       <br>\r
+       <div>\r
+               <label for="editor2">\r
+                       Classic editor:\r
+               </label>\r
+               <textarea cols="80" id="editor2" name="editor2" rows="10">\r
+                       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;.\r
+               </textarea>\r
+       </div>\r
+       <script>\r
+\r
+               // We need to turn off the automatic editor creation first.\r
+               CKEDITOR.disableAutoInline = true;\r
+\r
+               var config = {\r
+                       toolbarGroups: [\r
+                               { name: 'mode' },\r
+                               { name: 'basicstyles' },\r
+                               { name: 'links' }\r
+                       ],\r
+                       extraPlugins: 'sourcedialog',\r
+                       removePlugins: 'sourcearea'\r
+               }\r
+\r
+               CKEDITOR.inline( 'editor1', config );\r
+               CKEDITOR.replace( 'editor2', config );\r
+\r
+       </script>\r
+       <div id="footer">\r
+               <hr>\r
+               <p>\r
+                       CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">\r
+                               http://ckeditor.com</a>\r
+               </p>\r
+               <p id="copy">\r
+                       Copyright &copy; 2003-2017, <a class="samples" href="http://cksource.com/">CKSource</a>\r
+                       - Frederico Knabben. All rights reserved.\r
+               </p>\r
+       </div>\r
+</body>\r
+</html>\r