Nation Notes module contributed by Z&H Healthcare.
[openemr.git] / library / custom_template / ckeditor / _samples / output_xhtml.html
blobbccc90d89b63582c6f1d6f35f1e2dd70c44d6164
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <!--
3 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
4 For licensing, see LICENSE.html or http://ckeditor.com/license
5 -->
6 <html xmlns="http://www.w3.org/1999/xhtml">
7 <head>
8 <title>XHTML Compliant Output &mdash; CKEditor Sample</title>
9 <meta content="text/html; charset=utf-8" http-equiv="content-type" />
10 <script type="text/javascript" src="../ckeditor.js"></script>
11 <script src="sample.js" type="text/javascript"></script>
12 <link href="sample.css" rel="stylesheet" type="text/css" />
13 </head>
14 <body>
15 <h1 class="samples">
16 CKEditor Sample &mdash; Producing XHTML Compliant Output
17 </h1>
18 <div class="description">
19 <p>
20 This sample shows how to configure CKEditor to output valid
21 <a class="samples" href="http://www.w3.org/TR/xhtml11/">XHTML 1.1</a> code.
22 Deprecated elements (<code>&lt;font&gt;</code>, <code>&lt;u&gt;</code>) or attributes
23 (<code>size</code>, <code>face</code>) will be replaced with XHTML compliant code.
24 </p>
25 <p>
26 To add a CKEditor instance outputting valid XHTML code, load the editor using a standard
27 JavaScript call and define CKEditor features to use the XHTML compliant elements and styles.
28 </p>
29 <p>
30 A snippet of the configuration code can be seen below; check the source of this page for
31 full definition:
32 </p>
33 <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
35 contentsCss : 'assets/output_xhtml.css',
37 coreStyles_bold : { element : 'span', attributes : {'class': 'Bold'} },
38 coreStyles_italic : { element : 'span', attributes : {'class': 'Italic'} },
40 // More definitions follow.
41 });</pre>
42 </div>
44 <!-- This <div> holds alert messages to be display in the sample page. -->
45 <div id="alerts">
46 <noscript>
47 <p>
48 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
49 support, like yours, you should still see the contents (HTML data) and you should
50 be able to edit it normally, without a rich editor interface.
51 </p>
52 </noscript>
53 </div>
54 <form action="sample_posteddata.php" method="post">
55 <p>
56 <label for="editor1">
57 Editor 1:</label>
58 <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;span class="Bold"&gt;sample text&lt;/span&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
59 <script type="text/javascript">
60 //<![CDATA[
62 CKEDITOR.replace( 'editor1',
65 * Style sheet for the contents
67 contentsCss : 'assets/output_xhtml.css',
70 * Core styles.
72 coreStyles_bold : { element : 'span', attributes : {'class': 'Bold'} },
73 coreStyles_italic : { element : 'span', attributes : {'class': 'Italic'}},
74 coreStyles_underline : { element : 'span', attributes : {'class': 'Underline'}},
75 coreStyles_strike : { element : 'span', attributes : {'class': 'StrikeThrough'}, overrides : 'strike' },
77 coreStyles_subscript : { element : 'span', attributes : {'class': 'Subscript'}, overrides : 'sub' },
78 coreStyles_superscript : { element : 'span', attributes : {'class': 'Superscript'}, overrides : 'sup' },
81 * Font face
83 // List of fonts available in the toolbar combo. Each font definition is
84 // separated by a semi-colon (;). We are using class names here, so each font
85 // is defined by {Combo Label}/{Class Name}.
86 font_names : 'Comic Sans MS/FontComic;Courier New/FontCourier;Times New Roman/FontTimes',
88 // Define the way font elements will be applied to the document. The "span"
89 // element will be used. When a font is selected, the font name defined in the
90 // above list is passed to this definition with the name "Font", being it
91 // injected in the "class" attribute.
92 // We must also instruct the editor to replace span elements that are used to
93 // set the font (Overrides).
94 font_style :
96 element : 'span',
97 attributes : { 'class' : '#(family)' },
98 overrides : [ { element : 'span', attributes : { 'class' : /^Font(?:Comic|Courier|Times)$/ } } ]
102 * Font sizes.
104 fontSize_sizes : 'Smaller/FontSmaller;Larger/FontLarger;8pt/FontSmall;14pt/FontBig;Double Size/FontDouble',
105 fontSize_style :
107 element : 'span',
108 attributes : { 'class' : '#(size)' },
109 overrides : [ { element : 'span', attributes : { 'class' : /^Font(?:Smaller|Larger|Small|Big|Double)$/ } } ]
113 * Font colors.
115 colorButton_enableMore : false,
117 colorButton_colors : 'FontColor1/FF9900,FontColor2/0066CC,FontColor3/F00',
118 colorButton_foreStyle :
120 element : 'span',
121 attributes : { 'class' : '#(color)' },
122 overrides : [ { element : 'span', attributes : { 'class' : /^FontColor(?:1|2|3)$/ } } ]
125 colorButton_backStyle :
127 element : 'span',
128 attributes : { 'class' : '#(color)BG' },
129 overrides : [ { element : 'span', attributes : { 'class' : /^FontColor(?:1|2|3)BG$/ } } ]
133 * Indentation.
135 indentClasses : ['Indent1', 'Indent2', 'Indent3'],
138 * Paragraph justification.
140 justifyClasses : [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyFull' ],
143 * Styles combo.
145 stylesSet :
147 { name : 'Strong Emphasis', element : 'strong' },
148 { name : 'Emphasis', element : 'em' },
150 { name : 'Computer Code', element : 'code' },
151 { name : 'Keyboard Phrase', element : 'kbd' },
152 { name : 'Sample Text', element : 'samp' },
153 { name : 'Variable', element : 'var' },
155 { name : 'Deleted Text', element : 'del' },
156 { name : 'Inserted Text', element : 'ins' },
158 { name : 'Cited Work', element : 'cite' },
159 { name : 'Inline Quotation', element : 'q' }
163 //]]>
164 </script>
165 </p>
167 <input type="submit" value="Submit" />
168 </p>
169 </form>
170 <div id="footer">
171 <hr />
173 CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
174 </p>
175 <p id="copy">
176 Copyright &copy; 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
177 Knabben. All rights reserved.
178 </p>
179 </div>
180 </body>
181 </html>