Project

General

Profile

1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
<!--
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4
 * Copyright (C) 2003-2009 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.
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>
31
		<script type="text/javascript">
32

    
33
document.write( FCKTools.GetStyleHtml( GetCommonDialogCss() ) ) ;
34

    
35
		</script>
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
								&nbsp;
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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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
								&nbsp;&nbsp;&nbsp;</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" />
167
			<script type="text/javascript">
168
				document.write( '<iframe name="UploadWindow" style="display: none" src="' + FCKTools.GetVoidUrl() + '"><\/iframe>' ) ;
169
			</script>
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">&lt;not set&gt;</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
					<div>
194
						<span fckLang="DlgGenContRel">Advisory Relation</span><br />
195
						<select id="cmbAttContentRel">
196
							<option value="" fckLang="DlgGenNotSet" selected>&lt;not set&gt;</option>
197
							<option value="fancybox" fckLang="Fancybox">Fancybox</option>
198
							<option value="prettyPhoto" fckLang="PrettyPhoto">PrettyPhoto</option>
199
<!--							<option value="prettyPhoto[gallery]" fckLang="PrettyPhoto Image Gallery">PrettyPhoto Image Gallery</option>
200
							<option value="prettyPhoto[flash]" fckLang="PrettyPhoto Flash">PrettyPhoto Flash</option>
201
							<option value="prettyPhoto[iframes]" fckLang="PrettyPhoto IFrames">PrettyPhoto IFrames</option>
202
							<option value="prettyPhoto[movies]" fckLang="PrettyPhoto Movies">PrettyPhoto Movies</option>
203
							<option value="prettyPopin" fckLang="PrettyPopin">Pretty Popin</option>
204
							<option value="prettyGallery" fckLang="PrettyGallery">Pretty Gallery</option>   -->
205
							<option value="alternate" fckLang="Alternate">Alternate</option>
206
							<option value="copyright" fckLang="copyright">Copyright</option>
207
							<option value="designates" fckLang="designates">Designates</option>
208
							<option value="nofollow" fckLang="nofollow">Nofollow</option>
209
							<option value="lightbox" fckLang="Lightbox">Lightbox</option>
210
							<option value="stylesheet" fckLang="stylesheet">Stylesheet</option>
211
							<option value="thumbnail" fckLang="Thumbnail">Thumbnail</option>
212
						</select>
213
					</div>
214

    
215
				</td>
216
			</tr>
217

    
218
				<tr>
219
					<td valign="top">
220
						<span fckLang="DlgGenClass">Stylesheet Classes</span><br />
221
						<input id="txtAttClasses" style="WIDTH: 100%" type="text" />
222
					</td>
223
					<td></td>
224
					<td valign="top" width="50%">
225
						<span fckLang="DlgGenId">Id</span><br />
226
						<input id="txtAttId" style="WIDTH: 100%" type="text" />
227
					</td>
228
				</tr>
229
			</table>
230
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
231
				<tr>
232
					<td>
233
						<span fckLang="DlgGenStyle">Style</span><br />
234
						<input id="txtAttStyle" style="WIDTH: 100%" type="text" />
235
					</td>
236
				</tr>
237
				<tr>
238
					<td valign="top" width="100%">
239
						<span fckLang="DlgGenTitle">Advisory Title</span><br />
240
						<input id="txtAttTitle" style="WIDTH: 100%" type="text" />
241
					</td>
242
				</tr>
243
			</table>
244
	</div>
245
	<div id="divAdvanced" style="display: none">
246
		<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
247
			<tr>
248
				<td valign="top" width="50%">
249
					<span fcklang="DlgGenId">Id</span><br />
250
					<input id="txtAttId" style="width: 100%" type="text" />
251
				</td>
252
				<td width="1">
253
					&nbsp;&nbsp;</td>
254
				<td valign="top">
255
					<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
256
						<tr>
257
							<td width="60%">
258
								<span fcklang="DlgGenLangDir">Language Direction</span><br />
259
								<select id="cmbAttLangDir" style="width: 100%">
260
									<option value="" fcklang="DlgGenNotSet" selected="selected">&lt;not set&gt;</option>
261
									<option value="ltr" fcklang="DlgGenLangDirLtr">Left to Right (LTR)</option>
262
									<option value="rtl" fcklang="DlgGenLangDirRtl">Right to Left (RTL)</option>
263
								</select>
264
							</td>
265
							<td width="1%">
266
								&nbsp;&nbsp;</td>
267
							<td nowrap="nowrap">
268
								<span fcklang="DlgGenLangCode">Language Code</span><br />
269
								<input id="txtAttLangCode" style="width: 100%" type="text" />&nbsp;
270
							</td>
271
						</tr>
272
					</table>
273
				</td>
274
			</tr>
275
			<tr>
276
				<td colspan="3">
277
					&nbsp;</td>
278
			</tr>
279
			<tr>
280
				<td colspan="3">
281
					<span fcklang="DlgGenLongDescr">Long Description URL</span><br />
282
					<input id="txtLongDesc" style="width: 100%" type="text" />
283
				</td>
284
			</tr>
285
			<tr>
286
				<td colspan="3">
287
					&nbsp;</td>
288
			</tr>
289
			<tr>
290
				<td valign="top">
291
					<span fcklang="DlgGenClass">Stylesheet Classes</span><br />
292
					<input id="txtAttClasses" style="width: 100%" type="text" />
293
				</td>
294
				<td>
295
				</td>
296
				<td valign="top">
297
					&nbsp;<span fcklang="DlgGenTitle">Advisory Title</span><br />
298
					<input id="txtAttTitle" style="width: 100%" type="text" />
299
				</td>
300
			</tr>
301
		</table>
302
		<span fcklang="DlgGenStyle">Style</span><br />
303
		<input id="txtAttStyle" style="width: 100%" type="text" />
304
	</div>
305
</body>
306
</html>
(11-11/29)