bgneal@45
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
bgneal@45
|
2 <html xmlns="http://www.w3.org/1999/xhtml">
|
bgneal@45
|
3 <head>
|
bgneal@45
|
4 <title>Word processor example</title>
|
bgneal@45
|
5 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
bgneal@45
|
6 <!-- TinyMCE -->
|
bgneal@45
|
7 <script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
|
bgneal@45
|
8 <script type="text/javascript">
|
bgneal@45
|
9 tinyMCE.init({
|
bgneal@45
|
10 // General options
|
bgneal@45
|
11 mode : "textareas",
|
bgneal@45
|
12 theme : "advanced",
|
bgneal@45
|
13 skin : "o2k7",
|
bgneal@45
|
14 plugins : "autolink,lists,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",
|
bgneal@45
|
15
|
bgneal@45
|
16 // Theme options
|
bgneal@45
|
17 theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
|
bgneal@45
|
18 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",
|
bgneal@45
|
19 theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
|
bgneal@45
|
20 theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
|
bgneal@45
|
21 theme_advanced_toolbar_location : "top",
|
bgneal@45
|
22 theme_advanced_toolbar_align : "left",
|
bgneal@45
|
23 theme_advanced_statusbar_location : "bottom",
|
bgneal@45
|
24 theme_advanced_resizing : true,
|
bgneal@45
|
25
|
bgneal@45
|
26 // Example word content CSS (should be your site CSS) this one removes paragraph margins
|
bgneal@45
|
27 content_css : "css/word.css",
|
bgneal@45
|
28
|
bgneal@45
|
29 // Drop lists for link/image/media/template dialogs
|
bgneal@45
|
30 template_external_list_url : "lists/template_list.js",
|
bgneal@45
|
31 external_link_list_url : "lists/link_list.js",
|
bgneal@45
|
32 external_image_list_url : "lists/image_list.js",
|
bgneal@45
|
33 media_external_list_url : "lists/media_list.js",
|
bgneal@45
|
34
|
bgneal@45
|
35 // Replace values for the template plugin
|
bgneal@45
|
36 template_replace_values : {
|
bgneal@45
|
37 username : "Some User",
|
bgneal@45
|
38 staffid : "991234"
|
bgneal@45
|
39 }
|
bgneal@45
|
40 });
|
bgneal@45
|
41 </script>
|
bgneal@45
|
42 <!-- /TinyMCE -->
|
bgneal@45
|
43
|
bgneal@45
|
44 </head>
|
bgneal@45
|
45 <body>
|
bgneal@45
|
46
|
bgneal@45
|
47 <form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
|
bgneal@45
|
48 <h3>Word processor example</h3>
|
bgneal@45
|
49
|
bgneal@45
|
50 <p>
|
bgneal@45
|
51 This page shows you how to configure TinyMCE to work more like common word processors.
|
bgneal@45
|
52 There are more examples on how to use TinyMCE in the <a href="http://tinymce.moxiecode.com/examples/">Wiki</a>.
|
bgneal@45
|
53 </p>
|
bgneal@45
|
54
|
bgneal@45
|
55 <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->
|
bgneal@45
|
56 <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">
|
bgneal@45
|
57 <p>This is the first paragraph.</p>
|
bgneal@45
|
58 <p>This is the second paragraph.</p>
|
bgneal@45
|
59 <p>This is the third paragraph.</p>
|
bgneal@45
|
60 </textarea>
|
bgneal@45
|
61
|
bgneal@45
|
62 <br />
|
bgneal@45
|
63 <input type="submit" name="save" value="Submit" />
|
bgneal@45
|
64 <input type="reset" name="reset" value="Reset" />
|
bgneal@45
|
65 </form>
|
bgneal@45
|
66 <script type="text/javascript">
|
bgneal@45
|
67 if (document.location.protocol == 'file:') {
|
bgneal@45
|
68 alert("The examples might not work properly on the local file system due to security settings in your browser. Please use a real webserver.");
|
bgneal@45
|
69 }
|
bgneal@45
|
70 </script>
|
bgneal@45
|
71 </body>
|
bgneal@45
|
72 </html>
|