335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1
+ − 2
<html xmlns="http://www.w3.org/1999/xhtml">
+ − 3
<head>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 4
<title>{#xhtmlxtras_dlg.title_ins_element}</title>
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 5
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 6
<script type="text/javascript" src="../../utils/mctabs.js"></script>
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 7
<script type="text/javascript" src="../../utils/form_utils.js"></script>
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 8
<script type="text/javascript" src="../../utils/editable_selects.js"></script>
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 9
<script type="text/javascript" src="js/element_common.js"></script>
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 10
<script type="text/javascript" src="js/ins.js"></script>
1
+ − 11
<link rel="stylesheet" type="text/css" href="css/popup.css" />
+ − 12
<base target="_self" />
+ − 13
</head>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 14
<body id="xhtmlxtrasins" style="display: none">
1
+ − 15
<form onsubmit="insertIns();return false;" action="#">
+ − 16
<div class="tabs">
+ − 17
<ul>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 18
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#xhtmlxtras_dlg.general_tab}</a></span></li>
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 19
<!-- <li id="events_tab"><span><a href="javascript:mcTabs.displayTab('events_tab','events_panel');" onmousedown="return false;">{#xhtmlxtras_dlg.events_tab}</a></span></li> -->
1
+ − 20
</ul>
+ − 21
</div>
+ − 22
+ − 23
<div class="panel_wrapper">
+ − 24
<div id="general_panel" class="panel current">
+ − 25
<fieldset>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 26
<legend>{#xhtmlxtras_dlg.fieldset_general_tab}</legend>
1
+ − 27
<table border="0" cellpadding="0" cellspacing="4">
+ − 28
<tr>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 29
<td class="label"><label id="datetimelabel" for="datetime">{#xhtmlxtras_dlg.attribute_label_datetime}</label>:</td>
1
+ − 30
<td>
+ − 31
<table border="0" cellspacing="0" cellpadding="0">
+ − 32
<tr>
+ − 33
<td><input id="datetime" name="datetime" type="text" value="" maxlength="19" class="field" /></td>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 34
<td><a href="javascript:insertDateTime('datetime');" onmousedown="return false;" class="browse"><span class="datetime" alt="{#xhtmlxtras_dlg.insert_date}" title="{#xhtmlxtras_dlg.insert_date}"></span></a></td>
1
+ − 35
</tr>
+ − 36
</table>
+ − 37
</td>
+ − 38
</tr>
+ − 39
<tr>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 40
<td class="label"><label id="citelabel" for="cite">{#xhtmlxtras_dlg.attribute_label_cite}</label>:</td>
1
+ − 41
<td><input id="cite" name="cite" type="text" value="" class="field" /></td>
+ − 42
</tr>
+ − 43
</table>
+ − 44
</fieldset>
+ − 45
<fieldset>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 46
<legend>{#xhtmlxtras_dlg.fieldset_attrib_tab}</legend>
1
+ − 47
<table border="0" cellpadding="0" cellspacing="4">
+ − 48
<tr>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 49
<td class="label"><label id="titlelabel" for="title">{#xhtmlxtras_dlg.attribute_label_title}</label>:</td>
1
+ − 50
<td><input id="title" name="title" type="text" value="" class="field" /></td>
+ − 51
</tr>
+ − 52
<tr>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 53
<td class="label"><label id="idlabel" for="id">{#xhtmlxtras_dlg.attribute_label_id}</label>:</td>
1
+ − 54
<td><input id="id" name="id" type="text" value="" class="field" /></td>
+ − 55
</tr>
+ − 56
<tr>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 57
<td class="label"><label id="classlabel" for="class">{#xhtmlxtras_dlg.attribute_label_class}</label>:</td>
1
+ − 58
<td>
+ − 59
<select id="class" name="class" class="field mceEditableSelect">
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 60
<option value="">{#not_set}</option>
1
+ − 61
</select>
+ − 62
</td>
+ − 63
</tr>
+ − 64
<tr>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 65
<td class="label"><label id="stylelabel" for="class">{#xhtmlxtras_dlg.attribute_label_style}</label>:</td>
1
+ − 66
<td><input id="style" name="style" type="text" value="" class="field" /></td>
+ − 67
</tr>
+ − 68
<tr>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 69
<td class="label"><label id="dirlabel" for="dir">{#xhtmlxtras_dlg.attribute_label_langdir}</label>:</td>
1
+ − 70
<td>
+ − 71
<select id="dir" name="dir" class="field">
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 72
<option value="">{#not_set}</option>
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 73
<option value="ltr">{#xhtmlxtras_dlg.attribute_option_ltr}</option>
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 74
<option value="rtl">{#xhtmlxtras_dlg.attribute_option_rtl}</option>
1
+ − 75
</select>
+ − 76
</td>
+ − 77
</tr>
+ − 78
<tr>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 79
<td class="label"><label id="langlabel" for="lang">{#xhtmlxtras_dlg.attribute_label_langcode}</label>:</td>
1
+ − 80
<td>
+ − 81
<input id="lang" name="lang" type="text" value="" class="field" />
+ − 82
</td>
+ − 83
</tr>
+ − 84
</table>
+ − 85
</fieldset>
+ − 86
</div>
+ − 87
<div id="events_panel" class="panel">
+ − 88
<fieldset>
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 89
<legend>{#xhtmlxtras_dlg.fieldset_events_tab}</legend>
1
+ − 90
+ − 91
<table border="0" cellpadding="0" cellspacing="4">
+ − 92
<tr>
+ − 93
<td class="label"><label for="onfocus">onfocus</label>:</td>
+ − 94
<td><input id="onfocus" name="onfocus" type="text" value="" class="field" /></td>
+ − 95
</tr>
+ − 96
+ − 97
<tr>
+ − 98
<td class="label"><label for="onblur">onblur</label>:</td>
+ − 99
<td><input id="onblur" name="onblur" type="text" value="" class="field" /></td>
+ − 100
</tr>
+ − 101
+ − 102
<tr>
+ − 103
<td class="label"><label for="onclick">onclick</label>:</td>
+ − 104
<td><input id="onclick" name="onclick" type="text" value="" class="field" /></td>
+ − 105
</tr>
+ − 106
+ − 107
<tr>
+ − 108
<td class="label"><label for="ondblclick">ondblclick</label>:</td>
+ − 109
<td><input id="ondblclick" name="ondblclick" type="text" value="" class="field" /></td>
+ − 110
</tr>
+ − 111
+ − 112
<tr>
+ − 113
<td class="label"><label for="onmousedown">onmousedown</label>:</td>
+ − 114
<td><input id="onmousedown" name="onmousedown" type="text" value="" class="field" /></td>
+ − 115
</tr>
+ − 116
+ − 117
<tr>
+ − 118
<td class="label"><label for="onmouseup">onmouseup</label>:</td>
+ − 119
<td><input id="onmouseup" name="onmouseup" type="text" value="" class="field" /></td>
+ − 120
</tr>
+ − 121
+ − 122
<tr>
+ − 123
<td class="label"><label for="onmouseover">onmouseover</label>:</td>
+ − 124
<td><input id="onmouseover" name="onmouseover" type="text" value="" class="field" /></td>
+ − 125
</tr>
+ − 126
+ − 127
<tr>
+ − 128
<td class="label"><label for="onmousemove">onmousemove</label>:</td>
+ − 129
<td><input id="onmousemove" name="onmousemove" type="text" value="" class="field" /></td>
+ − 130
</tr>
+ − 131
+ − 132
<tr>
+ − 133
<td class="label"><label for="onmouseout">onmouseout</label>:</td>
+ − 134
<td><input id="onmouseout" name="onmouseout" type="text" value="" class="field" /></td>
+ − 135
</tr>
+ − 136
+ − 137
<tr>
+ − 138
<td class="label"><label for="onkeypress">onkeypress</label>:</td>
+ − 139
<td><input id="onkeypress" name="onkeypress" type="text" value="" class="field" /></td>
+ − 140
</tr>
+ − 141
+ − 142
<tr>
+ − 143
<td class="label"><label for="onkeydown">onkeydown</label>:</td>
+ − 144
<td><input id="onkeydown" name="onkeydown" type="text" value="" class="field" /></td>
+ − 145
</tr>
+ − 146
+ − 147
<tr>
+ − 148
<td class="label"><label for="onkeyup">onkeyup</label>:</td>
+ − 149
<td><input id="onkeyup" name="onkeyup" type="text" value="" class="field" /></td>
+ − 150
</tr>
+ − 151
</table>
+ − 152
</fieldset>
+ − 153
</div>
+ − 154
</div>
+ − 155
<div class="mceActionPanel">
+ − 156
<div style="float: left">
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 157
<input type="button" id="insert" name="insert" value="{#update}" onclick="insertIns();" />
1
+ − 158
</div>
+ − 159
<div style="float: left">
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 160
<input type="button" id="remove" name="remove" class="button" value="{#xhtmlxtras_dlg.remove}" onclick="removeIns();" style="display: none;" />
1
+ − 161
</div>
+ − 162
<div style="float: right">
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
diff
changeset
+ − 163
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
1
+ − 164
</div>
+ − 165
</div>
+ − 166
+ − 167
</form>
+ − 168
+ − 169
</body>
+ − 170
</html>