Subversion Repositories Applications.papyrus

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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