JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.5.1
[ckeditor.git] / _samples / fullpage.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-2011, 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>Full Page Editing &mdash; CKEditor Sample</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 class="samples">\r
16                 CKEditor Sample &mdash; Full Page Editing\r
17         </h1>\r
18         <div class="description">\r
19         <p>\r
20                 This sample shows how to configure CKEditor to edit entire HTML pages, from the\r
21                 <code>&lt;html&gt;</code> tag to the <code>&lt;/html&gt;</code> tag.\r
22         </p>\r
23         <p>\r
24                 CKEditor is inserted with a JavaScript call using the following code:\r
25         </p>\r
26         <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',\r
27         {\r
28                 <strong>fullPage : true</strong>\r
29         });</pre>\r
30         <p>\r
31                 Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of\r
32                 the <code>&lt;textarea&gt;</code> element to be replaced.\r
33         </p>\r
34         </div>\r
35 \r
36         <!-- This <div> holds alert messages to be display in the sample page. -->\r
37         <div id="alerts">\r
38                 <noscript>\r
39                         <p>\r
40                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
41                                 support, like yours, you should still see the contents (HTML data) and you should\r
42                                 be able to edit it normally, without a rich editor interface.\r
43                         </p>\r
44                 </noscript>\r
45         </div>\r
46         <form action="sample_posteddata.php" method="post">\r
47                         <label for="editor1">\r
48                                 Editor 1:</label>\r
49                         <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;html&gt;&lt;head&gt;&lt;title&gt;CKEditor Sample&lt;/title&gt;&lt;/head&gt;&lt;body&gt;&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;&lt;/body&gt;&lt;/html&gt;</textarea>\r
50                         <script type="text/javascript">\r
51                         //<![CDATA[\r
52 \r
53                                 CKEDITOR.replace( 'editor1',\r
54                                         {\r
55                                                 fullPage : true\r
56                                         });\r
57 \r
58                         //]]>\r
59                         </script>\r
60                 <p>\r
61                         <input type="submit" value="Submit" />\r
62                 </p>\r
63         </form>\r
64         <div id="footer">\r
65                 <hr />\r
66                 <p>\r
67                         CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>\r
68                 </p>\r
69                 <p id="copy">\r
70                         Copyright &copy; 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
71                         Knabben. All rights reserved.\r
72                 </p>\r
73         </div>\r
74 </body>\r
75 </html>\r