JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
497e625014429e8bf460f56c5fd80bb462efadee
[ckeditor.git] / _samples / ui_color.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
2 <!--\r
3 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.\r
4 For licensing, see LICENSE.html or http://ckeditor.com/license\r
5 -->\r
6 <html xmlns="http://www.w3.org/1999/xhtml">\r
7 <head>\r
8         <title>Sample - CKEditor</title>\r
9         <meta content="text/html; charset=utf-8" http-equiv="content-type"/>\r
10         <script type="text/javascript" src="../ckeditor.js"></script>\r
11         <script src="sample.js" type="text/javascript"></script>\r
12         <link href="sample.css" rel="stylesheet" type="text/css"/>\r
13 </head>\r
14 <body>\r
15         <h1>\r
16                 CKEditor Sample\r
17         </h1>\r
18         <!-- This <div> holds alert messages to be display in the sample page. -->\r
19         <div id="alerts">\r
20                 <noscript>\r
21                         <p>\r
22                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
23                                 support, like yours, you should still see the contents (HTML data) and you should\r
24                                 be able to edit it normally, without a rich editor interface.\r
25                         </p>\r
26                 </noscript>\r
27         </div>\r
28         <!-- This <fieldset> holds the HTML that you will usually find in your\r
29              pages. -->\r
30         <p>Click the UI Color Picker button to test your color preferences at runtime.</p>\r
31                 <form action="sample_posteddata.php" method="post">\r
32                         <p>\r
33                                 <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;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;.&lt;/p&gt;</textarea>\r
34                                 <script type="text/javascript">\r
35                                 //<![CDATA[\r
36 \r
37                                         // Replace the <textarea id="editor"> with an CKEditor\r
38                                         // instance, using default configurations.\r
39                                         CKEDITOR.replace( 'editor1',\r
40                                                 {\r
41                                                         extraPlugins : 'uicolor',\r
42                                                         toolbar :\r
43                                                         [\r
44                                                                 [ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],\r
45                                                                 [ 'UIColor' ]\r
46                                                         ]\r
47                                                 });\r
48 \r
49                                 //]]>\r
50                                 </script>\r
51                         </p>\r
52                         <p>\r
53                                 <textarea cols="80" id="editor2" name="editor2" rows="10">&lt;p&gt;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;.&lt;/p&gt;</textarea>\r
54                                 <script type="text/javascript">\r
55                                 //<![CDATA[\r
56 \r
57                                         // Replace the <textarea id="editor"> with an CKEditor\r
58                                         // instance, using default configurations.\r
59                                         CKEDITOR.replace( 'editor2',\r
60                                                 {\r
61                                                         extraPlugins : 'uicolor',\r
62                                                         uiColor: '#14B8C4',\r
63                                                         toolbar :\r
64                                                         [\r
65                                                                 [ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],\r
66                                                                 [ 'UIColor' ]\r
67                                                         ]\r
68                                                 } );\r
69 \r
70                                 //]]>\r
71                                 </script>\r
72                         </p>\r
73                         <p>\r
74                                 <input type="submit" value="Submit"/>\r
75                         </p>\r
76                 </form>\r
77         <div id="footer">\r
78                 <hr/>\r
79                 <p>\r
80                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/" shape="rect">http://ckeditor.com</a>\r
81                 </p>\r
82                 <p id="copy">\r
83                         Copyright © 2003-2009, <a href="http://cksource.com/" shape="rect">CKSource</a> - Frederico Knabben. All rights reserved.\r
84                 </p>\r
85         </div>\r
86 </body>\r
87 </html>\r