annotate WebContent/jscripts/tiny_mce/plugins/advimage/image.htm @ 5:0be9d53a6967

editor for annotations
author dwinter
date Tue, 13 Dec 2011 17:43:46 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
3 <head>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
4 <title>{#advimage_dlg.dialog_title}</title>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
6 <script type="text/javascript" src="../../utils/mctabs.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
7 <script type="text/javascript" src="../../utils/form_utils.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
8 <script type="text/javascript" src="../../utils/validate.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
9 <script type="text/javascript" src="../../utils/editable_selects.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
10 <script type="text/javascript" src="js/image.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
11 <link href="css/advimage.css" rel="stylesheet" type="text/css" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
12 </head>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
13 <body id="advimage" style="display: none" role="application" aria-labelledby="app_title">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
14 <span id="app_title" style="display:none">{#advimage_dlg.dialog_title}</span>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
15 <form onsubmit="ImageDialog.insert();return false;" action="#">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
16 <div class="tabs">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
17 <ul>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
18 <li id="general_tab" class="current" aria-controls="general_panel"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advimage_dlg.tab_general}</a></span></li>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
19 <li id="appearance_tab" aria-controls="appearance_panel"><span><a href="javascript:mcTabs.displayTab('appearance_tab','appearance_panel');" onmousedown="return false;">{#advimage_dlg.tab_appearance}</a></span></li>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
20 <li id="advanced_tab" aria-controls="advanced_panel"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#advimage_dlg.tab_advanced}</a></span></li>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
21 </ul>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
22 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
23
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
24 <div class="panel_wrapper">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
25 <div id="general_panel" class="panel current">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
26 <fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
27 <legend>{#advimage_dlg.general}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
28
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
29 <table role="presentation" class="properties">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
30 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
31 <td class="column1"><label id="srclabel" for="src">{#advimage_dlg.src}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
32 <td colspan="2"><table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
33 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
34 <td><input name="src" type="text" id="src" value="" class="mceFocus" onchange="ImageDialog.showPreviewImage(this.value);" aria-required="true" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
35 <td id="srcbrowsercontainer">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
36 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
37 </table></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
38 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
39 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
40 <td><label for="src_list">{#advimage_dlg.image_list}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
41 <td><select id="src_list" name="src_list" onchange="document.getElementById('src').value=this.options[this.selectedIndex].value;document.getElementById('alt').value=this.options[this.selectedIndex].text;document.getElementById('title').value=this.options[this.selectedIndex].text;ImageDialog.showPreviewImage(this.options[this.selectedIndex].value);"><option value=""></option></select></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
42 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
43 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
44 <td class="column1"><label id="altlabel" for="alt">{#advimage_dlg.alt}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
45 <td colspan="2"><input id="alt" name="alt" type="text" value="" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
46 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
47 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
48 <td class="column1"><label id="titlelabel" for="title">{#advimage_dlg.title}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
49 <td colspan="2"><input id="title" name="title" type="text" value="" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
50 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
51 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
52 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
53
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
54 <fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
55 <legend>{#advimage_dlg.preview}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
56 <div id="prev"></div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
57 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
58 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
59
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
60 <div id="appearance_panel" class="panel">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
61 <fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
62 <legend>{#advimage_dlg.tab_appearance}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
63
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
64 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
65 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
66 <td class="column1"><label id="alignlabel" for="align">{#advimage_dlg.align}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
67 <td><select id="align" name="align" onchange="ImageDialog.updateStyle('align');ImageDialog.changeAppearance();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
68 <option value="">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
69 <option value="baseline">{#advimage_dlg.align_baseline}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
70 <option value="top">{#advimage_dlg.align_top}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
71 <option value="middle">{#advimage_dlg.align_middle}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
72 <option value="bottom">{#advimage_dlg.align_bottom}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
73 <option value="text-top">{#advimage_dlg.align_texttop}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
74 <option value="text-bottom">{#advimage_dlg.align_textbottom}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
75 <option value="left">{#advimage_dlg.align_left}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
76 <option value="right">{#advimage_dlg.align_right}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
77 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
78 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
79 <td rowspan="6" valign="top">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
80 <div class="alignPreview">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
81 <img id="alignSampleImg" src="img/sample.gif" alt="{#advimage_dlg.example_img}" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
82 Lorem ipsum, Dolor sit amet, consectetuer adipiscing loreum ipsum edipiscing elit, sed diam
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
83 nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Loreum ipsum
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
84 edipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
85 erat volutpat.
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
86 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
87 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
88 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
89
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
90 <tr role="group" aria-labelledby="widthlabel">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
91 <td class="column1"><label id="widthlabel" for="width">{#advimage_dlg.dimensions}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
92 <td class="nowrap">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
93 <span style="display:none" id="width_voiceLabel">{#advimage_dlg.width}</span>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
94 <input name="width" type="text" id="width" value="" size="5" maxlength="5" class="size" onchange="ImageDialog.changeHeight();" aria-labelledby="width_voiceLabel" /> x
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
95 <span style="display:none" id="height_voiceLabel">{#advimage_dlg.height}</span>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
96 <input name="height" type="text" id="height" value="" size="5" maxlength="5" class="size" onchange="ImageDialog.changeWidth();" aria-labelledby="height_voiceLabel" /> px
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
97 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
98 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
99
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
100 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
101 <td>&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
102 <td><table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
103 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
104 <td><input id="constrain" type="checkbox" name="constrain" class="checkbox" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
105 <td><label id="constrainlabel" for="constrain">{#advimage_dlg.constrain_proportions}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
106 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
107 </table></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
108 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
109
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
110 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
111 <td class="column1"><label id="vspacelabel" for="vspace">{#advimage_dlg.vspace}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
112 <td><input name="vspace" type="text" id="vspace" value="" size="3" maxlength="3" class="number" onchange="ImageDialog.updateStyle('vspace');ImageDialog.changeAppearance();" onblur="ImageDialog.updateStyle('vspace');ImageDialog.changeAppearance();" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
113 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
114 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
115
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
116 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
117 <td class="column1"><label id="hspacelabel" for="hspace">{#advimage_dlg.hspace}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
118 <td><input name="hspace" type="text" id="hspace" value="" size="3" maxlength="3" class="number" onchange="ImageDialog.updateStyle('hspace');ImageDialog.changeAppearance();" onblur="ImageDialog.updateStyle('hspace');ImageDialog.changeAppearance();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
119 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
120
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
121 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
122 <td class="column1"><label id="borderlabel" for="border">{#advimage_dlg.border}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
123 <td><input id="border" name="border" type="text" value="" size="3" maxlength="3" class="number" onchange="ImageDialog.updateStyle('border');ImageDialog.changeAppearance();" onblur="ImageDialog.updateStyle('border');ImageDialog.changeAppearance();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
124 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
125
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
126 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
127 <td><label for="class_list">{#class_name}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
128 <td colspan="2"><select id="class_list" name="class_list" class="mceEditableSelect"><option value=""></option></select></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
129 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
130
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
131 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
132 <td class="column1"><label id="stylelabel" for="style">{#advimage_dlg.style}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
133 <td colspan="2"><input id="style" name="style" type="text" value="" onchange="ImageDialog.changeAppearance();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
134 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
135
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
136 <!-- <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
137 <td class="column1"><label id="classeslabel" for="classes">{#advimage_dlg.classes}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
138 <td colspan="2"><input id="classes" name="classes" type="text" value="" onchange="selectByValue(this.form,'classlist',this.value,true);" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
139 </tr> -->
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
140 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
141 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
142 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
143
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
144 <div id="advanced_panel" class="panel">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
145 <fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
146 <legend>{#advimage_dlg.swap_image}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
147
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
148 <input type="checkbox" id="onmousemovecheck" name="onmousemovecheck" class="checkbox" onclick="ImageDialog.setSwapImage(this.checked);" aria-controls="onmouseoversrc onmouseoutsrc" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
149 <label id="onmousemovechecklabel" for="onmousemovecheck">{#advimage_dlg.alt_image}</label>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
150
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
151 <table role="presentation" border="0" cellpadding="4" cellspacing="0" width="100%">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
152 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
153 <td class="column1"><label id="onmouseoversrclabel" for="onmouseoversrc">{#advimage_dlg.mouseover}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
154 <td><table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
155 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
156 <td><input id="onmouseoversrc" name="onmouseoversrc" type="text" value="" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
157 <td id="onmouseoversrccontainer">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
158 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
159 </table></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
160 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
161 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
162 <td><label for="over_list">{#advimage_dlg.image_list}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
163 <td><select id="over_list" name="over_list" onchange="document.getElementById('onmouseoversrc').value=this.options[this.selectedIndex].value;"><option value=""></option></select></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
164 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
165 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
166 <td class="column1"><label id="onmouseoutsrclabel" for="onmouseoutsrc">{#advimage_dlg.mouseout}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
167 <td class="column2"><table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
168 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
169 <td><input id="onmouseoutsrc" name="onmouseoutsrc" type="text" value="" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
170 <td id="onmouseoutsrccontainer">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
171 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
172 </table></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
173 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
174 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
175 <td><label for="out_list">{#advimage_dlg.image_list}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
176 <td><select id="out_list" name="out_list" onchange="document.getElementById('onmouseoutsrc').value=this.options[this.selectedIndex].value;"><option value=""></option></select></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
177 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
178 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
179 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
180
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
181 <fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
182 <legend>{#advimage_dlg.misc}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
183
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
184 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
185 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
186 <td class="column1"><label id="idlabel" for="id">{#advimage_dlg.id}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
187 <td><input id="id" name="id" type="text" value="" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
188 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
189
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
190 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
191 <td class="column1"><label id="dirlabel" for="dir">{#advimage_dlg.langdir}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
192 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
193 <select id="dir" name="dir" onchange="ImageDialog.changeAppearance();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
194 <option value="">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
195 <option value="ltr">{#advimage_dlg.ltr}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
196 <option value="rtl">{#advimage_dlg.rtl}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
197 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
198 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
199 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
200
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
201 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
202 <td class="column1"><label id="langlabel" for="lang">{#advimage_dlg.langcode}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
203 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
204 <input id="lang" name="lang" type="text" value="" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
205 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
206 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
207
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
208 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
209 <td class="column1"><label id="usemaplabel" for="usemap">{#advimage_dlg.map}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
210 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
211 <input id="usemap" name="usemap" type="text" value="" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
212 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
213 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
214
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
215 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
216 <td class="column1"><label id="longdesclabel" for="longdesc">{#advimage_dlg.long_desc}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
217 <td><table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
218 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
219 <td><input id="longdesc" name="longdesc" type="text" value="" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
220 <td id="longdesccontainer">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
221 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
222 </table></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
223 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
224 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
225 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
226 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
227 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
228
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
229 <div class="mceActionPanel">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
230 <input type="submit" id="insert" name="insert" value="{#insert}" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
231 <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
232 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
233 </form>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
234 </body>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
235 </html>