1921 |
jp_milcent |
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
1075 |
ddelon |
2 |
<!--
|
1921 |
jp_milcent |
3 |
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
|
|
4 |
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
|
|
5 |
*
|
|
|
6 |
* == BEGIN LICENSE ==
|
|
|
7 |
*
|
|
|
8 |
* Licensed under the terms of any of the following licenses at your
|
|
|
9 |
* choice:
|
|
|
10 |
*
|
|
|
11 |
* - GNU General Public License Version 2 or later (the "GPL")
|
|
|
12 |
* http://www.gnu.org/licenses/gpl.html
|
|
|
13 |
*
|
|
|
14 |
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
|
|
15 |
* http://www.gnu.org/licenses/lgpl.html
|
|
|
16 |
*
|
|
|
17 |
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
|
|
18 |
* http://www.mozilla.org/MPL/MPL-1.1.html
|
|
|
19 |
*
|
|
|
20 |
* == END LICENSE ==
|
|
|
21 |
*
|
|
|
22 |
* Image Properties dialog window.
|
1075 |
ddelon |
23 |
-->
|
|
|
24 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
25 |
<head>
|
|
|
26 |
<title>Image Properties</title>
|
|
|
27 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
28 |
<meta name="robots" content="noindex, nofollow" />
|
|
|
29 |
<script src="common/fck_dialog_common.js" type="text/javascript"></script>
|
|
|
30 |
<script src="fck_image/fck_image.js" type="text/javascript"></script>
|
1921 |
jp_milcent |
31 |
<script type="text/javascript">
|
|
|
32 |
|
|
|
33 |
document.write( FCKTools.GetStyleHtml( GetCommonDialogCss() ) ) ;
|
|
|
34 |
|
|
|
35 |
</script>
|
1075 |
ddelon |
36 |
</head>
|
|
|
37 |
<body scroll="no" style="overflow: hidden">
|
|
|
38 |
<div id="divInfo">
|
|
|
39 |
<table cellspacing="1" cellpadding="1" border="0" width="100%" height="100%">
|
|
|
40 |
<tr>
|
|
|
41 |
<td>
|
|
|
42 |
<table cellspacing="0" cellpadding="0" width="100%" border="0">
|
|
|
43 |
<tr>
|
|
|
44 |
<td width="100%">
|
|
|
45 |
<span fcklang="DlgImgURL">URL</span>
|
|
|
46 |
</td>
|
|
|
47 |
<td id="tdBrowse" style="display: none" nowrap="nowrap" rowspan="2">
|
|
|
48 |
|
|
|
49 |
<input id="btnBrowse" onclick="BrowseServer();" type="button" value="Browse Server"
|
|
|
50 |
fcklang="DlgBtnBrowseServer" />
|
|
|
51 |
</td>
|
|
|
52 |
</tr>
|
|
|
53 |
<tr>
|
|
|
54 |
<td valign="top">
|
|
|
55 |
<input id="txtUrl" style="width: 100%" type="text" onblur="UpdatePreview();" />
|
|
|
56 |
</td>
|
|
|
57 |
</tr>
|
|
|
58 |
</table>
|
|
|
59 |
</td>
|
|
|
60 |
</tr>
|
|
|
61 |
<tr>
|
|
|
62 |
<td>
|
|
|
63 |
<span fcklang="DlgImgAlt">Short Description</span><br />
|
|
|
64 |
<input id="txtAlt" style="width: 100%" type="text" /><br />
|
|
|
65 |
</td>
|
|
|
66 |
</tr>
|
|
|
67 |
<tr height="100%">
|
|
|
68 |
<td valign="top">
|
|
|
69 |
<table cellspacing="0" cellpadding="0" width="100%" border="0" height="100%">
|
|
|
70 |
<tr>
|
|
|
71 |
<td valign="top">
|
|
|
72 |
<br />
|
|
|
73 |
<table cellspacing="0" cellpadding="0" border="0">
|
|
|
74 |
<tr>
|
|
|
75 |
<td nowrap="nowrap">
|
|
|
76 |
<span fcklang="DlgImgWidth">Width</span> </td>
|
|
|
77 |
<td>
|
|
|
78 |
<input type="text" size="3" id="txtWidth" onkeyup="OnSizeChanged('Width',this.value);" /></td>
|
|
|
79 |
<td rowspan="2">
|
|
|
80 |
<div id="btnLockSizes" class="BtnLocked" onmouseover="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' ) + ' BtnOver';"
|
|
|
81 |
onmouseout="this.className = (bLockRatio ? 'BtnLocked' : 'BtnUnlocked' );" title="Lock Sizes"
|
|
|
82 |
onclick="SwitchLock(this);">
|
|
|
83 |
</div>
|
|
|
84 |
</td>
|
|
|
85 |
<td rowspan="2">
|
|
|
86 |
<div id="btnResetSize" class="BtnReset" onmouseover="this.className='BtnReset BtnOver';"
|
|
|
87 |
onmouseout="this.className='BtnReset';" title="Reset Size" onclick="ResetSizes();">
|
|
|
88 |
</div>
|
|
|
89 |
</td>
|
|
|
90 |
</tr>
|
|
|
91 |
<tr>
|
|
|
92 |
<td nowrap="nowrap">
|
|
|
93 |
<span fcklang="DlgImgHeight">Height</span> </td>
|
|
|
94 |
<td>
|
|
|
95 |
<input type="text" size="3" id="txtHeight" onkeyup="OnSizeChanged('Height',this.value);" /></td>
|
|
|
96 |
</tr>
|
|
|
97 |
</table>
|
|
|
98 |
<br />
|
|
|
99 |
<table cellspacing="0" cellpadding="0" border="0">
|
|
|
100 |
<tr>
|
|
|
101 |
<td nowrap="nowrap">
|
|
|
102 |
<span fcklang="DlgImgBorder">Border</span> </td>
|
|
|
103 |
<td>
|
|
|
104 |
<input type="text" size="2" value="" id="txtBorder" onkeyup="UpdatePreview();" /></td>
|
|
|
105 |
</tr>
|
|
|
106 |
<tr>
|
|
|
107 |
<td nowrap="nowrap">
|
|
|
108 |
<span fcklang="DlgImgHSpace">HSpace</span> </td>
|
|
|
109 |
<td>
|
|
|
110 |
<input type="text" size="2" id="txtHSpace" onkeyup="UpdatePreview();" /></td>
|
|
|
111 |
</tr>
|
|
|
112 |
<tr>
|
|
|
113 |
<td nowrap="nowrap">
|
|
|
114 |
<span fcklang="DlgImgVSpace">VSpace</span> </td>
|
|
|
115 |
<td>
|
|
|
116 |
<input type="text" size="2" id="txtVSpace" onkeyup="UpdatePreview();" /></td>
|
|
|
117 |
</tr>
|
|
|
118 |
<tr>
|
|
|
119 |
<td nowrap="nowrap">
|
|
|
120 |
<span fcklang="DlgImgAlign">Align</span> </td>
|
|
|
121 |
<td>
|
|
|
122 |
<select id="cmbAlign" onchange="UpdatePreview();">
|
|
|
123 |
<option value="" selected="selected"></option>
|
|
|
124 |
<option fcklang="DlgImgAlignLeft" value="left">Left</option>
|
|
|
125 |
<option fcklang="DlgImgAlignAbsBottom" value="absBottom">Abs Bottom</option>
|
|
|
126 |
<option fcklang="DlgImgAlignAbsMiddle" value="absMiddle">Abs Middle</option>
|
|
|
127 |
<option fcklang="DlgImgAlignBaseline" value="baseline">Baseline</option>
|
|
|
128 |
<option fcklang="DlgImgAlignBottom" value="bottom">Bottom</option>
|
|
|
129 |
<option fcklang="DlgImgAlignMiddle" value="middle">Middle</option>
|
|
|
130 |
<option fcklang="DlgImgAlignRight" value="right">Right</option>
|
|
|
131 |
<option fcklang="DlgImgAlignTextTop" value="textTop">Text Top</option>
|
|
|
132 |
<option fcklang="DlgImgAlignTop" value="top">Top</option>
|
|
|
133 |
</select>
|
|
|
134 |
</td>
|
|
|
135 |
</tr>
|
|
|
136 |
</table>
|
|
|
137 |
</td>
|
|
|
138 |
<td>
|
|
|
139 |
</td>
|
|
|
140 |
<td width="100%" valign="top">
|
|
|
141 |
<table cellpadding="0" cellspacing="0" width="100%" style="table-layout: fixed">
|
|
|
142 |
<tr>
|
|
|
143 |
<td>
|
|
|
144 |
<span fcklang="DlgImgPreview">Preview</span></td>
|
|
|
145 |
</tr>
|
|
|
146 |
<tr>
|
|
|
147 |
<td valign="top">
|
|
|
148 |
<iframe class="ImagePreviewArea" src="fck_image/fck_image_preview.html" frameborder="0"
|
|
|
149 |
marginheight="0" marginwidth="0"></iframe>
|
|
|
150 |
</td>
|
|
|
151 |
</tr>
|
|
|
152 |
</table>
|
|
|
153 |
</td>
|
|
|
154 |
</tr>
|
|
|
155 |
</table>
|
|
|
156 |
</td>
|
|
|
157 |
</tr>
|
|
|
158 |
</table>
|
|
|
159 |
</div>
|
|
|
160 |
<div id="divUpload" style="display: none">
|
|
|
161 |
<form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data"
|
|
|
162 |
action="" onsubmit="return CheckUpload();">
|
|
|
163 |
<span fcklang="DlgLnkUpload">Upload</span><br />
|
|
|
164 |
<input id="txtUploadFile" style="width: 100%" type="file" size="40" name="NewFile" /><br />
|
|
|
165 |
<br />
|
|
|
166 |
<input id="btnUpload" type="submit" value="Send it to the Server" fcklang="DlgLnkBtnUpload" />
|
1921 |
jp_milcent |
167 |
<script type="text/javascript">
|
|
|
168 |
document.write( '<iframe name="UploadWindow" style="display: none" src="' + FCKTools.GetVoidUrl() + '"><\/iframe>' ) ;
|
|
|
169 |
</script>
|
1075 |
ddelon |
170 |
</form>
|
|
|
171 |
</div>
|
|
|
172 |
<div id="divLink" style="display: none">
|
|
|
173 |
<table cellspacing="1" cellpadding="1" border="0" width="100%">
|
|
|
174 |
<tr>
|
|
|
175 |
<td>
|
|
|
176 |
<div>
|
|
|
177 |
<span fcklang="DlgLnkURL">URL</span><br />
|
|
|
178 |
<input id="txtLnkUrl" style="width: 100%" type="text" onblur="UpdatePreview();" />
|
|
|
179 |
</div>
|
|
|
180 |
<div id="divLnkBrowseServer" align="right">
|
|
|
181 |
<input type="button" value="Browse Server" fcklang="DlgBtnBrowseServer" onclick="LnkBrowseServer();" />
|
|
|
182 |
</div>
|
|
|
183 |
<div>
|
|
|
184 |
<span fcklang="DlgLnkTarget">Target</span><br />
|
|
|
185 |
<select id="cmbLnkTarget">
|
|
|
186 |
<option value="" fcklang="DlgGenNotSet" selected="selected"><not set></option>
|
|
|
187 |
<option value="_blank" fcklang="DlgLnkTargetBlank">New Window (_blank)</option>
|
|
|
188 |
<option value="_top" fcklang="DlgLnkTargetTop">Topmost Window (_top)</option>
|
|
|
189 |
<option value="_self" fcklang="DlgLnkTargetSelf">Same Window (_self)</option>
|
|
|
190 |
<option value="_parent" fcklang="DlgLnkTargetParent">Parent Window (_parent)</option>
|
|
|
191 |
</select>
|
|
|
192 |
</div>
|
|
|
193 |
</td>
|
|
|
194 |
</tr>
|
|
|
195 |
</table>
|
|
|
196 |
</div>
|
|
|
197 |
<div id="divAdvanced" style="display: none">
|
|
|
198 |
<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
|
|
|
199 |
<tr>
|
|
|
200 |
<td valign="top" width="50%">
|
|
|
201 |
<span fcklang="DlgGenId">Id</span><br />
|
|
|
202 |
<input id="txtAttId" style="width: 100%" type="text" />
|
|
|
203 |
</td>
|
|
|
204 |
<td width="1">
|
|
|
205 |
</td>
|
|
|
206 |
<td valign="top">
|
|
|
207 |
<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
|
|
|
208 |
<tr>
|
|
|
209 |
<td width="60%">
|
|
|
210 |
<span fcklang="DlgGenLangDir">Language Direction</span><br />
|
|
|
211 |
<select id="cmbAttLangDir" style="width: 100%">
|
|
|
212 |
<option value="" fcklang="DlgGenNotSet" selected="selected"><not set></option>
|
|
|
213 |
<option value="ltr" fcklang="DlgGenLangDirLtr">Left to Right (LTR)</option>
|
|
|
214 |
<option value="rtl" fcklang="DlgGenLangDirRtl">Right to Left (RTL)</option>
|
|
|
215 |
</select>
|
|
|
216 |
</td>
|
|
|
217 |
<td width="1%">
|
|
|
218 |
</td>
|
|
|
219 |
<td nowrap="nowrap">
|
|
|
220 |
<span fcklang="DlgGenLangCode">Language Code</span><br />
|
|
|
221 |
<input id="txtAttLangCode" style="width: 100%" type="text" />
|
|
|
222 |
</td>
|
|
|
223 |
</tr>
|
|
|
224 |
</table>
|
|
|
225 |
</td>
|
|
|
226 |
</tr>
|
|
|
227 |
<tr>
|
|
|
228 |
<td colspan="3">
|
|
|
229 |
</td>
|
|
|
230 |
</tr>
|
|
|
231 |
<tr>
|
|
|
232 |
<td colspan="3">
|
|
|
233 |
<span fcklang="DlgGenLongDescr">Long Description URL</span><br />
|
|
|
234 |
<input id="txtLongDesc" style="width: 100%" type="text" />
|
|
|
235 |
</td>
|
|
|
236 |
</tr>
|
|
|
237 |
<tr>
|
|
|
238 |
<td colspan="3">
|
|
|
239 |
</td>
|
|
|
240 |
</tr>
|
|
|
241 |
<tr>
|
|
|
242 |
<td valign="top">
|
|
|
243 |
<span fcklang="DlgGenClass">Stylesheet Classes</span><br />
|
|
|
244 |
<input id="txtAttClasses" style="width: 100%" type="text" />
|
|
|
245 |
</td>
|
|
|
246 |
<td>
|
|
|
247 |
</td>
|
|
|
248 |
<td valign="top">
|
|
|
249 |
<span fcklang="DlgGenTitle">Advisory Title</span><br />
|
|
|
250 |
<input id="txtAttTitle" style="width: 100%" type="text" />
|
|
|
251 |
</td>
|
|
|
252 |
</tr>
|
|
|
253 |
</table>
|
|
|
254 |
<span fcklang="DlgGenStyle">Style</span><br />
|
|
|
255 |
<input id="txtAttStyle" style="width: 100%" type="text" />
|
|
|
256 |
</div>
|
|
|
257 |
</body>
|
|
|
258 |
</html>
|