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