danielebarchiesi@0
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
danielebarchiesi@0
|
2 <!--
|
danielebarchiesi@0
|
3 Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
danielebarchiesi@0
|
4 For licensing, see LICENSE.html or http://ckeditor.com/license
|
danielebarchiesi@0
|
5 -->
|
danielebarchiesi@0
|
6 <html xmlns="http://www.w3.org/1999/xhtml">
|
danielebarchiesi@0
|
7 <head>
|
danielebarchiesi@0
|
8 <title>Using DevTools Plugin — CKEditor Sample</title>
|
danielebarchiesi@0
|
9 <meta content="text/html; charset=utf-8" http-equiv="content-type" />
|
danielebarchiesi@0
|
10 <script type="text/javascript" src="../ckeditor.js"></script>
|
danielebarchiesi@0
|
11 <script src="sample.js" type="text/javascript"></script>
|
danielebarchiesi@0
|
12 <link href="sample.css" rel="stylesheet" type="text/css" />
|
danielebarchiesi@0
|
13 </head>
|
danielebarchiesi@0
|
14 <body>
|
danielebarchiesi@0
|
15 <h1 class="samples">
|
danielebarchiesi@0
|
16 CKEditor Sample — Using the Developer Tools Plugin
|
danielebarchiesi@0
|
17 </h1>
|
danielebarchiesi@0
|
18 <div class="description">
|
danielebarchiesi@0
|
19 <p>
|
danielebarchiesi@0
|
20 This sample shows how to configure CKEditor instances to use the
|
danielebarchiesi@0
|
21 <strong>Developer Tools</strong> (<code>devtools</code>) plugin that displays
|
danielebarchiesi@0
|
22 information about dialog window elements, including the name of the dialog window,
|
danielebarchiesi@0
|
23 tab, and UI element. Please note that the tooltip also contains a link to the
|
danielebarchiesi@0
|
24 <a href="http://docs.cksource.com/ckeditor_api/">CKEditor JavaScript API</a>
|
danielebarchiesi@0
|
25 documentation for each of the selected elements.
|
danielebarchiesi@0
|
26 </p>
|
danielebarchiesi@0
|
27 <p>
|
danielebarchiesi@0
|
28 This plugin is aimed at developers who would like to customize their CKEditor
|
danielebarchiesi@0
|
29 instances and create their own plugins. By default it is turned off; it is
|
danielebarchiesi@0
|
30 usually useful to only turn it on in the development phase. Note that it works with
|
danielebarchiesi@0
|
31 all CKEditor dialog windows, including the ones that were created by custom plugins.
|
danielebarchiesi@0
|
32 </p>
|
danielebarchiesi@0
|
33 <p>
|
danielebarchiesi@0
|
34 To add a CKEditor instance using the <strong>devtools</strong> plugin, insert
|
danielebarchiesi@0
|
35 the following JavaScript call into your code:
|
danielebarchiesi@0
|
36 </p>
|
danielebarchiesi@0
|
37 <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
|
danielebarchiesi@0
|
38 {
|
danielebarchiesi@0
|
39 <strong>extraPlugins : 'devtools'</strong>
|
danielebarchiesi@0
|
40 });</pre>
|
danielebarchiesi@0
|
41 <p>
|
danielebarchiesi@0
|
42 Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
|
danielebarchiesi@0
|
43 the <code><textarea></code> element to be replaced with CKEditor.
|
danielebarchiesi@0
|
44 </p>
|
danielebarchiesi@0
|
45 </div>
|
danielebarchiesi@0
|
46
|
danielebarchiesi@0
|
47 <!-- This <div> holds alert messages to be display in the sample page. -->
|
danielebarchiesi@0
|
48 <div id="alerts">
|
danielebarchiesi@0
|
49 <noscript>
|
danielebarchiesi@0
|
50 <p>
|
danielebarchiesi@0
|
51 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
|
danielebarchiesi@0
|
52 support, like yours, you should still see the contents (HTML data) and you should
|
danielebarchiesi@0
|
53 be able to edit it normally, without a rich editor interface.
|
danielebarchiesi@0
|
54 </p>
|
danielebarchiesi@0
|
55 </noscript>
|
danielebarchiesi@0
|
56 </div>
|
danielebarchiesi@0
|
57 <form action="sample_posteddata.php" method="post">
|
danielebarchiesi@0
|
58 <p>
|
danielebarchiesi@0
|
59 <label for="editor1">
|
danielebarchiesi@0
|
60 Editor 1:</label>
|
danielebarchiesi@0
|
61 <textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
|
danielebarchiesi@0
|
62 <script type="text/javascript">
|
danielebarchiesi@0
|
63 //<![CDATA[
|
danielebarchiesi@0
|
64
|
danielebarchiesi@0
|
65 // This call can be placed at any point after the
|
danielebarchiesi@0
|
66 // <textarea>, or inside a <head><script> in a
|
danielebarchiesi@0
|
67 // window.onload event handler.
|
danielebarchiesi@0
|
68
|
danielebarchiesi@0
|
69 // Replace the <textarea id="editor"> with an CKEditor
|
danielebarchiesi@0
|
70 // instance, using default configurations.
|
danielebarchiesi@0
|
71 CKEDITOR.replace( 'editor1' ,
|
danielebarchiesi@0
|
72 {
|
danielebarchiesi@0
|
73 extraPlugins : 'devtools'
|
danielebarchiesi@0
|
74 });
|
danielebarchiesi@0
|
75
|
danielebarchiesi@0
|
76 //]]>
|
danielebarchiesi@0
|
77 </script>
|
danielebarchiesi@0
|
78 </p>
|
danielebarchiesi@0
|
79 <p>
|
danielebarchiesi@0
|
80 <input type="submit" value="Submit" />
|
danielebarchiesi@0
|
81 </p>
|
danielebarchiesi@0
|
82 </form>
|
danielebarchiesi@0
|
83 <div id="footer">
|
danielebarchiesi@0
|
84 <hr />
|
danielebarchiesi@0
|
85 <p>
|
danielebarchiesi@0
|
86 CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
|
danielebarchiesi@0
|
87 </p>
|
danielebarchiesi@0
|
88 <p id="copy">
|
danielebarchiesi@0
|
89 Copyright © 2003-2013, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
|
danielebarchiesi@0
|
90 Knabben. All rights reserved.
|
danielebarchiesi@0
|
91 </p>
|
danielebarchiesi@0
|
92 </div>
|
danielebarchiesi@0
|
93 </body>
|
danielebarchiesi@0
|
94 </html>
|