diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2016-01-25 17:45:33 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2016-01-25 18:00:33 +0100 |
commit | 7adcb81e4f83f98c468889aaa5a85558ba88c770 (patch) | |
tree | 0d6ede733777b29060b48df4afaa2c64bfbae276 /sources/samples/old/index.html | |
download | connexionswing-ckeditor-component-7adcb81e4f83f98c468889aaa5a85558ba88c770.tar.gz connexionswing-ckeditor-component-7adcb81e4f83f98c468889aaa5a85558ba88c770.tar.zst connexionswing-ckeditor-component-7adcb81e4f83f98c468889aaa5a85558ba88c770.zip |
Initial commit4.5.6
Diffstat (limited to 'sources/samples/old/index.html')
-rw-r--r-- | sources/samples/old/index.html | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/sources/samples/old/index.html b/sources/samples/old/index.html new file mode 100644 index 00000000..07853c17 --- /dev/null +++ b/sources/samples/old/index.html | |||
@@ -0,0 +1,111 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- | ||
3 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. | ||
4 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
5 | --> | ||
6 | <html> | ||
7 | <head> | ||
8 | <meta charset="utf-8"> | ||
9 | <title>CKEditor Samples</title> | ||
10 | <link rel="stylesheet" href="sample.css"> | ||
11 | </head> | ||
12 | <body> | ||
13 | <h1 class="samples"> | ||
14 | CKEditor Samples | ||
15 | </h1> | ||
16 | <div class="warning deprecated"> | ||
17 | These samples are not maintained anymore. Check out the <a href="http://sdk.ckeditor.com/">brand new samples in CKEditor SDK</a>. | ||
18 | </div> | ||
19 | <div class="twoColumns"> | ||
20 | <div class="twoColumnsLeft"> | ||
21 | <h2 class="samples"> | ||
22 | Basic Samples | ||
23 | </h2> | ||
24 | <dl class="samples"> | ||
25 | <dt><a class="samples" href="replacebyclass.html">Replace textarea elements by class name</a></dt> | ||
26 | <dd>Automatic replacement of all textarea elements of a given class with a CKEditor instance.</dd> | ||
27 | |||
28 | <dt><a class="samples" href="replacebycode.html">Replace textarea elements by code</a></dt> | ||
29 | <dd>Replacement of textarea elements with CKEditor instances by using a JavaScript call.</dd> | ||
30 | |||
31 | <dt><a class="samples" href="jquery.html">Create editors with jQuery</a></dt> | ||
32 | <dd>Creating standard and inline CKEditor instances with jQuery adapter.</dd> | ||
33 | </dl> | ||
34 | |||
35 | <h2 class="samples"> | ||
36 | Basic Customization | ||
37 | </h2> | ||
38 | <dl class="samples"> | ||
39 | <dt><a class="samples" href="uicolor.html">User Interface color</a></dt> | ||
40 | <dd>Changing CKEditor User Interface color and adding a toolbar button that lets the user set the UI color.</dd> | ||
41 | |||
42 | <dt><a class="samples" href="uilanguages.html">User Interface languages</a></dt> | ||
43 | <dd>Changing CKEditor User Interface language and adding a drop-down list that lets the user choose the UI language.</dd> | ||
44 | </dl> | ||
45 | |||
46 | |||
47 | |||
48 | <!-- PLUGINS_SAMPLES --> | ||
49 | </div> | ||
50 | <div class="twoColumnsRight"> | ||
51 | <h2 class="samples"> | ||
52 | Inline Editing | ||
53 | </h2> | ||
54 | <dl class="samples"> | ||
55 | <dt><a class="samples" href="inlineall.html">Massive inline editor creation</a></dt> | ||
56 | <dd>Turn all elements with <code>contentEditable = true</code> attribute into inline editors.</dd> | ||
57 | |||
58 | <dt><a class="samples" href="inlinebycode.html">Convert element into an inline editor by code</a></dt> | ||
59 | <dd>Conversion of DOM elements into inline CKEditor instances by using a JavaScript call.</dd> | ||
60 | |||
61 | <dt><a class="samples" href="inlinetextarea.html">Replace textarea with inline editor</a> <span class="new">New!</span></dt> | ||
62 | <dd>A form with a textarea that is replaced by an inline editor at runtime.</dd> | ||
63 | |||
64 | <!-- INLINE_EDITING_SAMPLES --> | ||
65 | </dl> | ||
66 | |||
67 | <h2 class="samples"> | ||
68 | Advanced Samples | ||
69 | </h2> | ||
70 | <dl class="samples"> | ||
71 | <dt><a class="samples" href="datafiltering.html">Data filtering and features activation</a> <span class="new">New!</span></dt> | ||
72 | <dd>Data filtering and automatic features activation basing on configuration.</dd> | ||
73 | |||
74 | <dt><a class="samples" href="divreplace.html">Replace DIV elements on the fly</a></dt> | ||
75 | <dd>Transforming a <code>div</code> element into an instance of CKEditor with a mouse click.</dd> | ||
76 | |||
77 | <dt><a class="samples" href="appendto.html">Append editor instances</a></dt> | ||
78 | <dd>Appending editor instances to existing DOM elements.</dd> | ||
79 | |||
80 | <dt><a class="samples" href="ajax.html">Create and destroy editor instances for Ajax applications</a></dt> | ||
81 | <dd>Creating and destroying CKEditor instances on the fly and saving the contents entered into the editor window.</dd> | ||
82 | |||
83 | <dt><a class="samples" href="api.html">Basic usage of the API</a></dt> | ||
84 | <dd>Using the CKEditor JavaScript API to interact with the editor at runtime.</dd> | ||
85 | |||
86 | <dt><a class="samples" href="xhtmlstyle.html">XHTML-compliant style</a></dt> | ||
87 | <dd>Configuring CKEditor to produce XHTML 1.1 compliant attributes and styles.</dd> | ||
88 | |||
89 | <dt><a class="samples" href="readonly.html">Read-only mode</a></dt> | ||
90 | <dd>Using the readOnly API to block introducing changes to the editor contents.</dd> | ||
91 | |||
92 | <dt><a class="samples" href="tabindex.html">"Tab" key-based navigation</a></dt> | ||
93 | <dd>Navigating among editor instances with tab key.</dd> | ||
94 | |||
95 | |||
96 | |||
97 | <!-- ADVANCED_SAMPLES --> | ||
98 | </dl> | ||
99 | </div> | ||
100 | </div> | ||
101 | <div id="footer"> | ||
102 | <hr> | ||
103 | <p> | ||
104 | CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a> | ||
105 | </p> | ||
106 | <p id="copy"> | ||
107 | Copyright © 2003-2015, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved. | ||
108 | </p> | ||
109 | </div> | ||
110 | </body> | ||
111 | </html> | ||