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>{#table_dlg.cell_title}</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>
543
+ − 8
<script type="text/javascript" src="../../utils/editable_selects.js"></script>
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
+ − 9
<script type="text/javascript" src="js/cell.js"></script>
1
+ − 10
<link href="css/cell.css" rel="stylesheet" type="text/css" />
+ − 11
<base target="_self" />
+ − 12
</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
+ − 13
<body id="tablecell" style="display: none">
1
+ − 14
<form onsubmit="updateAction();return false;" action="#">
+ − 15
<div class="tabs">
+ − 16
<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
+ − 17
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#table_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
+ − 18
<li id="advanced_tab"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#table_dlg.advanced_tab}</a></span></li>
1
+ − 19
</ul>
+ − 20
</div>
+ − 21
+ − 22
<div class="panel_wrapper">
+ − 23
<div id="general_panel" class="panel current">
+ − 24
<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
+ − 25
<legend>{#table_dlg.general_props}</legend>
1
+ − 26
+ − 27
<table border="0" cellpadding="4" cellspacing="0">
+ − 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><label for="align">{#table_dlg.align}</label></td>
1
+ − 30
<td>
543
+ − 31
<select id="align" name="align" class="mceFocus">
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
+ − 32
<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
+ − 33
<option value="center">{#table_dlg.align_middle}</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
+ − 34
<option value="left">{#table_dlg.align_left}</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
+ − 35
<option value="right">{#table_dlg.align_right}</option>
1
+ − 36
</select>
+ − 37
</td>
+ − 38
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
+ − 39
<td><label for="celltype">{#table_dlg.cell_type}</label></td>
1
+ − 40
<td>
+ − 41
<select id="celltype" name="celltype">
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
+ − 42
<option value="td">{#table_dlg.td}</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
+ − 43
<option value="th">{#table_dlg.th}</option>
1
+ − 44
</select>
+ − 45
</td>
+ − 46
</tr>
+ − 47
+ − 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><label for="valign">{#table_dlg.valign}</label></td>
1
+ − 50
<td>
+ − 51
<select id="valign" name="valign">
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
+ − 52
<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
+ − 53
<option value="top">{#table_dlg.align_top}</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
+ − 54
<option value="middle">{#table_dlg.align_middle}</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
+ − 55
<option value="bottom">{#table_dlg.align_bottom}</option>
1
+ − 56
</select>
+ − 57
</td>
+ − 58
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
+ − 59
<td><label for="scope">{#table_dlg.scope}</label></td>
1
+ − 60
<td>
+ − 61
<select id="scope" name="scope">
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
+ − 62
<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
+ − 63
<option value="col">{#table.col}</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
+ − 64
<option value="row">{#table.row}</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
+ − 65
<option value="rowgroup">{#table_dlg.rowgroup}</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
+ − 66
<option value="colgroup">{#table_dlg.colgroup}</option>
1
+ − 67
</select>
+ − 68
</td>
+ − 69
+ − 70
</tr>
+ − 71
+ − 72
<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
+ − 73
<td><label for="width">{#table_dlg.width}</label></td>
1
+ − 74
<td><input id="width" name="width" type="text" value="" size="4" maxlength="4" onchange="changedSize();" /></td>
+ − 75
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
+ − 76
<td><label for="height">{#table_dlg.height}</label></td>
1
+ − 77
<td><input id="height" name="height" type="text" value="" size="4" maxlength="4" onchange="changedSize();" /></td>
+ − 78
</tr>
+ − 79
+ − 80
<tr id="styleSelectRow">
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
+ − 81
<td><label for="class">{#class_name}</label></td>
1
+ − 82
<td colspan="3">
543
+ − 83
<select id="class" name="class" class="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
+ − 84
<option value="" selected="selected">{#not_set}</option>
1
+ − 85
</select>
+ − 86
</td>
+ − 87
</tr>
+ − 88
</table>
+ − 89
</fieldset>
+ − 90
</div>
+ − 91
+ − 92
<div id="advanced_panel" class="panel">
+ − 93
<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
+ − 94
<legend>{#table_dlg.advanced_props}</legend>
1
+ − 95
+ − 96
<table border="0" cellpadding="0" cellspacing="4">
+ − 97
<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
+ − 98
<td class="column1"><label for="id">{#table_dlg.id}</label></td>
1
+ − 99
<td><input id="id" name="id" type="text" value="" style="width: 200px" /></td>
+ − 100
</tr>
+ − 101
+ − 102
<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
+ − 103
<td><label for="style">{#table_dlg.style}</label></td>
1
+ − 104
<td><input type="text" id="style" name="style" value="" style="width: 200px;" onchange="changedStyle();" /></td>
+ − 105
</tr>
+ − 106
+ − 107
<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
+ − 108
<td class="column1"><label for="dir">{#table_dlg.langdir}</label></td>
1
+ − 109
<td>
+ − 110
<select id="dir" name="dir" style="width: 200px">
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
+ − 111
<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
+ − 112
<option value="ltr">{#table_dlg.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
+ − 113
<option value="rtl">{#table_dlg.rtl}</option>
1
+ − 114
</select>
+ − 115
</td>
+ − 116
</tr>
+ − 117
+ − 118
<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
+ − 119
<td class="column1"><label for="lang">{#table_dlg.langcode}</label></td>
1
+ − 120
<td>
+ − 121
<input id="lang" name="lang" type="text" value="" style="width: 200px" />
+ − 122
</td>
+ − 123
</tr>
+ − 124
+ − 125
<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
+ − 126
<td class="column1"><label for="backgroundimage">{#table_dlg.bgimage}</label></td>
1
+ − 127
<td>
+ − 128
<table border="0" cellpadding="0" cellspacing="0">
+ − 129
<tr>
+ − 130
<td><input id="backgroundimage" name="backgroundimage" type="text" value="" style="width: 200px" onchange="changedBackgroundImage();" /></td>
+ − 131
<td id="backgroundimagebrowsercontainer"> </td>
+ − 132
</tr>
+ − 133
</table>
+ − 134
</td>
+ − 135
</tr>
+ − 136
+ − 137
<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
+ − 138
<td class="column1"><label for="bordercolor">{#table_dlg.bordercolor}</label></td>
1
+ − 139
<td>
+ − 140
<table border="0" cellpadding="0" cellspacing="0">
+ − 141
<tr>
+ − 142
<td><input id="bordercolor" name="bordercolor" type="text" value="" size="9" onchange="updateColor('bordercolor_pick','bordercolor');changedColor();" /></td>
+ − 143
<td id="bordercolor_pickcontainer"> </td>
+ − 144
</tr>
+ − 145
</table>
+ − 146
</td>
+ − 147
</tr>
+ − 148
+ − 149
<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
+ − 150
<td class="column1"><label for="bgcolor">{#table_dlg.bgcolor}</label></td>
1
+ − 151
<td>
+ − 152
<table border="0" cellpadding="0" cellspacing="0">
+ − 153
<tr>
+ − 154
<td><input id="bgcolor" name="bgcolor" type="text" value="" size="9" onchange="updateColor('bgcolor_pick','bgcolor');changedColor();" /></td>
+ − 155
<td id="bgcolor_pickcontainer"> </td>
+ − 156
</tr>
+ − 157
</table>
+ − 158
</td>
+ − 159
</tr>
+ − 160
</table>
+ − 161
</fieldset>
+ − 162
</div>
+ − 163
</div>
+ − 164
+ − 165
<div class="mceActionPanel">
+ − 166
<div>
+ − 167
<select id="action" name="action">
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
+ − 168
<option value="cell">{#table_dlg.cell_cell}</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
+ − 169
<option value="row">{#table_dlg.cell_row}</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
+ − 170
<option value="all">{#table_dlg.cell_all}</option>
1
+ − 171
</select>
+ − 172
</div>
+ − 173
+ − 174
<div style="float: left">
543
+ − 175
<div><input type="submit" id="insert" name="insert" value="{#update}" /></div>
1
+ − 176
</div>
+ − 177
+ − 178
<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
+ − 179
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
1
+ − 180
</div>
+ − 181
</div>
+ − 182
</form>
+ − 183
</body>
+ − 184
</html>