source: trunk/admin/inc/FCKeditor/editor/dialog/fck_image.html@ 2

Last change on this file since 2 was 2, checked in by root, 15 years ago

importo il progetto

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