JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6
[ckeditor.git] / _samples / fullpage.html
index 0ff8831..0b0070e 100644 (file)
@@ -5,7 +5,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
 -->\r
 <html xmlns="http://www.w3.org/1999/xhtml">\r
 <head>\r
-       <title>Full Page Editing &mdash; CKEditor Sample</title>\r
+       <title>Full Page Editing with Document Properties Plugin &mdash; CKEditor Sample</title>\r
        <meta content="text/html; charset=utf-8" http-equiv="content-type" />\r
        <script type="text/javascript" src="../ckeditor.js"></script>\r
        <script src="sample.js" type="text/javascript"></script>\r
@@ -13,7 +13,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
 </head>\r
 <body>\r
        <h1 class="samples">\r
-               CKEditor Sample &mdash; Full Page Editing\r
+               CKEditor Sample &mdash; Full Page Editing with Document Properties Plugin\r
        </h1>\r
        <div class="description">\r
        <p>\r
@@ -21,11 +21,17 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                <code>&lt;html&gt;</code> tag to the <code>&lt;/html&gt;</code> tag.\r
        </p>\r
        <p>\r
-               CKEditor is inserted with a JavaScript call using the following code:\r
+               The <strong>Document Properties</strong> (<code>docprops</code>) plugin is also turned on.\r
+               This plugin allows you to set the metadata of the page, including the page encoding, margins,\r
+               meta tags, or background.\r
+       </p>\r
+       <p>\r
+               The CKEditor instance below is inserted with a JavaScript call using the following code:\r
        </p>\r
        <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',\r
        {\r
-               <strong>fullPage : true</strong>\r
+               <strong>fullPage : true,\r
+               extraPlugins : 'docprops'</strong>\r
        });</pre>\r
        <p>\r
                Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of\r
@@ -45,14 +51,15 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
        </div>\r
        <form action="sample_posteddata.php" method="post">\r
                        <label for="editor1">\r
-                               Editor 1:</label>\r
+                               CKEditor using the <code>docprops</code> plugin and working in the Full Page mode:</label>\r
                        <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
                        <script type="text/javascript">\r
                        //<![CDATA[\r
 \r
                                CKEDITOR.replace( 'editor1',\r
                                        {\r
-                                               fullPage : true\r
+                                               fullPage : true,\r
+                                               extraPlugins : 'docprops'\r
                                        });\r
 \r
                        //]]>\r