Ticket #7240: index.html

File index.html, 4.6 KB (added by Anna Tomanek, 13 years ago)

index.html file for the _samples folder

Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<!--
3Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
4For licensing, see LICENSE.html or http://ckeditor.com/license
5-->
6<html xmlns="http://www.w3.org/1999/xhtml">
7<head>
8        <title>CKEditor Samples</title>
9        <meta content="text/html; charset=utf-8" http-equiv="content-type" />
10        <link type="text/css" rel="stylesheet" href="sample.css" />
11</head>
12<body>
13        <h1 class="samples">
14                CKEditor Samples Site
15        </h1>
16        <h2 class="samples">
17                Basic Samples
18        </h2>
19        <ul class="samples">
20                <li>
21                        <a class="samples" href="replacebyclass.html">Replace textarea elements by class name</a><br />
22                        Automatic replacement of all textarea elements of a given class with a CKEditor instance.
23                </li>
24                <li><a class="samples" href="replacebycode.html">Replace textarea elements by code</a><br />
25                        Replacement of textarea elements with CKEditor instances by using a JavaScript call.
26                </li>
27                <li><a class="samples" href="fullpage.html">Full page support</a><br />
28                        CKEditor inserted with a JavaScript call and used to edit the whole page from <code>&lt;html&gt;</code> to <code>&lt;/html&gt;</code>.
29                </li>
30        </ul>
31        <h2 class="samples">
32                Basic Customization
33        </h2>
34        <ul class="samples">
35                <li><a class="samples" href="skins.html">Skins</a><br />
36                        Changing the CKEditor skin by adjusting a single configuration option.
37                </li>
38                <li><a class="samples" href="ui_color.html">User Interface color</a><br />
39                        Changing CKEditor User Interface color and adding a toolbar button that lets the user set the UI color.
40                </li>
41                <li><a class="samples" href="ui_languages.html">User Interface languages</a><br />
42                        Changing CKEditor User Interface language and adding a drop-down list that lets the user choose the UI language.
43                </li>
44                <li><a class="samples" href="autogrow.html">AutoGrow plugin</a><br />
45                        Using the AutoGrow plugin in order to make the editor grow to fit the size of its content.
46                </li>
47        </ul>
48        <h2 class="samples">
49                Advanced Samples
50        </h2>
51        <ul class="samples">
52                <li><a class="samples" href="divreplace.html">Replace DIV elements on the fly</a><br />
53                        Transforming a <code>div</code> element into an instance of CKEditor with a mouse click.
54                </li>
55                <li><a class="samples" href="ajax.html">Create and destroy editor instances for Ajax applications</a><br />
56                        Creating and destroying CKEditor instances on the fly and saving the contents entered into the editor window.
57                </li>
58                <li><a class="samples" href="api.html">Basic usage of the API</a><br />
59                        Using the CKEditor JavaScript API to interact with the editor at runtime.
60                </li>
61                <li><a class="samples" href="api_dialog.html">Using the JavaScript API to customize dialog windows</a><br />
62                        Using the dialog windows API to customize dialog windows without changing the original editor code.
63                </li>
64                <li><a class="samples" href="enterkey.html">Using the "Enter" key in CKEditor</a><br />
65                         Configuring the behavior of <em>Enter</em> and <em>Shift+Enter</em> keys.
66                </li>
67                <li><a class="samples" href="sharedspaces.html">Shared toolbars</a><br />
68                        Displaying multiple editor instances that share the toolbar and/or the elements path.
69                </li>
70                <li><a class="samples" href="jqueryadapter.html">jQuery adapter example</a><br />
71                        Using the jQuery adapter to configure CKEditor.
72                </li>
73                <li><a class="samples" href="output_xhtml.html">Output XHTML</a><br />
74                        Configuring CKEditor to produce XHTML 1.1 compliant code.
75                </li>
76                <li><a class="samples" href="output_html.html">Output HTML</a><br />
77                        Configuring CKEditor to produce legacy HTML 4 code.
78                </li>
79                <li><a class="samples" href="output_for_flash.html">Output for Flash</a><br />
80                        Configuring CKEditor to produce HTML code that can be used with Adobe Flash.
81                </li>
82                <li><a class="samples" href="placeholder.html">Placeholder plugin</a><br />
83                        Using the Placeholder plugin to create uneditable sections that can only be created and modified with a proper dialog window.
84                </li>
85                <li><a class="samples" href="devtools.html">Developer Tools plugin</a><br />
86                        Using the Developer Tools plugin to display information about dialog window UI elements to allow for easier customization.
87                </li>
88        </ul>
89        <div id="footer">
90                <hr />
91                <p>
92                        CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
93                </p>
94                <p id="copy">
95                        Copyright &copy; 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
96                </p>
97        </div>
98</body>
99</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy