annotate static/js/tinymce/examples/custom_formats.html @ 205:b4566292bbfe tip

Update t-shirt inventory
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Nov 2022 17:42:25 -0600
parents 966cde8635c0
children
rev   line source
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>Custom formats example</title>
bgneal@45 5
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 plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave",
bgneal@45 14
bgneal@45 15 // Theme options
bgneal@45 16 theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
bgneal@45 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",
bgneal@45 18 theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
bgneal@45 19 theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
bgneal@45 20 theme_advanced_toolbar_location : "top",
bgneal@45 21 theme_advanced_toolbar_align : "left",
bgneal@45 22 theme_advanced_statusbar_location : "bottom",
bgneal@45 23 theme_advanced_resizing : true,
bgneal@45 24
bgneal@45 25 // Example content CSS (should be your site CSS)
bgneal@45 26 content_css : "css/content.css",
bgneal@45 27
bgneal@45 28 // Drop lists for link/image/media/template dialogs
bgneal@45 29 template_external_list_url : "lists/template_list.js",
bgneal@45 30 external_link_list_url : "lists/link_list.js",
bgneal@45 31 external_image_list_url : "lists/image_list.js",
bgneal@45 32 media_external_list_url : "lists/media_list.js",
bgneal@45 33
bgneal@45 34 // Style formats
bgneal@45 35 style_formats : [
bgneal@45 36 {title : 'Bold text', inline : 'b'},
bgneal@45 37 {title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
bgneal@45 38 {title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
bgneal@45 39 {title : 'Example 1', inline : 'span', classes : 'example1'},
bgneal@45 40 {title : 'Example 2', inline : 'span', classes : 'example2'},
bgneal@45 41 {title : 'Table styles'},
bgneal@45 42 {title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}
bgneal@45 43 ],
bgneal@45 44
bgneal@45 45 formats : {
bgneal@45 46 alignleft : {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img', classes : 'left'},
bgneal@45 47 aligncenter : {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img', classes : 'center'},
bgneal@45 48 alignright : {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img', classes : 'right'},
bgneal@45 49 alignfull : {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img', classes : 'full'},
bgneal@45 50 bold : {inline : 'span', 'classes' : 'bold'},
bgneal@45 51 italic : {inline : 'span', 'classes' : 'italic'},
bgneal@45 52 underline : {inline : 'span', 'classes' : 'underline', exact : true},
bgneal@45 53 strikethrough : {inline : 'del'}
bgneal@45 54 },
bgneal@45 55
bgneal@45 56 // Replace values for the template plugin
bgneal@45 57 template_replace_values : {
bgneal@45 58 username : "Some User",
bgneal@45 59 staffid : "991234"
bgneal@45 60 }
bgneal@45 61 });
bgneal@45 62 </script>
bgneal@45 63 <!-- /TinyMCE -->
bgneal@45 64
bgneal@45 65 </head>
bgneal@45 66 <body>
bgneal@45 67
bgneal@45 68 <form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
bgneal@45 69 <div>
bgneal@45 70 <h3>Custom formats example</h3>
bgneal@45 71
bgneal@45 72 <p>
bgneal@45 73 This example shows you how to override the default formats for bold, italic, underline, strikethough and alignment to use classes instead of inline styles.
bgneal@45 74 There are more examples on how to use TinyMCE in the <a href="http://tinymce.moxiecode.com/examples/">Wiki</a>.
bgneal@45 75 </p>
bgneal@45 76
bgneal@45 77 <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->
bgneal@45 78 <div>
bgneal@45 79 <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">
bgneal@45 80 &lt;p&gt;
bgneal@45 81 This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.
bgneal@45 82 &lt;/p&gt;
bgneal@45 83 &lt;p&gt;
bgneal@45 84 Nam nisi elit, cursus in rhoncus sit amet, pulvinar laoreet leo. Nam sed lectus quam, ut sagittis tellus. Quisque dignissim mauris a augue rutrum tempor. Donec vitae purus nec massa vestibulum ornare sit amet id tellus. Nunc quam mauris, fermentum nec lacinia eget, sollicitudin nec ante. Aliquam molestie volutpat dapibus. Nunc interdum viverra sodales. Morbi laoreet pulvinar gravida. Quisque ut turpis sagittis nunc accumsan vehicula. Duis elementum congue ultrices. Cras faucibus feugiat arcu quis lacinia. In hac habitasse platea dictumst. Pellentesque fermentum magna sit amet tellus varius ullamcorper. Vestibulum at urna augue, eget varius neque. Fusce facilisis venenatis dapibus. Integer non sem at arcu euismod tempor nec sed nisl. Morbi ultricies, mauris ut ultricies adipiscing, felis odio condimentum massa, et luctus est nunc nec eros.
bgneal@45 85 &lt;/p&gt;
bgneal@45 86 </textarea>
bgneal@45 87 </div>
bgneal@45 88
bgneal@45 89 <!-- Some integration calls -->
bgneal@45 90 <a href="javascript:;" onmousedown="tinyMCE.get('elm1').show();">[Show]</a>
bgneal@45 91 <a href="javascript:;" onmousedown="tinyMCE.get('elm1').hide();">[Hide]</a>
bgneal@45 92 <a href="javascript:;" onmousedown="tinyMCE.get('elm1').execCommand('Bold');">[Bold]</a>
bgneal@45 93 <a href="javascript:;" onmousedown="alert(tinyMCE.get('elm1').getContent());">[Get contents]</a>
bgneal@45 94 <a href="javascript:;" onmousedown="alert(tinyMCE.get('elm1').selection.getContent());">[Get selected HTML]</a>
bgneal@45 95 <a href="javascript:;" onmousedown="alert(tinyMCE.get('elm1').selection.getContent({format : 'text'}));">[Get selected text]</a>
bgneal@45 96 <a href="javascript:;" onmousedown="alert(tinyMCE.get('elm1').selection.getNode().nodeName);">[Get selected element]</a>
bgneal@45 97 <a href="javascript:;" onmousedown="tinyMCE.execCommand('mceInsertContent',false,'<b>Hello world!!</b>');">[Insert HTML]</a>
bgneal@45 98 <a href="javascript:;" onmousedown="tinyMCE.execCommand('mceReplaceContent',false,'<b>{$selection}</b>');">[Replace selection]</a>
bgneal@45 99
bgneal@45 100 <br />
bgneal@45 101 <input type="submit" name="save" value="Submit" />
bgneal@45 102 <input type="reset" name="reset" value="Reset" />
bgneal@45 103 </div>
bgneal@45 104 </form>
bgneal@45 105 <script type="text/javascript">
bgneal@45 106 if (document.location.protocol == 'file:') {
bgneal@45 107 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 108 }
bgneal@45 109 </script>
bgneal@45 110 </body>
bgneal@45 111 </html>