]> git.mxchange.org Git - friendica.git/blob - library/tinymce/examples/word.html
Merge remote-tracking branch 'friendika/master' into newacl
[friendica.git] / library / tinymce / examples / word.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\r
2 <html xmlns="http://www.w3.org/1999/xhtml">\r
3 <head>\r
4 <title>Word processor example</title>\r
5 \r
6 <!-- TinyMCE -->\r
7 <script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>\r
8 <script type="text/javascript">\r
9         tinyMCE.init({\r
10                 // General options\r
11                 mode : "textareas",\r
12                 theme : "advanced",\r
13                 plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,inlinepopups,autosave",\r
14 \r
15                 // Theme options\r
16                 theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",\r
17                 theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",\r
18                 theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",\r
19                 theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",\r
20                 theme_advanced_toolbar_location : "top",\r
21                 theme_advanced_toolbar_align : "left",\r
22                 theme_advanced_statusbar_location : "bottom",\r
23                 theme_advanced_resizing : true,\r
24 \r
25                 // Example word content CSS (should be your site CSS) this one removes paragraph margins\r
26                 content_css : "css/word.css",\r
27 \r
28                 // Drop lists for link/image/media/template dialogs\r
29                 template_external_list_url : "lists/template_list.js",\r
30                 external_link_list_url : "lists/link_list.js",\r
31                 external_image_list_url : "lists/image_list.js",\r
32                 media_external_list_url : "lists/media_list.js",\r
33 \r
34                 // Replace values for the template plugin\r
35                 template_replace_values : {\r
36                         username : "Some User",\r
37                         staffid : "991234"\r
38                 }\r
39         });\r
40 </script>\r
41 <!-- /TinyMCE -->\r
42 \r
43 </head>\r
44 <body>\r
45 \r
46 <form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">\r
47         <h3>Word processor example</h3>\r
48 \r
49         <p>\r
50                 This page shows you how to configure TinyMCE to work more like common word processors.\r
51                 There are more examples on how to use TinyMCE in the <a href="http://tinymce.moxiecode.com/examples/">Wiki</a>.\r
52         </p>\r
53 \r
54         <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->\r
55         <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">\r
56                 &lt;p&gt;This is the first paragraph.&lt;/p&gt;\r
57                 &lt;p&gt;This is the second paragraph.&lt;/p&gt;\r
58                 &lt;p&gt;This is the third paragraph.&lt;/p&gt;\r
59         </textarea>\r
60 \r
61         <br />\r
62         <input type="submit" name="save" value="Submit" />\r
63         <input type="reset" name="reset" value="Reset" />\r
64 </form>\r
65 \r
66 </body>\r
67 </html>\r