annotate static/js/tiny_mce/themes/advanced/shortcuts.htm @ 943:cf9918328c64

Haystack tweaks for Django 1.7.7. I had to upgrade to Haystack 2.3.1 to get it to work with Django 1.7.7. I also had to update the Xapian backend. But I ran into problems. On my laptop anyway (Ubuntu 14.0.4), xapian gets mad when search terms are greater than 245 chars (or something) when indexing. So I created a custom field that would simply omit terms greater than 64 chars and used this field everywhere I previously used a CharField. Secondly, the custom search form was broken now. Something changed in the Xapian backend and exact searches stopped working. Fortunately the auto_query (which I was using originally and broke during an upgrade) started working again. So I cut the search form back over to doing an auto_query. I kept the form the same (3 fields) because I didn't want to change the form and I think it's better that way.
author Brian Neal <bgneal@gmail.com>
date Wed, 13 May 2015 20:25:07 -0500
parents 6c182ceb7147
children
rev   line source
bgneal@442 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
bgneal@442 2 <html xmlns="http://www.w3.org/1999/xhtml">
bgneal@442 3 <head>
bgneal@442 4 <title>{#advanced_dlg.accessibility_help}</title>
bgneal@442 5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
bgneal@442 6 <script type="text/javascript">tinyMCEPopup.requireLangPack();</script>
bgneal@442 7 </head>
bgneal@442 8 <body id="content">
bgneal@442 9 <h1>{#advanced_dlg.accessibility_usage_title}</h1>
bgneal@442 10 <h2>Toolbars</h2>
bgneal@442 11 <p>Press ALT-F10 to move focus to the toolbars. Navigate through the buttons using the arrow keys.
bgneal@442 12 Press enter to activate a button and return focus to the editor.
bgneal@442 13 Press escape to return focus to the editor without performing any actions.</p>
bgneal@442 14
bgneal@442 15 <h2>Status Bar</h2>
bgneal@442 16 <p>To access the editor status bar, press ALT-F11. Use the left and right arrow keys to navigate between elements in the path.
bgneal@442 17 Press enter or space to select an element. Press escape to return focus to the editor without changing the selection.</p>
bgneal@442 18
bgneal@442 19 <h2>Context Menu</h2>
bgneal@442 20 <p>Press shift-F10 to activate the context menu. Use the up and down arrow keys to move between menu items. To open sub-menus press the right arrow key.
bgneal@442 21 To close submenus press the left arrow key. Press escape to close the context menu.</p>
bgneal@442 22
bgneal@442 23 <h1>Keyboard Shortcuts</h1>
bgneal@442 24 <table>
bgneal@442 25 <thead>
bgneal@442 26 <tr>
bgneal@442 27 <th>Keystroke</th>
bgneal@442 28 <th>Function</th>
bgneal@442 29 </tr>
bgneal@442 30 </thead>
bgneal@442 31 <tbody>
bgneal@442 32 <tr>
bgneal@442 33 <td>Control-B</td><td>Bold</td>
bgneal@442 34 </tr>
bgneal@442 35 <tr>
bgneal@442 36 <td>Control-I</td><td>Italic</td>
bgneal@442 37 </tr>
bgneal@442 38 <tr>
bgneal@442 39 <td>Control-Z</td><td>Undo</td>
bgneal@442 40 </tr>
bgneal@442 41 <tr>
bgneal@442 42 <td>Control-Y</td><td>Redo</td>
bgneal@442 43 </tr>
bgneal@442 44 </tbody>
bgneal@442 45 </table>
bgneal@442 46 </body>
bgneal@442 47 </html>