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