annotate media/js/tiny_mce/plugins/xhtmlxtras/attributes.htm @ 197:2baadae33f2e

Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author Brian Neal <bgneal@gmail.com>
date Sat, 10 Apr 2010 04:32:24 +0000
parents 149c3567fec1
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>{#xhtmlxtras_dlg.attribs_title}</title>
bgneal@45 5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
bgneal@45 6 <script type="text/javascript" src="../../utils/mctabs.js"></script>
bgneal@45 7 <script type="text/javascript" src="../../utils/editable_selects.js"></script>
bgneal@45 8 <script type="text/javascript" src="../../utils/form_utils.js"></script>
bgneal@45 9 <script type="text/javascript" src="js/attributes.js"></script>
bgneal@45 10 <link rel="stylesheet" type="text/css" href="css/attributes.css" />
bgneal@45 11 </head>
bgneal@45 12 <body style="display: none">
bgneal@45 13 <form onsubmit="insertAction();return false;" action="#">
bgneal@45 14 <div class="tabs">
bgneal@45 15 <ul>
bgneal@45 16 <li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#xhtmlxtras_dlg.attribute_attrib_tab}</a></span></li>
bgneal@45 17 <li id="events_tab"><span><a href="javascript:mcTabs.displayTab('events_tab','events_panel');" onmousedown="return false;">{#xhtmlxtras_dlg.attribute_events_tab}</a></span></li>
bgneal@45 18 </ul>
bgneal@45 19 </div>
bgneal@45 20
bgneal@45 21 <div class="panel_wrapper">
bgneal@45 22 <div id="general_panel" class="panel current">
bgneal@45 23 <fieldset>
bgneal@45 24 <legend>{#xhtmlxtras_dlg.attribute_attrib_tab}</legend>
bgneal@45 25 <table border="0" cellpadding="0" cellspacing="4">
bgneal@45 26 <tr>
bgneal@45 27 <td class="label"><label id="titlelabel" for="title">{#xhtmlxtras_dlg.attribute_label_title}</label>:</td>
bgneal@45 28 <td><input id="title" name="title" type="text" value="" class="mceFocus" /></td>
bgneal@45 29 </tr>
bgneal@45 30 <tr>
bgneal@45 31 <td class="label"><label id="idlabel" for="id">{#xhtmlxtras_dlg.attribute_label_id}</label>:</td>
bgneal@45 32 <td><input id="id" name="id" type="text" value="" /></td>
bgneal@45 33 </tr>
bgneal@45 34 <tr>
bgneal@45 35 <td><label id="classlabel" for="classlist">{#class_name}</label></td>
bgneal@45 36 <td>
bgneal@45 37 <select id="classlist" name="classlist" class="mceEditableSelect">
bgneal@45 38 <option value="" selected="selected">{#not_set}</option>
bgneal@45 39 </select>
bgneal@45 40 </td>
bgneal@45 41 </tr>
bgneal@45 42 <tr>
bgneal@45 43 <td class="label"><label id="stylelabel" for="style">{#xhtmlxtras_dlg.attribute_label_style}</label>:</td>
bgneal@45 44 <td><input id="style" name="style" type="text" value="" /></td>
bgneal@45 45 </tr>
bgneal@45 46 <tr>
bgneal@45 47 <td class="label"><label id="dirlabel" for="dir">{#xhtmlxtras_dlg.attribute_label_langdir}</label>:</td>
bgneal@45 48 <td>
bgneal@45 49 <select id="dir" name="dir">
bgneal@45 50 <option value="">{#not_set}</option>
bgneal@45 51 <option value="ltr">{#xhtmlxtras_dlg.option_ltr}</option>
bgneal@45 52 <option value="rtl">{#xhtmlxtras_dlg.option_rtl}</option>
bgneal@45 53 </select>
bgneal@45 54 </td>
bgneal@45 55 </tr>
bgneal@45 56 <tr>
bgneal@45 57 <td class="label"><label id="langlabel" for="lang">{#xhtmlxtras_dlg.attribute_label_langcode}</label>:</td>
bgneal@45 58 <td>
bgneal@45 59 <input id="lang" name="lang" type="text" value="" />
bgneal@45 60 </td>
bgneal@45 61 </tr>
bgneal@45 62 <tr>
bgneal@45 63 <td><label id="tabindexlabel" for="tabindex">{#xhtmlxtras_dlg.attribute_label_tabindex}</label></td>
bgneal@45 64 <td><input type="text" id="tabindex" name="tabindex" value="" /></td>
bgneal@45 65 </tr>
bgneal@45 66
bgneal@45 67 <tr>
bgneal@45 68 <td><label id="accesskeylabel" for="accesskey">{#xhtmlxtras_dlg.attribute_label_accesskey}</label></td>
bgneal@45 69 <td><input type="text" id="accesskey" name="accesskey" value="" /></td>
bgneal@45 70 </tr>
bgneal@45 71 </table>
bgneal@45 72 </fieldset>
bgneal@45 73 </div>
bgneal@45 74 <div id="events_panel" class="panel">
bgneal@45 75 <fieldset>
bgneal@45 76 <legend>{#xhtmlxtras_dlg.attribute_events_tab}</legend>
bgneal@45 77
bgneal@45 78 <table border="0" cellpadding="0" cellspacing="4">
bgneal@45 79 <tr>
bgneal@45 80 <td class="label"><label for="onfocus">onfocus</label>:</td>
bgneal@45 81 <td><input id="onfocus" name="onfocus" type="text" value="" /></td>
bgneal@45 82 </tr>
bgneal@45 83
bgneal@45 84 <tr>
bgneal@45 85 <td class="label"><label for="onblur">onblur</label>:</td>
bgneal@45 86 <td><input id="onblur" name="onblur" type="text" value="" /></td>
bgneal@45 87 </tr>
bgneal@45 88
bgneal@45 89 <tr>
bgneal@45 90 <td class="label"><label for="onclick">onclick</label>:</td>
bgneal@45 91 <td><input id="onclick" name="onclick" type="text" value="" /></td>
bgneal@45 92 </tr>
bgneal@45 93
bgneal@45 94 <tr>
bgneal@45 95 <td class="label"><label for="ondblclick">ondblclick</label>:</td>
bgneal@45 96 <td><input id="ondblclick" name="ondblclick" type="text" value="" /></td>
bgneal@45 97 </tr>
bgneal@45 98
bgneal@45 99 <tr>
bgneal@45 100 <td class="label"><label for="onmousedown">onmousedown</label>:</td>
bgneal@45 101 <td><input id="onmousedown" name="onmousedown" type="text" value="" /></td>
bgneal@45 102 </tr>
bgneal@45 103
bgneal@45 104 <tr>
bgneal@45 105 <td class="label"><label for="onmouseup">onmouseup</label>:</td>
bgneal@45 106 <td><input id="onmouseup" name="onmouseup" type="text" value="" /></td>
bgneal@45 107 </tr>
bgneal@45 108
bgneal@45 109 <tr>
bgneal@45 110 <td class="label"><label for="onmouseover">onmouseover</label>:</td>
bgneal@45 111 <td><input id="onmouseover" name="onmouseover" type="text" value="" /></td>
bgneal@45 112 </tr>
bgneal@45 113
bgneal@45 114 <tr>
bgneal@45 115 <td class="label"><label for="onmousemove">onmousemove</label>:</td>
bgneal@45 116 <td><input id="onmousemove" name="onmousemove" type="text" value="" /></td>
bgneal@45 117 </tr>
bgneal@45 118
bgneal@45 119 <tr>
bgneal@45 120 <td class="label"><label for="onmouseout">onmouseout</label>:</td>
bgneal@45 121 <td><input id="onmouseout" name="onmouseout" type="text" value="" /></td>
bgneal@45 122 </tr>
bgneal@45 123
bgneal@45 124 <tr>
bgneal@45 125 <td class="label"><label for="onkeypress">onkeypress</label>:</td>
bgneal@45 126 <td><input id="onkeypress" name="onkeypress" type="text" value="" /></td>
bgneal@45 127 </tr>
bgneal@45 128
bgneal@45 129 <tr>
bgneal@45 130 <td class="label"><label for="onkeydown">onkeydown</label>:</td>
bgneal@45 131 <td><input id="onkeydown" name="onkeydown" type="text" value="" /></td>
bgneal@45 132 </tr>
bgneal@45 133
bgneal@45 134 <tr>
bgneal@45 135 <td class="label"><label for="onkeyup">onkeyup</label>:</td>
bgneal@45 136 <td><input id="onkeyup" name="onkeyup" type="text" value="" /></td>
bgneal@45 137 </tr>
bgneal@45 138 </table>
bgneal@45 139 </fieldset>
bgneal@45 140 </div>
bgneal@45 141 </div>
bgneal@45 142 <div class="mceActionPanel">
bgneal@183 143 <input type="submit" id="insert" name="insert" value="{#insert}" />
bgneal@183 144 <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
bgneal@45 145 </div>
bgneal@45 146 </form>
bgneal@45 147 </body>
bgneal@45 148 </html>