Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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
 * Link dialog window.
1075 ddelon 23
-->
24
<html>
25
	<head>
26
		<title>Link 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_link/fck_link.js" type="text/javascript"></script>
31
	</head>
32
	<body scroll="no" style="OVERFLOW: hidden">
33
		<div id="divInfo" style="DISPLAY: none">
34
			<span fckLang="DlgLnkType">Link Type</span><br />
35
			<select id="cmbLinkType" onchange="SetLinkType(this.value);">
36
				<option value="url" fckLang="DlgLnkTypeURL" selected="selected">URL</option>
37
				<option value="anchor" fckLang="DlgLnkTypeAnchor">Anchor in this page</option>
38
				<option value="email" fckLang="DlgLnkTypeEMail">E-Mail</option>
39
			</select>
40
			<br />
41
			<br />
42
			<div id="divLinkTypeUrl">
43
				<table cellspacing="0" cellpadding="0" width="100%" border="0" dir="ltr">
44
					<tr>
45
						<td nowrap="nowrap">
46
							<span fckLang="DlgLnkProto">Protocol</span><br />
47
							<select id="cmbLinkProtocol">
48
								<option value="http://" selected="selected">http://</option>
49
								<option value="https://">https://</option>
50
								<option value="ftp://">ftp://</option>
51
								<option value="news://">news://</option>
52
								<option value="" fckLang="DlgLnkProtoOther">&lt;other&gt;</option>
53
							</select>
54
						</td>
55
						<td nowrap="nowrap">&nbsp;</td>
56
						<td nowrap="nowrap" width="100%">
57
							<span fckLang="DlgLnkURL">URL</span><br />
58
							<input id="txtUrl" style="WIDTH: 100%" type="text" onkeyup="OnUrlChange();" onchange="OnUrlChange();" />
59
						</td>
60
					</tr>
61
				</table>
62
				<br />
63
				<div id="divBrowseServer">
64
				<input type="button" value="Browse Server" fckLang="DlgBtnBrowseServer" onclick="BrowseServer();" />
65
				</div>
66
			</div>
67
			<div id="divLinkTypeAnchor" style="DISPLAY: none" align="center">
68
				<div id="divSelAnchor" style="DISPLAY: none">
69
					<table cellspacing="0" cellpadding="0" border="0" width="70%">
70
						<tr>
71
							<td colspan="3">
72
								<span fckLang="DlgLnkAnchorSel">Select an Anchor</span>
73
							</td>
74
						</tr>
75
						<tr>
76
							<td width="50%">
77
								<span fckLang="DlgLnkAnchorByName">By Anchor Name</span><br />
78
								<select id="cmbAnchorName" onchange="GetE('cmbAnchorId').value='';" style="WIDTH: 100%">
79
									<option value="" selected="selected"></option>
80
								</select>
81
							</td>
82
							<td>&nbsp;&nbsp;&nbsp;</td>
83
							<td width="50%">
84
								<span fckLang="DlgLnkAnchorById">By Element Id</span><br />
85
								<select id="cmbAnchorId" onchange="GetE('cmbAnchorName').value='';" style="WIDTH: 100%">
86
									<option value="" selected="selected"></option>
87
								</select>
88
							</td>
89
						</tr>
90
					</table>
91
				</div>
92
				<div id="divNoAnchor" style="DISPLAY: none">
93
					<span fckLang="DlgLnkNoAnchors">&lt;No anchors available in the document&gt;</span>
94
				</div>
95
			</div>
96
			<div id="divLinkTypeEMail" style="DISPLAY: none">
97
				<span fckLang="DlgLnkEMail">E-Mail Address</span><br />
98
				<input id="txtEMailAddress" style="WIDTH: 100%" type="text" /><br />
99
				<span fckLang="DlgLnkEMailSubject">Message Subject</span><br />
100
				<input id="txtEMailSubject" style="WIDTH: 100%" type="text" /><br />
101
				<span fckLang="DlgLnkEMailBody">Message Body</span><br />
102
				<textarea id="txtEMailBody" style="WIDTH: 100%" rows="3" cols="20"></textarea>
103
			</div>
104
		</div>
105
		<div id="divUpload" style="DISPLAY: none">
106
			<form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data" action="" onsubmit="return CheckUpload();">
107
				<span fckLang="DlgLnkUpload">Upload</span><br />
108
				<input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br />
109
				<br />
110
				<input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" />
1921 jp_milcent 111
				<script type="text/javascript">
112
					document.write( '<iframe name="UploadWindow" style="display: none" src="' + FCKTools.GetVoidUrl() + '"><\/iframe>' ) ;
113
				</script>
1075 ddelon 114
			</form>
115
		</div>
116
		<div id="divTarget" style="DISPLAY: none">
117
			<table cellspacing="0" cellpadding="0" width="100%" border="0">
118
				<tr>
119
					<td nowrap="nowrap">
120
						<span fckLang="DlgLnkTarget">Target</span><br />
121
						<select id="cmbTarget" onchange="SetTarget(this.value);">
122
							<option value="" fckLang="DlgGenNotSet" selected="selected">&lt;not set&gt;</option>
123
							<option value="frame" fckLang="DlgLnkTargetFrame">&lt;frame&gt;</option>
124
							<option value="popup" fckLang="DlgLnkTargetPopup">&lt;popup window&gt;</option>
125
							<option value="_blank" fckLang="DlgLnkTargetBlank">New Window (_blank)</option>
126
							<option value="_top" fckLang="DlgLnkTargetTop">Topmost Window (_top)</option>
127
							<option value="_self" fckLang="DlgLnkTargetSelf">Same Window (_self)</option>
128
							<option value="_parent" fckLang="DlgLnkTargetParent">Parent Window (_parent)</option>
129
						</select>
130
					</td>
131
					<td>&nbsp;</td>
132
					<td id="tdTargetFrame" nowrap="nowrap" width="100%">
133
						<span fckLang="DlgLnkTargetFrameName">Target Frame Name</span><br />
134
						<input id="txtTargetFrame" style="WIDTH: 100%" type="text" onkeyup="OnTargetNameChange();"
135
							onchange="OnTargetNameChange();" />
136
					</td>
137
					<td id="tdPopupName" style="DISPLAY: none" nowrap="nowrap" width="100%">
138
						<span fckLang="DlgLnkPopWinName">Popup Window Name</span><br />
139
						<input id="txtPopupName" style="WIDTH: 100%" type="text" />
140
					</td>
141
				</tr>
142
			</table>
143
			<br />
144
			<table id="tablePopupFeatures" style="DISPLAY: none" cellspacing="0" cellpadding="0" align="center"
145
				border="0">
146
				<tr>
147
					<td>
148
						<span fckLang="DlgLnkPopWinFeat">Popup Window Features</span><br />
149
						<table cellspacing="0" cellpadding="0" border="0">
150
							<tr>
151
								<td valign="top" nowrap="nowrap" width="50%">
152
									<input id="chkPopupResizable" name="chkFeature" value="resizable" type="checkbox" /><label for="chkPopupResizable" fckLang="DlgLnkPopResize">Resizable</label><br />
1921 jp_milcent 153
									<input id="chkPopupLocationBar" name="chkFeature" value="location" type="checkbox" /><label for="chkPopupLocationBar" fckLang="DlgLnkPopLocation">Location
1075 ddelon 154
										Bar</label><br />
1921 jp_milcent 155
									<input id="chkPopupManuBar" name="chkFeature" value="menubar" type="checkbox" /><label for="chkPopupManuBar" fckLang="DlgLnkPopMenu">Menu
1075 ddelon 156
										Bar</label><br />
1921 jp_milcent 157
									<input id="chkPopupScrollBars" name="chkFeature" value="scrollbars" type="checkbox" /><label for="chkPopupScrollBars" fckLang="DlgLnkPopScroll">Scroll
1075 ddelon 158
										Bars</label>
159
								</td>
160
								<td></td>
161
								<td valign="top" nowrap="nowrap" width="50%">
1921 jp_milcent 162
									<input id="chkPopupStatusBar" name="chkFeature" value="status" type="checkbox" /><label for="chkPopupStatusBar" fckLang="DlgLnkPopStatus">Status
1075 ddelon 163
										Bar</label><br />
164
									<input id="chkPopupToolbar" name="chkFeature" value="toolbar" type="checkbox" /><label for="chkPopupToolbar" fckLang="DlgLnkPopToolbar">Toolbar</label><br />
1921 jp_milcent 165
									<input id="chkPopupFullScreen" name="chkFeature" value="fullscreen" type="checkbox" /><label for="chkPopupFullScreen" fckLang="DlgLnkPopFullScrn">Full
1075 ddelon 166
										Screen (IE)</label><br />
1921 jp_milcent 167
									<input id="chkPopupDependent" name="chkFeature" value="dependent" type="checkbox" /><label for="chkPopupDependent" fckLang="DlgLnkPopDependent">Dependent
1075 ddelon 168
										(Netscape)</label>
169
								</td>
170
							</tr>
171
							<tr>
172
								<td valign="top" nowrap="nowrap" width="50%">&nbsp;</td>
173
								<td></td>
174
								<td valign="top" nowrap="nowrap" width="50%"></td>
175
							</tr>
176
							<tr>
177
								<td valign="top">
178
									<table cellspacing="0" cellpadding="0" border="0">
179
										<tr>
180
											<td nowrap="nowrap"><span fckLang="DlgLnkPopWidth">Width</span></td>
181
											<td>&nbsp;<input id="txtPopupWidth" type="text" maxlength="4" size="4" /></td>
182
										</tr>
183
										<tr>
184
											<td nowrap="nowrap"><span fckLang="DlgLnkPopHeight">Height</span></td>
185
											<td>&nbsp;<input id="txtPopupHeight" type="text" maxlength="4" size="4" /></td>
186
										</tr>
187
									</table>
188
								</td>
189
								<td>&nbsp;&nbsp;</td>
190
								<td valign="top">
191
									<table cellspacing="0" cellpadding="0" border="0">
192
										<tr>
193
											<td nowrap="nowrap"><span fckLang="DlgLnkPopLeft">Left Position</span></td>
194
											<td>&nbsp;<input id="txtPopupLeft" type="text" maxlength="4" size="4" /></td>
195
										</tr>
196
										<tr>
197
											<td nowrap="nowrap"><span fckLang="DlgLnkPopTop">Top Position</span></td>
198
											<td>&nbsp;<input id="txtPopupTop" type="text" maxlength="4" size="4" /></td>
199
										</tr>
200
									</table>
201
								</td>
202
							</tr>
203
						</table>
204
					</td>
205
				</tr>
206
			</table>
207
		</div>
208
		<div id="divAttribs" style="DISPLAY: none">
209
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
210
				<tr>
211
					<td valign="top" width="50%">
212
						<span fckLang="DlgGenId">Id</span><br />
213
						<input id="txtAttId" style="WIDTH: 100%" type="text" />
214
					</td>
215
					<td width="1"></td>
216
					<td valign="top">
217
						<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
218
							<tr>
219
								<td width="60%">
220
									<span fckLang="DlgGenLangDir">Language Direction</span><br />
221
									<select id="cmbAttLangDir" style="WIDTH: 100%">
222
										<option value="" fckLang="DlgGenNotSet" selected>&lt;not set&gt;</option>
223
										<option value="ltr" fckLang="DlgGenLangDirLtr">Left to Right (LTR)</option>
224
										<option value="rtl" fckLang="DlgGenLangDirRtl">Right to Left (RTL)</option>
225
									</select>
226
								</td>
227
								<td width="1%">&nbsp;&nbsp;&nbsp;</td>
228
								<td nowrap="nowrap"><span fckLang="DlgGenAccessKey">Access Key</span><br />
229
									<input id="txtAttAccessKey" style="WIDTH: 100%" type="text" maxlength="1" size="1" />
230
								</td>
231
							</tr>
232
						</table>
233
					</td>
234
				</tr>
235
				<tr>
236
					<td valign="top" width="50%">
237
						<span fckLang="DlgGenName">Name</span><br />
238
						<input id="txtAttName" style="WIDTH: 100%" type="text" />
239
					</td>
240
					<td width="1"></td>
241
					<td valign="top">
242
						<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
243
							<tr>
244
								<td width="60%">
245
									<span fckLang="DlgGenLangCode">Language Code</span><br />
246
									<input id="txtAttLangCode" style="WIDTH: 100%" type="text" />
247
								</td>
248
								<td width="1%">&nbsp;&nbsp;&nbsp;</td>
249
								<td nowrap="nowrap">
250
									<span fckLang="DlgGenTabIndex">Tab Index</span><br />
251
									<input id="txtAttTabIndex" style="WIDTH: 100%" type="text" maxlength="5" size="5" />
252
								</td>
253
							</tr>
254
						</table>
255
					</td>
256
				</tr>
257
				<tr>
258
					<td valign="top" width="50%">&nbsp;</td>
259
					<td width="1"></td>
260
					<td valign="top"></td>
261
				</tr>
262
				<tr>
263
					<td valign="top" width="50%">
264
						<span fckLang="DlgGenTitle">Advisory Title</span><br />
265
						<input id="txtAttTitle" style="WIDTH: 100%" type="text" />
266
					</td>
267
					<td width="1">&nbsp;&nbsp;&nbsp;</td>
268
					<td valign="top">
269
						<span fckLang="DlgGenContType">Advisory Content Type</span><br />
270
						<input id="txtAttContentType" style="WIDTH: 100%" type="text" />
271
					</td>
272
				</tr>
273
				<tr>
274
					<td valign="top">
275
						<span fckLang="DlgGenClass">Stylesheet Classes</span><br />
276
						<input id="txtAttClasses" style="WIDTH: 100%" type="text" />
277
					</td>
278
					<td></td>
279
					<td valign="top">
280
						<span fckLang="DlgGenLinkCharset">Linked Resource Charset</span><br />
281
						<input id="txtAttCharSet" style="WIDTH: 100%" type="text" />
282
					</td>
283
				</tr>
284
			</table>
285
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
286
				<tr>
287
					<td>
288
						<span fckLang="DlgGenStyle">Style</span><br />
289
						<input id="txtAttStyle" style="WIDTH: 100%" type="text" />
290
					</td>
291
				</tr>
292
			</table>
293
		</div>
294
	</body>
295
</html>