author | Dan Fuhry <dan@enanocms.org> |
Fri, 19 Nov 2010 03:30:35 -0500 | |
changeset 1329 | 61d87ee12e80 |
parent 1193 | e3b94bd055dc |
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>{#xhtmlxtras_dlg.title_abbr_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
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="../../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
parents:
1
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
parents:
1
diff
changeset
|
10 |
<script type="text/javascript" src="js/abbr.js"></script> |
1 | 11 |
<link rel="stylesheet" type="text/css" href="css/popup.css" /> |
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
parents:
1
diff
changeset
|
13 |
<body style="display: none"> |
1 | 14 |
<form onsubmit="insertAbbr();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
parents:
1
diff
changeset
|
17 |
<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
parents:
1
diff
changeset
|
18 |
<!-- <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 | 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
parents:
1
diff
changeset
|
25 |
<legend>{#xhtmlxtras_dlg.fieldset_attrib_tab}</legend> |
1 | 26 |
<table border="0" cellpadding="0" cellspacing="4"> |
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 class="label"><label id="titlelabel" for="title">{#xhtmlxtras_dlg.attribute_label_title}</label>:</td> |
543 | 29 |
<td><input id="title" name="title" type="text" value="" class="field mceFocus" /></td> |
1 | 30 |
</tr> |
31 |
<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
|
32 |
<td class="label"><label id="idlabel" for="id">{#xhtmlxtras_dlg.attribute_label_id}</label>:</td> |
1 | 33 |
<td><input id="id" name="id" type="text" value="" class="field" /></td> |
34 |
</tr> |
|
35 |
<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
|
36 |
<td class="label"><label id="classlabel" for="class">{#xhtmlxtras_dlg.attribute_label_class}</label>:</td> |
1 | 37 |
<td> |
38 |
<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
parents:
1
diff
changeset
|
39 |
<option value="">{#not_set}</option> |
1 | 40 |
</select> |
41 |
</td> |
|
42 |
</tr> |
|
43 |
<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
|
44 |
<td class="label"><label id="stylelabel" for="class">{#xhtmlxtras_dlg.attribute_label_style}</label>:</td> |
1 | 45 |
<td><input id="style" name="style" type="text" value="" class="field" /></td> |
46 |
</tr> |
|
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 class="label"><label id="dirlabel" for="dir">{#xhtmlxtras_dlg.attribute_label_langdir}</label>:</td> |
1 | 49 |
<td> |
50 |
<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
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="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
parents:
1
diff
changeset
|
53 |
<option value="rtl">{#xhtmlxtras_dlg.attribute_option_rtl}</option> |
1 | 54 |
</select> |
55 |
</td> |
|
56 |
</tr> |
|
57 |
<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
|
58 |
<td class="label"><label id="langlabel" for="lang">{#xhtmlxtras_dlg.attribute_label_langcode}</label>:</td> |
1 | 59 |
<td> |
60 |
<input id="lang" name="lang" type="text" value="" class="field" /> |
|
61 |
</td> |
|
62 |
</tr> |
|
63 |
</table> |
|
64 |
</fieldset> |
|
65 |
</div> |
|
66 |
<div id="events_panel" class="panel"> |
|
67 |
<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
|
68 |
<legend>{#xhtmlxtras_dlg.fieldset_events_tab}</legend> |
1 | 69 |
|
70 |
<table border="0" cellpadding="0" cellspacing="4"> |
|
71 |
<tr> |
|
72 |
<td class="label"><label for="onfocus">onfocus</label>:</td> |
|
73 |
<td><input id="onfocus" name="onfocus" type="text" value="" class="field" /></td> |
|
74 |
</tr> |
|
75 |
||
76 |
<tr> |
|
77 |
<td class="label"><label for="onblur">onblur</label>:</td> |
|
78 |
<td><input id="onblur" name="onblur" type="text" value="" class="field" /></td> |
|
79 |
</tr> |
|
80 |
||
81 |
<tr> |
|
82 |
<td class="label"><label for="onclick">onclick</label>:</td> |
|
83 |
<td><input id="onclick" name="onclick" type="text" value="" class="field" /></td> |
|
84 |
</tr> |
|
85 |
||
86 |
<tr> |
|
87 |
<td class="label"><label for="ondblclick">ondblclick</label>:</td> |
|
88 |
<td><input id="ondblclick" name="ondblclick" type="text" value="" class="field" /></td> |
|
89 |
</tr> |
|
90 |
||
91 |
<tr> |
|
92 |
<td class="label"><label for="onmousedown">onmousedown</label>:</td> |
|
93 |
<td><input id="onmousedown" name="onmousedown" type="text" value="" class="field" /></td> |
|
94 |
</tr> |
|
95 |
||
96 |
<tr> |
|
97 |
<td class="label"><label for="onmouseup">onmouseup</label>:</td> |
|
98 |
<td><input id="onmouseup" name="onmouseup" type="text" value="" class="field" /></td> |
|
99 |
</tr> |
|
100 |
||
101 |
<tr> |
|
102 |
<td class="label"><label for="onmouseover">onmouseover</label>:</td> |
|
103 |
<td><input id="onmouseover" name="onmouseover" type="text" value="" class="field" /></td> |
|
104 |
</tr> |
|
105 |
||
106 |
<tr> |
|
107 |
<td class="label"><label for="onmousemove">onmousemove</label>:</td> |
|
108 |
<td><input id="onmousemove" name="onmousemove" type="text" value="" class="field" /></td> |
|
109 |
</tr> |
|
110 |
||
111 |
<tr> |
|
112 |
<td class="label"><label for="onmouseout">onmouseout</label>:</td> |
|
113 |
<td><input id="onmouseout" name="onmouseout" type="text" value="" class="field" /></td> |
|
114 |
</tr> |
|
115 |
||
116 |
<tr> |
|
117 |
<td class="label"><label for="onkeypress">onkeypress</label>:</td> |
|
118 |
<td><input id="onkeypress" name="onkeypress" type="text" value="" class="field" /></td> |
|
119 |
</tr> |
|
120 |
||
121 |
<tr> |
|
122 |
<td class="label"><label for="onkeydown">onkeydown</label>:</td> |
|
123 |
<td><input id="onkeydown" name="onkeydown" type="text" value="" class="field" /></td> |
|
124 |
</tr> |
|
125 |
||
126 |
<tr> |
|
127 |
<td class="label"><label for="onkeyup">onkeyup</label>:</td> |
|
128 |
<td><input id="onkeyup" name="onkeyup" type="text" value="" class="field" /></td> |
|
129 |
</tr> |
|
130 |
</table> |
|
131 |
</fieldset> |
|
132 |
</div> |
|
133 |
</div> |
|
134 |
<div class="mceActionPanel"> |
|
135 |
<div style="float: left"> |
|
543 | 136 |
<input type="submit" id="insert" name="insert" value="{#update}" /> |
1 | 137 |
</div> |
138 |
<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
|
139 |
<input type="button" id="remove" name="remove" class="button" value="{#xhtmlxtras_dlg.remove}" onclick="removeAbbr();" style="display: none;" /> |
1 | 140 |
</div> |
141 |
<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
|
142 |
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" /> |
1 | 143 |
</div> |
144 |
</div> |
|
145 |
||
146 |
</form> |
|
147 |
</body> |
|
148 |
</html> |