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