annotate static/js/tinymce/examples/accessibility.html @ 55:0176eca97d1d

In the middle of revamping the band application. Moved the base and home templates out of the band directory. Started hacking on the band models, finally getting rid of older models and views. Not everything works yet in this commit.
author Brian Neal <bgneal@gmail.com>
date Sat, 07 Apr 2012 15:58:51 -0500
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>Full featured 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 : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,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 // using false to ensure that the default browser settings are used for best Accessibility
bgneal@45 27 // ACCESSIBILITY SETTINGS
bgneal@45 28 content_css : false,
bgneal@45 29 // Use browser preferred colors for dialogs.
bgneal@45 30 browser_preferred_colors : true,
bgneal@45 31 detect_highcontrast : true,
bgneal@45 32
bgneal@45 33 // Drop lists for link/image/media/template dialogs
bgneal@45 34 template_external_list_url : "lists/template_list.js",
bgneal@45 35 external_link_list_url : "lists/link_list.js",
bgneal@45 36 external_image_list_url : "lists/image_list.js",
bgneal@45 37 media_external_list_url : "lists/media_list.js",
bgneal@45 38
bgneal@45 39 // Style formats
bgneal@45 40 style_formats : [
bgneal@45 41 {title : 'Bold text', inline : 'b'},
bgneal@45 42 {title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
bgneal@45 43 {title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
bgneal@45 44 {title : 'Example 1', inline : 'span', classes : 'example1'},
bgneal@45 45 {title : 'Example 2', inline : 'span', classes : 'example2'},
bgneal@45 46 {title : 'Table styles'},
bgneal@45 47 {title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}
bgneal@45 48 ],
bgneal@45 49
bgneal@45 50 // Replace values for the template plugin
bgneal@45 51 template_replace_values : {
bgneal@45 52 username : "Some User",
bgneal@45 53 staffid : "991234"
bgneal@45 54 }
bgneal@45 55 });
bgneal@45 56 </script>
bgneal@45 57 <!-- /TinyMCE -->
bgneal@45 58
bgneal@45 59 </head>
bgneal@45 60 <body>
bgneal@45 61
bgneal@45 62 <form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
bgneal@45 63 <div>
bgneal@45 64 <h3>Full featured example, with Accessibility settings enabled</h3>
bgneal@45 65
bgneal@45 66 <p>
bgneal@45 67 This page has got the TinyMCE set up to work with configurations related to accessiblity enabled.
bgneal@45 68 In particular
bgneal@45 69 <ul>
bgneal@45 70 <li>the <strong>content_css</strong> is set to false, to ensure that all default browser styles are used, </li>
bgneal@45 71 <li>the <strong>browser_preferred_colors</strong> dialog option is used to ensure that default css is used for dialogs, </li>
bgneal@45 72 <li>and the <strong>detect_highcontrast</strong> option has been set to ensure that highcontrast mode in Windows browsers
bgneal@45 73 is detected and the toolbars are displayed in a high contrast mode.</li>
bgneal@45 74 </ul>
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 <br />
bgneal@45 90 <input type="submit" name="save" value="Submit" />
bgneal@45 91 <input type="reset" name="reset" value="Reset" />
bgneal@45 92 </div>
bgneal@45 93 </form>
bgneal@45 94
bgneal@45 95 <script type="text/javascript">
bgneal@45 96 if (document.location.protocol == 'file:') {
bgneal@45 97 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 98 }
bgneal@45 99 </script>
bgneal@45 100 </body>
bgneal@45 101 </html>